/* ===== Base Styles ===== */
:root {
  --primary: #8b5a2b;
  --primary-dark: #6d4722;
  --light: #f8f5f2;
  --dark: #2a2a2a;
  --text: #4a4a4a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  color: var(--text);
  line-height: 1.7;
  background-color: #f9f9f9;
}

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.2;
}
p {
}

.playfair {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* ===== Hero Section ===== */
.hero-section {
  height: 103vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/vibes_hero.webp");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  font-weight: 400;
  color: white;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.hero-line {
  width: 150px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto;
  position: relative;
}

.hero-line::before,
.hero-line::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  top: 50%;
  transform: translateY(-50%);
}

.hero-line::before {
  left: -5px;
}

.hero-line::after {
  right: -5px;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

/* ===== Section Styles ===== */
section {
  position: relative;
  padding: 100px 0;
}

.section-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: center;
  color: var(--primary);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.content-text {
  font-size: 1.1rem;
  line-height: 2;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

.content-text p {
  margin-bottom: 30px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

/* ===== Elegant Vibes Section ===== */
.elegant-vibes {
  background-color: white;
}

.full-banner {
  height: 70vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.full-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.4)
  );
}

/* ===== Modern Tech Section ===== */
.modern-tech {
  background-color: var(--light);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
}

.image-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.image-container:hover {
  transform: translateY(-10px);
}

.tech-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.posh-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
}

.posh-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.button-icon {
  margin-left: 10px;
  transition: var(--transition);
}

.posh-button:hover .button-icon {
  transform: translateX(5px);
}

/* ===== Celebrations Section ===== */
.celebrations {
  background-color: white;
}

.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 80px 0;
}

.celebration-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.celebration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.celebration-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.celebration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.celebration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.celebration-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  color: white;
}

.celebration-text span {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  display: block;
}

.event-line {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 15px auto 0;
}

.elegant_images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  width: 75%;
  gap: 20px;
  margin: 80px auto 0 auto;
}

.elegant_images img {
  width: 100%;
  height: 100%;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 1024px) {
  .elegant_images {
    width: 90%;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .full-banner {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .content-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .two-column {
    flex-direction: column;
    gap: 40px;
  }

  .full-banner {
    height: 40vh;
    margin-bottom: 50px;
  }

  .celebrations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 50px 0;
  }

  .celebration-image {
    height: 250px;
  }

  section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .elegant_images {
    grid-template-columns: 1fr;
    width: 80%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-line {
    width: 100px;
  }

  .scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .content-text p {
    margin-bottom: 20px;
  }
}
