:root {
  --primary-color: #2c5530;
  --secondary-color: #4a7c59;
  --accent-color: #d4af37;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --blue-dark: #1e3a5f;
  --blue-light: #e8f4f8;
  --text-green: #707216;
  --ink: #27323a;
  --olive: #6b7b39;
  --script: #2a6fb3;
  --card-bg: #f7f9fb;
  --divider: rgb(0, 0, 0);
  --shadow: 0 14px 36px rgba(0, 0, 0, .22);
  --nav-h: 56px;
}

@font-face {
  font-family: 'Athelas-Regular';
  src: url('/fonts/Athelas-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Athelas-Regular';
  src: url('/fonts/Athelas-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Athelas-Regular';
  src: url('/fonts/Athelas-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Athelas-Regular';
  src: url('/fonts/Athelas-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: bold italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-color);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2000;
  padding: 0.5rem 1rem;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--olive) !important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: .5rem 0;
}

.nav-link:hover {
  color: var(--olive) !important;
}

.nav-link.active {
  color: var(--olive) !important;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--olive);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-nav.lang-group {
  display: none;
}

.navbar-nav.lang-group.active {
  display: flex;
}


.language-switch {
  font-weight: 500;
  font-size: .9rem;
  color: var(--olive);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--olive);
  cursor: pointer;
  font-weight: 600;
}

.lang-btn.active {
  text-decoration: underline;
}

.lang {
  display: none;
}


.lang.active {
  display: block;
}

.language-switch {
  font-weight: 500;
  font-size: .9rem;
  color: var(--olive);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--olive);
  cursor: pointer;
  font-weight: 600;
}

.lang-btn.active {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .language-switch {
    font-size: 0.8rem;
  }

  .lang-btn {
    font-size: 0.8rem;
    font-weight: 500;
  }
}


@media (max-width: 576px) {
  .language-switch {
    font-size: 0.7rem;
  }

  .lang-btn {
    font-size: 0.7rem;
    font-weight: 500;
  }
}


.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  width: 44px;
  height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 28px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: burlywood;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.decorative-b {
  position: absolute;
  top: 0px;
  left: 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
}

.decorative-s {
  position: absolute;
  bottom: -55px;
  right: 5px;
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
}

.center-text {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.center-text .name-b {
  position: absolute;
  top: 40%;
  left: 68%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.center-text .ampersand {
  position: absolute;
  top: 50%;
  left: 72%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #ffffff;
}

.center-text .name-s {
  position: absolute;
  top: 60%;
  left: 76%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.countdown-wrapper {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 10;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-box {
  background-color: #ffff;
  border-radius: 22px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 2rem/1 "Montserrat", sans-serif;
  color: var(--olive);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

.count-pill {
  margin-top: -10px;
  background: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  font: 600 .7rem/1 "Montserrat", sans-serif;
  color: var(--olive);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.486);
}

@media (max-width: 767px) {
  .swiper {
    height: 40vh;
  }

  .center-text .name-b {
    font-size: 1rem;
    top: 52%;
    left: 64%;
  }

  .center-text .ampersand {
    font-size: 1rem;
    top: 58%;
    left: 70%;
  }

  .center-text .name-s {
    font-size: 1rem;
    top: 63%;
    left: 74%;
  }

  .countdown-wrapper {
    position: relative;
    bottom: 40px;
    gap: 10px;
    display: flex;
    justify-content: center;
  }

  .countdown-item {
    padding: 0;
  }

  .count-box {
    width: 64px;
    height: 64px;
  }

  .decorative-b {
    top: 25px;
  }

  .decorative-s {
    bottom: -20px;
  }

  .invitation-section {
    padding: 20px 0 !important;
  }
}

@media (max-width: 1024px) {
  .swiper {
    height: 50vh;
  }

  .center-text .name-b {
    font-size: 3rem;
    top: 47%;
    left: 68%;
  }

  .center-text .ampersand {
    font-size: 2rem;
    top: 58%;
    left: 74%;
  }

  .center-text .name-s {
    font-size: 3rem;
    top: 66%;
    left: 80%;
  }

  .countdown-wrapper {
    position: relative;
    bottom: 40px;
    gap: 10px;
    display: flex;
    justify-content: center;
  }

  .countdown-item {
    padding: 0;
  }

  .count-box {
    width: 64px;
    height: 64px;
  }
}

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background,
.hero-background::before,
.hero-overlay,
.decorative-letter {
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/img/anasayfa-kisiler\ \(1\).jpg') no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 85, 48, 0.3);
}

.decorative-letter {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 900;
  color: rgba(212, 175, 55, 0.2);
  z-index: 1;
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y)) rotate(var(--rot, 0deg));
}

@media (max-width: 768px) {
  .decorative-letter {
    font-size: clamp(4rem, 20vw, 8rem);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .name {
  display: block;
  margin: 0.5rem 0;
}

.hero-title .ampersand {
  font-size: 3rem;
  color: var(--accent-color);
  margin: 0 1rem;
}

.invitation-section {
  background-image: url("/assets/img/zeytin-dali.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  color: var(--olive);
}

.invitation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

.section-title-davet {
  font-weight: 100;
  font-family: 'Athelas-Regular', serif
}

.invitation-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.invitation-subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--olive);
  font-family: 'Athelas-Regular', serif;
}

.invitation-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 500;
  font-family: 'Athelas-Regular', serif;
}

.invitation-text p {
  margin-bottom: 0.3rem;
}

.program-section {
  position: relative;
  background: var(--blue-dark);
  overflow: hidden;
  padding: 0;
}

.program-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

.program-section .content-layer {
  position: relative;
  z-index: 2;
  padding: 60px 15px;
}

.stack {
  display: flex;
  flex-direction: column;
}

.program-cards {
  position: relative;
  z-index: 2;
}

.program-card {
  background: rgba(221, 227, 227, 0.9);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  color: var(--ink);
  backdrop-filter: blur(2px);
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.program-card.main-event::before {
  content: "B";
  position: absolute;
  top: -90px;
  left: -30px;
  font-family: "Playfair Display", serif;
  font-size: 150px;
  font-weight: 700;
  color: rgba(247, 251, 255, 0.55);
  transform: rotate(-25deg);
  z-index: 0;
  text-shadow: 4px 5px 9px rgba(189, 189, 189, 0.322);
}

.program-card.main-event::after {
  content: "S";
  position: absolute;
  bottom: -90px;
  right: -35px;
  font-family: "Playfair Display", serif;
  font-size: 150px;
  font-weight: 700;
  color: rgba(247, 251, 255, 0.55);
  transform: rotate(25deg);
  z-index: 0;
  text-shadow: 4px 5px 9px rgba(189, 189, 189, 0.322);
}

.program-card .card-date,
.program-card .card-details {
  position: relative;
  z-index: 1;
}

.date-icon img {
  width: 64px;
  height: auto;
}

.card-date {
  text-align: center;
  margin-bottom: 5px;
}

.card-date .date-line {
  display: block;
  font-family: 'Merriweather', serif;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--olive);
  font-size: clamp(18px, 1.6vw, 24px);
}

.card-date .day {
  display: block;
  letter-spacing: 0.2rem;
  font-family: "Montez", cursive;
  color: var(--script);
  font-size: 2rem;
}

.card-sep {
  margin: 0 0 20px 0;
  height: 1px;
  width: 86%;
  background: linear-gradient(90deg, transparent, var(--divider), transparent);
  border: 1px;
}

.card-details {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
}

.card-details .row-item {
  margin: 6px 0;
}

.card-details .label {
  font-weight: 700;
  font-family: 'Merriweather', serif;
  color: var(--olive);
}

.card-details .value {
  font-weight: bold;
  font-family: 'Merriweather', serif;
  color: var(--olive);
}
.card-details .value-davet {
  font-weight: 700;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: var(--olive);
}

.program-card.compact {
  padding: 24px 26px;
}



.map-link {
  color: inherit;          /* mevcut yazı rengi kalsın */
  text-decoration: none;   /* alt çizgi olmasın */
}

.map-link:hover {
  text-decoration: underline; /* üzerine gelince altı çizili olsun */
}

.bot{
  font-size: 0.7rem !important;
}

@media (max-width: 986px) {
  .program-section .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
  }

  .program-section .row>.col-lg-4 {
    display: contents;
  }

  .program-section .row .stack {
    display: contents;
  }

  #card-17 {
    order: 1;
  }

  #card-18 {
    order: 2;
  }

  #card-19 {
    order: 3;
  }

  .program-card {
    max-width: 100%;
    padding: 20px;
    margin-bottom: 1.5rem;
  }

  .program-card .card-date .date-line {
    font-size: 1rem;
  }

  .program-card .card-date .day {
    font-size: 2.3rem;
  }

  .program-card .card-details {
    font-size: 0.9rem;
  }

  .date-icon img {
    width: 48px;
  }
}

