:root {
  --bg-cream: #f7efe3;
  --bg-peach: #fecb58;
  --bg-dark: #000000;
  --header-dark: #000000;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

/* Header Section */
.header-section {
  min-height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  background: url("../images/v161_44.png") center/cover no-repeat;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-section .carousel-inner {
  position: relative;
  z-index: 2; /* text layer */
}

.hero-section .carousel-indicators {
  top: 9rem;
  position: relative;
  z-index: 3; /* ensure above overlay & text */
}

.carousel-indicators [data-bs-target] {
  background-color: #fff;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #ffc107; /* yellow accent */
}

.hero-text .hero-title {
  font-weight: bold;
  font-size: clamp(36px, 10vw, 72px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease forwards;
}

.hero-welcome {
  letter-spacing: 2px;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 500;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-bar {
  background: var(--header-dark);
  height: 120px;
}

.logo-box {
  width: 70px;
  height: 70px;
  background: url("../images/v182_44.png") center/cover no-repeat;
}

.logo-box-footer {
  width: 12rem;
  height: 12rem;
  background: url("../images/v182_44.png") center/cover no-repeat;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-fb {
  background: #1877f2;
}
.social-ig {
  background: linear-gradient(45deg, #faad4f, #dd2a7b);
}
.social-tiktok {
  background: #000;
}
.social-whatsapp {
  background: #00e510;
}
.social-x {
  background: #1c1c1b;
}

.hero-text {
  color: white;
  text-align: center;
}

.hero-welcome {
  font-style: italic;
  font-size: clamp(20px, 4vw, 32px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(44px, 9vw, 68px);
  margin-top: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease forwards;
}

/* About Section */
.about-section {
  background: var(--bg-cream);
  padding: 80px 0;
}

.about-image {
  background: url("../images/v163_50.png") center/cover no-repeat;
  border-radius: 16px;
  min-height: 420px;
}

.section-title {
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 20px;
}

.section-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

/* Events Section */
.events-section {
  background: var(--bg-peach);
  padding: 80px 0;
}

.event-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.event-card-image {
  height: 163px;
  border-radius: 16px;
  margin: 26px 18px 20px;
  background-size: cover;
  background-position: center;
}

.event-card-image-wedding {
  height: 163px;
  /* border-radius: 16px; */
  margin: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("../images/v163_64.png");
}

.event-card-image-birthdays {
  height: 163px;
  /* border-radius: 16px; */
  margin: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("../images/v163_72.png");
}

.event-card-image-custom-events {
  height: 163px;
  /* border-radius: 16px; */
  margin: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("../images/v163_77.png");
}

.event-card-image-business-dinners {
  height: 163px;
  /* border-radius: 16px; */
  margin: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("../images/v163_82.png");
}

.event-card-image-office-parties {
  height: 163px;
  /* border-radius: 16px; */
  margin: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("../images/v163_87.png");
}

.event-card-title {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 0 18px 22px;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-cream);
  padding: 80px 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 216px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Individual gallery images */
.gallery-item-v163_95 {
  background-image: url("../images/v163_95.png");
}

.gallery-item-v163_123 {
  background-image: url("../images/v163_123.png");
}

.gallery-item-v163_125 {
  background-image: url("../images/v163_125.png");
}

.gallery-item-v163_127 {
  background-image: url("../images/v163_127.png");
}

.gallery-item-v163_129 {
  background-image: url("../images/v163_129.png");
}

.gallery-item-v182_46 {
  background-image: url("../images/v182_46.png");
}

.gallery-item-v182_48 {
  background-image: url("../images/v182_48.png");
}

.gallery-item-v182_50 {
  background-image: url("../images/v182_50.png");
}

.gallery-item-v182_52 {
  background-image: url("../images/v182_52.png");
}

.gallery-item-v182_54 {
  background-image: url("../images/v182_54.png");
}

/* Footer Section */
.footer-section {
  background: var(--bg-dark);
  color: white;
  padding: 80px 0;
}

.footer-image {
  background: url("../images/v163_202.png") center/cover no-repeat;
  border-radius: 16px;
  min-height: 378px;
}

.footer-info p {
  font-size: 18px;
  margin-bottom: 15px;
}

.wrap-text {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.wrap-text a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.wrap-text a:hover {
  color: #d9534f; /* subtle accent on hover */
}

@media (max-width: 768px) {
  .header-bar {
    padding: 20px 0;
  }

  .hero-section {
    min-height: 500px;
  }

  .about-image,
  .footer-image {
    min-height: 300px;
    margin-bottom: 30px;
  }

  .event-card,
  .gallery-item {
    margin-bottom: 20px;
  }
}