.lodging-section {
  position: relative;
  height: 80vh;
  display: flex;
  padding-top: var(--nav-h);
}

.lodging-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.lodging-head {
  position: absolute;
  top: 150px;
  left: 90px;
  z-index: 2;
  max-width: 1200px;
  color: #fff;
}

.lodging-head h2 {
  font-family: 'Athelas-Bold', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .5rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1.6px;
}

.lodging-head p {
  font-family: 'Athelas-Regular', serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2.8px;
  margin: 0;
  opacity: .95;
}

.lodging-card {
  position: absolute;
  bottom: -60px;
  right: 50px;
  max-width: 1200px;

  background: rgba(255, 255, 255, 0.779);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  padding: 28px;
  z-index: 2;
}

.accom-opt {
  font-weight: 700;
  color: var(--olive);
  font-family: "Playfair Display", serif;
}

.accom-name {
  font-weight: 500;
  font-family: "Merriweather", serif;
  color: var(--olive);
  font-size: 0.9rem;
}

.accom-phone {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: .85rem;
  color: var(--olive);
  opacity: .9;
}


.phone-link-accom {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;

}

.phone-link-accom:hover {
  text-decoration: underline;

}

.accom-link a {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--olive);
}

.accom-link a:hover {
  text-decoration: underline;
}


.swiper-overlay .popup-overlay,
.swiper-overlay .popup-box,
.swiper-overlay .popup-close {
  pointer-events: auto;   /* tıklamayı yeniden etkinleştir */
  z-index: 2000;
}

.popup-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  place-content: center;
  right: 10%;
  z-index: 2000;
  
}


.popup-box {
  background: rgba(227, 218, 218, 0.3);
  color: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  position: relative;
  width: 500px;
  height: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}


.popup-box h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto;
}


.popup-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.popup-close:hover {
  color: #d4af37;
}

@media (max-width: 1024px) {
  .lodging-section {
    padding-top: calc(var(--nav-h, 56px) + 16px);
    height: 40vh;
  }
  .program-bg-img {
    object-position: 80% 60%;
  }



  

  .popup-box {
    padding: 20px 30px;
    width: 300px;
    height: 150px;
  }
  
  /* Başlık */
  .popup-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
  }

  .lodging-card {
    left: 60%;
    transform: translateX(-50%);
    bottom: -70px;
    width: 70%;
    padding: 20px;
    border-radius: 18px;
  }

  .lodging-card .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .lodging-card .col-md-6 {
    width: 100%;
  }

  .accom-opt {
    font-size: 1rem;
  }

  .accom-name {
    font-size: 1rem;
    line-height: 1.35;
  }

  .accom-phone {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {



  .lodging-section {
    padding-top: calc(var(--nav-h, 56px) + 16px);
    height: 50vh;
  }

  .program-bg-img {
    object-position: 78% 20%; /* x: %50, y: %20 */
  }
  
  .popup-overlay {
    right: 12%;     /* sağdan boşluk */
  }
  
  /* Kutunun kendisi */
  .popup-box {
    padding: 10px 15px;
    width: 140px;
    height: 100px;
  }
  
  /* Başlık */
  .popup-box h3 {
    
    font-size: 1rem;
    font-weight: 700;
  
  }
  
  
  
  .lodging-head {
    top: calc(var(--nav-h, 56px) + 46px);
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .lodging-head h2 {
    font-size: clamp(1.6rem, 6.2vw, 2.2rem);
    line-height: 1.2;
  }

  .lodging-head p {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.45;
    margin-top: .4rem;
  }

  .lodging-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    width: 95%;
    padding: 16px;
    border-radius: 16px;
  }

  .lodging-card .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .lodging-card .col-md-6 {
    width: 100%;
  }

  .accom-opt {
    font-size: 0.95rem;
  }

  .accom-name {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .accom-phone {
    font-size: 0.8rem;
  }

  .accom-link a {
    font-weight: 600;
    font-size: 0.8rem;
  }

  .program-card .card-date .day {
    font-size: 1.6rem;
  }
}

@media (max-width: 420px) {
  .lodging-head {
    left: 16px;
    right: 16px;
  }

  .lodging-card {
    width: 96%;
    padding: 12px;
    bottom: -100px;
  }

  .lodging-card .row {
    gap: 10px 12px;
  }

  .accom-opt {
    font-size: 0.8rem;
  }

  .accom-name {
    font-size: 0.8rem;
  }

  .accom-phone {
    font-size: 0.68rem;
  }

  .accom-link a {
    font-weight: 600;
    font-size: 0.6rem;
  }
}

.reservation-section {
  background-image: url("/assets/img/limon.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 60px 0;
  position: relative;
  z-index: 1;
}

.reservation-content {
  max-width: 1000px;
  margin: 0 auto;
}

.reservation-text {
  color: var(--olive);
  font-family: "Playfair Display", serif;
}

.reservation-text.intro {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
}

.reservation-text em {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 600;
}

.phone-link {
  color: var(--olive);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.3rem;
  font-style: italic;
}

.phone-link:hover {
  text-decoration: underline;

}

.footer {
  background: var(--white);
  padding: 2rem 0 1rem;
  color: var(--olive);
  text-align: center;
}

.scroll-to-top {
  background: var(--olive);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.copyright {
  font-size: 0.9rem;
  color: var(--olive);
  margin: 0;
}

.copyright-link {
  color: inherit !important;

  text-decoration: none !important;

  -webkit-text-fill-color: inherit;

  font-weight: 600;
}

.copyright-link:visited {
  color: inherit !important;

}

.copyright-link:hover,
.copyright-link:focus {
  color: inherit !important;

  text-decoration: underline;

}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .countdown-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .decorative-letter {
    font-size: 8rem;
  }

  .decorative-letter-program {
    font-size: 6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .program-card {
    margin-bottom: 2rem;
  }

  .program-card.main-event {
    transform: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-title .ampersand {
    font-size: 2rem;
    margin: 0 0.5rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .invitation-text {
    font-size: 1rem;
  }

  .program-card {
    padding: 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loaded {
  opacity: 1;
}