/* --- BASE / SHARED STYLES --- */
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  /* Transitions for theme switching will be in theme.css or handled by JS if more complex */
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* --- NAVIGATION --- */
.nav-container {
  position: relative;
}

.nav-items {
  display: none;
  /* Hidden by default */
}

#mobileMenuBtn {
  display: block;
  /* Visible by default (for mobile & tablets) */
}

@media (min-width: 1024px) {

  /* Desktop breakpoint */
  .nav-items {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1;
    position: relative;
  }

  #mobileMenuBtn {
    display: none;
    /* Hide burger on desktop */
  }

  .underline {
    display: block;
  }
}

.nav-item {
  margin-right: 1rem;
  margin-left: 1rem;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
}

.nav-link.dropdown-toggle::after {
  content: ' \25BC';
  font-size: 0.7em;
  margin-left: 0.3em;
}

/* Underline (only on desktop) */
.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  transition: width 0.3s ease, left 0.3s ease, background-color 0.3s ease;
  z-index: 0;
  display: none;
  /* hidden by default, shown on desktop only */
}

/* --- MOBILE MENU --- */
#mobileMenu {
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  z-index: 1001;
  transition: left 0.3s ease-in-out, background-color 0.3s ease;
  padding-top: 60px;
  overflow-y: auto;
  box-sizing: border-box;
}

#mobileMenu.open {
  left: 0;
}

#mobileMenu .nav-link {
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#mobileMenu .dropdown-content {
  position: static;
  background-color: transparent;
  box-shadow: none;
  padding-left: 1rem;
}

#mobileMenu .dropdown-content a {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

#closeMobileMenuBtn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* --- DROPDOWNS --- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  min-width: 200px;
  z-index: 1002;
  border-radius: 0.3rem;
  padding: 0.5rem 0;
  margin-top: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dropdown.dropdown-open .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

/* --- HEADER --- */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
}

.logo {
  font-size: 1.75rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* --- MAIN CONTENT & SECTIONS --- */
main {
  padding-top: 0;
  /* Default for home page */
}

/* Add padding-top to main if the first child is not #home, to account for fixed header */
/* This logic is better handled by JS (adjustMainPadding function you have) */
/* but if you want a CSS fallback: */
main:not(:has(> #home:first-child)) {
  /* padding-top: 80px; /* Approximate header height, adjust with JS if dynamic */
  /* The JS solution is more robust for dynamic header heights */
}


/* --- HOME SECTION --- */
/* --- HOME SECTION --- */
#home {
  position: relative;
  /* Corrected path: */
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 90vh;
  padding-top: 10vh;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  overflow: hidden;
}

.home-title-overlay-main {
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 2rem;
  /* Space between title and banner */
  width: 100%;
  /* Ensure it takes full width for centering */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.home-title-carrie {
  display: block;
  font-size: 3rem;
  /* Mobile first */
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: -0.1em;
  /* Adjust for visual alignment */
}

.home-title-underwood {
  display: block;
  font-size: 6rem;
  /* Mobile first */
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {

  /* md */
  .home-title-carrie {
    font-size: 4.5rem;
  }

  .home-title-underwood {
    font-size: 9rem;
  }
}

@media (min-width: 1024px) {

  /* lg */
  #home {
    min-height: 100vh;
    /* Full viewport height on larger screens */
    justify-content: center;
    /* Center content vertically */
  }

  .home-title-overlay-main {
    margin-bottom: 4rem;
    /* More space on larger screens */
  }

  .home-title-carrie {
    font-size: 5.5rem;
  }

  .home-title-underwood {
    font-size: 11rem;
  }
}

.reflection-banner-container {
  backdrop-filter: blur(8px);
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 900px;
  /* Max width of the banner */
  margin-top: auto;
  /* Pushes to bottom if #home has extra space */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.reflection-banner-arrow {
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  flex-shrink: 0;
  /* Prevent arrows from shrinking */
}

.reflection-banner-content {
  flex-grow: 1;
  text-align: center;
  min-width: 0;
  /* Allows content to shrink if needed */
}

.reflection-banner-image-wrapper {
  width: 100%;
  max-width: 450px;
  /* Max width for the image inside the banner */
  margin: 0 auto 0.75rem auto;
  /* Center image and add bottom margin */
  border-radius: 0.375rem;
  /* rounded-md */
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.reflection-banner-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.reflection-banner-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.reflection-streaming-info {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.reflection-streaming-info img {
  height: 20px;
  /* Adjust as needed */
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

/* --- ABOUT SECTION --- */
#about {
  padding-top: 4rem;
  /* Tailwind py-16 equivalent for top */
  padding-bottom: 4rem;
  /* Tailwind py-16 equivalent for bottom */
  transition: background-color 0.3s ease;
}

#about h2 {
  /* This targets the main "BIO" heading */
  font-size: 2.5rem;
  /* Tailwind text-4xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  /* Tailwind mb-12 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {

  /* md */
  #about h2 {
    font-size: 3rem;
    /* Tailwind md:text-5xl */
  }
}

#about .text-gray-300 {
  /* This was a Tailwind class, now we target it for theme override */
  line-height: 1.7;
  transition: color 0.3s ease !important;
  /* Important to override Tailwind if needed */
}

#about img {
  border-radius: 0.5rem;
  /* Tailwind rounded-lg */
  /* box-shadow is themed */
  transition: box-shadow 0.3s ease;
}

/* --- GALLERY SECTION --- */
#gallery {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  transition: background-color 0.3s ease;
  /* background-color: #eee; */
  /* Light grey for #gallery background for testing */
}

#gallery h2 {
  font-size: 2rem;
  /* Tailwind text-3xl */
  font-weight: bold;
  margin-bottom: 2.5rem;
  /* Tailwind mb-12 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.swiper {
  width: 100%;
  max-width: 1200px;
  /* Max width for the swiper container */
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* For positioning nav buttons/pagination if needed */
  border-radius: 0.5rem;
  /* rounded-lg */
  overflow: hidden;
  /* Ensures content stays within rounded corners */

  /* Default styles for large desktops (will be overridden by more specific queries) */
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 550px;
  /* Default max height for very large screens */
  /* background-color: lightblue; */
  /* For testing swiper area */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Important for object-fit */
  transition: background-color 0.3s ease;
  height: 100%;
  /* Critical: Make slide take full height of swiper container */
  /* background-color: lightcoral; */
  /* For testing slide area */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  /* Critical: Make image take full height of slide */
  object-fit: cover;
  /* Cover the slide area */
  object-position: center center;
  /* Generally a good default, adjust if top is always preferred */
}

.swiper-button-next,
.swiper-button-prev {
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Ensure buttons are visible on various backgrounds if you theme them */
  /* color: #333; */
  /* background-color: rgba(255, 255, 255, 0.7); */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  opacity: 0.7;
  /* background: #333; */
  /* Theme if needed */
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  /* background: #007bff; */
  /* Theme if needed */
}

/* --- Mobile Specific Adjustments (Phones) --- */
@media (max-width: 767px) {

  /* iPhones, Android Phones */
  #gallery {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .swiper {
    height: 60vh;
    /* Example: 60% of viewport height for phones */
    aspect-ratio: unset;
    /* Remove aspect ratio if height is explicitly set */
    max-height: none;
    /* Allow vh to be the primary height constraint */
    border-radius: 0.375rem;
    /* Tailwind rounded-md */
  }
}

/* --- Tablet & Foldable Specific Adjustments --- */
/* Targets iPads, iPad Air, iPad Pro (portrait & landscape), Surface Pro, Asus Zenbook Fold (folded/smaller configs) */
@media (min-width: 768px) and (max-width: 1366px) {
  #gallery {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .swiper {
    height: 70vh;
    /* Make gallery taller: 70% of viewport height */
    /* You can experiment with values like 75vh, 80vh depending on how "full" you want it */
    aspect-ratio: unset;
    /* Remove fixed aspect ratio to allow custom height */
    max-height: none;
    /* Let vh control the height without a pixel cap */
  }

  /* If you notice images being cut off too much with 'center center' on tablets,
     you can try 'center top' again specifically for this breakpoint,
     but 'center center' is often a good compromise. */
  /* .swiper-slide img {
    object-position: center top;
  } */
}

/* Optional: Adjustments for very large screens if the default isn't enough */
@media (min-width: 1367px) {
  .swiper {
    /* Keep default aspect-ratio: 16/9 and max-height: 550px, or adjust: */
    /* For example, to make it a bit taller on large desktops too: */
    /* height: 600px; */
    /* max-height: 600px; */
    /* aspect-ratio: unset; */
  }
}

/* --- VIP SECTION --- */
#vip {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

#vip h2 {
  font-size: 2rem;
  /* Tailwind text-3xl */
  font-weight: bold;
  margin-bottom: 2.5rem;
  /* Tailwind mb-12 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.vip-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 column */
  gap: 1.5rem;
  /* Tailwind gap-6 */
  margin-top: 2rem;
  /* Space above cards */
  padding: 0 1rem;
  /* Horizontal padding for content within section */
  max-width: 1400px;
  /* Max width for the grid container */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {

  /* sm */
  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on small screens */
    gap: 2rem;
    /* Tailwind gap-8 */
  }
}

@media (min-width: 1024px) {

  /* lg */
  .vip-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on large screens */
  }
}

.vip-card {
  border-radius: 0.75rem;
  /* Tailwind rounded-xl */
  padding: 2rem;
  /* Tailwind p-8 */
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  /* Ensure content stacks vertically */
}

.vip-card:hover {
  transform: translateY(-5px);
  /* box-shadow is themed */
}

.vip-card h3 {
  font-size: 1.5rem;
  /* Tailwind text-2xl */
  font-weight: 700;
  /* Tailwind font-bold */
  margin-bottom: 0.75rem;
  /* Tailwind mb-3 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.vip-card p {
  margin-bottom: 1rem;
  /* Tailwind mb-4 */
  line-height: 1.7;
  /* Tailwind leading-relaxed */
  font-size: 0.9rem;
  /* Smaller text for description */
  font-family: 'Inter', sans-serif;
  flex-grow: 1;
  /* Allows paragraph to take available space, pushing button down */
}

.vip-card .price {
  font-size: 1.3rem;
  /* Slightly larger for price */
  font-weight: 700;
  /* Tailwind font-bold */
  margin-bottom: 1.5rem;
  /* Tailwind mb-6 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.vip-card .action-btn {
  font-family: 'Montserrat', sans-serif;
  padding: 0.75rem 1.5rem;
  /* Tailwind py-3 px-6 */
  border-radius: 0.5rem;
  /* Tailwind rounded-lg */
  font-weight: 600;
  /* Tailwind font-semibold */
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  /* Make button take full width of its container */
  width: 100%;
  text-align: center;
  margin-top: auto;
  /* Pushes button to the bottom of the card */
  cursor: pointer;
}

.vip-card .action-btn:hover {
  transform: translateY(-2px);
  /* background-color is themed */
}

/* --- GIVEAWAY SECTION --- */
#giveaway {
  padding: 4rem 1rem;
  /* py-16 px-4 */
  text-align: center;
  transition: background-color 0.3s ease;
}

#giveaway h2 {
  font-size: 2rem;
  /* text-3xl or 4xl based on original */
  font-weight: bold;
  margin-bottom: 1.5rem;
  /* mb-6 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

#giveaway .section-subtitle {
  font-size: 1.1rem;
  /* text-lg */
  margin-bottom: 3rem;
  /* mb-12 */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.giveaway-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 column */
  gap: 1.5rem;
  /* gap-6 */
  margin-top: 2rem;
  /* mt-8 */
  padding: 0 1rem;
  /* px-4, if section itself doesn't have it */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {

  /* sm */
  .giveaway-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    /* gap-8 */
  }
}

/* No need for lg specific if auto-fit works well */

.giveaway-item {
  border-radius: 0.75rem;
  /* rounded-xl */
  padding: 2rem;
  /* p-8 */
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.giveaway-item img {
  width: 100%;
  max-height: 300px;
  /* Control image height */
  object-fit: cover;
  border-radius: 0.5rem;
  /* rounded-lg */
  margin-bottom: 1.5rem;
  /* mb-6 */
  transition: box-shadow 0.3s ease;
}

.giveaway-item h3 {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 700;
  /* font-bold */
  margin-bottom: 0.75rem;
  /* mb-3 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.giveaway-item p {
  margin-bottom: 1rem;
  /* mb-4 */
  line-height: 1.7;
  /* leading-relaxed */
  font-size: 0.9rem;
  /* text-sm or base */
  flex-grow: 1;
}

.giveaway-item .apply-fee {
  font-size: 1rem;
  /* text-base */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 1.5rem;
  /* mb-6 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.giveaway-item .action-btn {
  /* Shared with .vip-card .action-btn */
  font-family: 'Montserrat', sans-serif;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: auto;
}

.giveaway-item .action-btn:hover {
  transform: translateY(-2px);
}

/* --- TOUR SECTION --- */
#tour {
  padding: 4rem 1rem;
  /* py-16 px-4 */
  transition: background-color 0.3s ease;
}

#tour h2 {
  font-size: 2.5rem;
  /* text-4xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  /* mb-12 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.tour-month-header {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  /* ~text-2xl/3xl */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 1.5rem;
  /* mb-6 */
  margin-top: 2.5rem;
  /* mt-10, for spacing between months */
  text-align: left;
  padding-left: 1rem;
  /* Indent month header slightly */
  transition: color 0.3s ease;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 column */
  gap: 1.5rem;
  /* gap-6 */
  max-width: 1200px;
  /* Max width for tour items container */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {

  /* md */
  .tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* Responsive columns */
    gap: 2rem;
    /* gap-8 */
  }
}

.tour-item {
  border-radius: 0.5rem;
  /* rounded-lg */
  padding: 1.5rem;
  /* p-6 */
  display: flex;
  gap: 1.5rem;
  /* gap-6 between date and details */
  align-items: flex-start;
  /* Align date to top of details */
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tour-date {
  text-align: center;
  flex-shrink: 0;
  /* Prevent date block from shrinking */
}

.tour-date .day {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  /* text-3xl */
  font-weight: 700;
  /* font-bold */
  line-height: 1;
  transition: color 0.3s ease;
}

.tour-date .month {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  /* text-sm */
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s ease;
}

.tour-details {
  flex-grow: 1;
  /* Allow details to take remaining space */
}

.tour-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 0.25rem;
  /* mb-1 */
  transition: color 0.3s ease;
}

.tour-details p {
  font-size: 0.9rem;
  /* text-sm */
  margin-bottom: 1rem;
  /* mb-4 */
  line-height: 1.5;
  transition: color 0.3s ease;
}

.tour-actions a,
.tour-actions button {
  display: inline-block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  /* ~text-xs/sm */
  font-weight: 500;
  /* font-medium */
  padding: 0.5rem 1rem;
  /* py-2 px-4 */
  border-radius: 0.3rem;
  /* rounded-md */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-right: 0.75rem;
  /* mr-3 */
  text-transform: uppercase;
  cursor: pointer;
}

/* --- COMMUNITY/TESTIMONIALS SECTION --- */
#community {
  padding: 4rem 1rem;
  /* py-16 px-4 */
  text-align: center;
  transition: background-color 0.3s ease;
}

#community h2 {
  font-size: 2rem;
  /* text-3xl or 4xl based on original */
  font-weight: bold;
  margin-bottom: 2.5rem;
  /* mb-10 or 12 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 column */
  gap: 1.5rem;
  /* gap-6 */
  margin-top: 2rem;
  /* mt-8 */
  padding: 0 1rem;
  /* px-4 if section itself doesn't have it */
  max-width: 1200px;
  /* Max width for testimonials container */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {

  /* md */
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 2rem;
    /* gap-8 */
  }
}

@media (min-width: 1024px) {

  /* lg */
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
  }
}

.testimonial-card {
  border-radius: 0.75rem;
  /* rounded-xl */
  padding: 1.5rem;
  /* p-6 */
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  /* mb-4 */
}

.testimonial-card .user-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  /* mr-4 */
  transition: border-color 0.3s ease;
}

.testimonial-card .user-info h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  /* text-lg */
  font-weight: 600;
  /* font-semibold */
  margin: 0;
  transition: color 0.3s ease;
}

.testimonial-card .star-rating {
  margin-bottom: 0.75rem;
  /* mb-3 */
  transition: color 0.3s ease;
}

.testimonial-card .star-rating .star {
  display: inline-block;
  /* For individual star styling if needed */
}

.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  /* ~text-base */
  line-height: 1.6;
  /* leading-relaxed */
  margin-bottom: 1rem;
  /* mb-4 */
  flex-grow: 1;
  /* Pushes award to bottom */
  font-style: italic;
  transition: color 0.3s ease;
}

.testimonial-card .testimonial-award {
  font-size: 0.85rem;
  /* text-sm */
  margin-top: auto;
  /* Pushes to bottom */
  padding-top: 0.5rem;
  /* pt-2 */
  transition: color 0.3s ease, border-color 0.3s ease;
}

.testimonial-card .testimonial-award strong {
  transition: color 0.3s ease;
  /* Ensure strong tag color also transitions */
}

/* --- MODALS (General Structure) --- */
.modal-overlay {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  /* Below modal content, above most other things */
  backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
  /* Themed */
}

.modal-form-container {
  /* Common for application, VIP check, gift track modals */
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.5rem;
  /* p-6 */
  border-radius: 0.5rem;
  /* rounded-lg */
  z-index: 1050;
  /* Above overlay */
  text-align: left;
  width: 90%;
  /* Responsive width */
  max-width: 550px;
  /* Max width for these forms */
  max-height: 90vh;
  /* Max height, enables scrolling */
  overflow-y: auto;
  /* Scroll for long content */
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  /* Themed */
}

.modal-form-container h4 {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: bold;
  margin-bottom: 0.5rem;
  /* mb-2 */
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
  /* Themed */
}

#modalContextInfo,
#tourTicketModalContext,
#vipIdCheckModalContext,
/* Specific ID for VIP context */
#giftTrackModalContext {
  /* Specific ID for Gift Track context */
  text-align: center;
  margin-bottom: 1.25rem;
  /* mb-5 */
  font-size: 0.95rem;
  /* ~text-base */
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
  /* Themed */
}

.form-group {
  margin-bottom: 1rem;
  /* mb-4 */
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  /* text-sm */
  margin-bottom: 0.3rem;
  /* mb-1 */
  font-weight: 500;
  /* font-medium */
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
  /* Themed */
}

.form-group-grid {
  /* For two-column layout in forms */
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 column */
  gap: 0.75rem;
  /* gap-3 */
}

@media (min-width: 640px) {

  /* sm */
  .form-group-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on sm+ */
  }
}

.modal-form-container .form-group input[type="text"],
.modal-form-container .form-group input[type="email"],
.modal-form-container .form-group input[type="tel"],
.modal-form-container .form-group input[type="date"],
.modal-form-container .form-group select,
.modal-form-container .form-group textarea {
  width: 100%;
  padding: 0.7rem;
  /* ~p-3 */
  border-radius: 0.3rem;
  /* rounded-md */
  font-size: 0.95rem;
  /* ~text-base */
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  /* Themed */
  font-family: 'Inter', sans-serif;
  /* border, background-color, color are themed */
}

.modal-form-container .form-group input:focus,
.modal-form-container .form-group select:focus,
.modal-form-container .form-group textarea:focus {
  outline: none;
  /* border-color and box-shadow (ring) are themed */
}

.modal-form-container .form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.phone-group {
  display: flex;
  gap: 0.5rem;
  /* gap-2 */
  align-items: flex-start;
  /* Align items to the top */
}

.phone-group .country-code {
  flex-basis: 40%;
  /* Adjust as needed */
  min-width: 120px;
  /* Ensure it's wide enough */
}

.phone-group .phone-number-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* Stack input and message */
}

.phone-group .phone-number {
  width: 100%;
  /* Make phone number input take full width of its wrapper */
}

#phoneNumberError {
  font-size: 0.75rem;
  /* Smaller font for error message */
  margin-top: 0.25rem;
  /* Space between input and message */
  display: block;
  /* Ensure it takes its own line */
  min-height: 1em;
  /* Reserve space to prevent layout shift */
  /* Color is themed */
}

.submit-options {
  margin-top: 1.5rem;
  /* mt-6 */
  text-align: center;
}

.submit-options p {
  font-size: 0.95rem;
  /* ~text-base */
  margin-bottom: 0.75rem;
  /* mb-3 */
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
  /* Themed */
}

.submit-links {
  display: flex;
  flex-direction: column;
  /* Stack buttons on mobile */
  gap: 0.75rem;
  /* gap-3 */
}

.submit-link-btn {
  /* Common style for modal submit buttons */
  padding: 0.7rem 1rem;
  /* ~py-3 px-4 */
  border-radius: 0.3rem;
  /* rounded-md */
  text-decoration: none;
  font-size: 0.9rem;
  /* ~text-sm */
  font-weight: 500;
  /* font-medium */
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  text-align: center;
  border: none;
  /* Assuming button-like appearance */
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  /* background-color, color are themed */
}

.submit-link-btn:hover {
  transform: translateY(-1px);
  /* background-color is themed */
}

.close-modal-btn {
  /* Common for all modals */
  position: absolute;
  top: 0.75rem;
  /* Adjust as needed */
  right: 0.75rem;
  /* Adjust as needed */
  background: none;
  border: none;
  font-size: 1.6rem;
  /* Adjust size */
  cursor: pointer;
  line-height: 1;
  /* Ensure consistent vertical alignment */
  transition: color 0.3s ease;
  /* Themed */
}

/* Specific Modal Result Areas */
#vipIdCheckResult,
#giftTrackResult {
  margin-top: 1.5rem;
  /* mt-6 */
  /* padding, border-radius, bg-color, border-color are themed */
}

#vipIdCheckResult .member-photo {
  /* If also used in giftTrackResult, keep general */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  /* Center and add bottom margin */
  display: block;
  transition: border-color 0.3s ease;
  /* Themed border */
}

#vipIdCheckResult h5,
#giftTrackResult .tracking-summary h5 {
  /* Common h5 in results */
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  /* text-xl */
  text-align: center;
  margin-bottom: 0.5rem;
  /* mb-2 */
  transition: color 0.3s ease;
  /* Themed */
}

#vipIdCheckResult p,
#giftTrackResult .tracking-summary p {
  /* Common p in results */
  font-size: 0.9rem;
  /* text-sm */
  margin-bottom: 0.3rem;
  /* ~mb-1 */
  line-height: 1.6;
  transition: color 0.3s ease;
  /* Themed */
}

#vipIdCheckResult p strong {
  /* Strong tag in VIP result */
  font-weight: 600;
  /* font-semibold */
  transition: color 0.3s ease;
  /* Themed */
}

#giftTrackResult .tracking-summary {
  margin-bottom: 1.5rem;
  /* mb-6 */
  padding: 1rem;
  /* p-4 */
  border-radius: 0.3rem;
  /* rounded-md */
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  /* Themed */
}

.tracking-history-list {
  list-style: none;
  padding: 0;
}

.tracking-history-item {
  padding: 0.75rem 1rem;
  /* py-3 px-4 */
  border-radius: 0.3rem;
  /* rounded-md */
  margin-bottom: 0.5rem;
  /* mb-2 */
  transition: background-color 0.3s ease, border-color 0.3s ease, border-left-color 0.3s ease;
  /* Themed */
}

.tracking-history-item:last-child {
  margin-bottom: 0;
}

.tracking-history-item .status-detail {
  font-weight: 600;
  /* font-semibold */
  display: block;
  margin-bottom: 0.25rem;
  /* mb-1 */
  transition: color 0.3s ease;
  /* Themed */
}

.tracking-history-item .status-meta {
  font-size: 0.8rem;
  /* ~text-xs */
  transition: color 0.3s ease;
  /* Themed */
}


/* --- NEWS SECTION STYLES --- */
#news-section {
  padding: 4rem 1rem;
  /* py-16 px-4 */
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Themed */
}

#news-section h2 {
  font-size: 2.5rem;
  /* Tailwind text-4xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  /* Tailwind mb-12 */
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
  /* Themed */
}

.news-grid {
  display: grid;
  gap: 1.5rem;
  /* Tailwind gap-6 */
  max-width: 1400px;
  /* Max width of news grid */
  margin-left: auto;
  margin-right: auto;
}

/* Responsive grid columns for news */
@media (max-width: 639px) {

  /* Mobile */
  .news-grid {
    grid-template-columns: 1fr;
  }

  #news-section h2 {
    font-size: 1.75rem;
    /* Smaller heading on mobile */
  }
}

@media (min-width: 640px) and (max-width: 1023px) {

  /* Tablet */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  #news-section h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {

  /* Desktop */
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
    /* 4 items per row */
    gap: 2rem;
    /* Tailwind gap-8 */
  }
}

.news-item-card {
  border-radius: 0.75rem;
  /* Tailwind rounded-xl */
  overflow: hidden;
  /* Important for image aspect ratio and hover effect */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  /* Themed */
}

.news-item-card:hover {
  transform: translateY(-5px);
  /* box-shadow is themed */
}

.news-item-card .news-image-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  /* Or 4/3, adjust as needed */
  overflow: hidden;
  /* Clip image for zoom effect */
}

.news-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-item-card:hover img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

.news-item-content {
  padding: 1.5rem;
  /* Tailwind p-6 */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Allows button to stick to bottom */
}

.news-item-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  /* Tailwind text-xl */
  font-weight: 700;
  /* Tailwind font-bold */
  margin-bottom: 0.75rem;
  /* Tailwind mb-3 */
  transition: color 0.3s ease;
  /* Themed */
}

.news-item-content p {
  font-size: 0.9rem;
  /* Tailwind text-sm */
  line-height: 1.6;
  /* Tailwind leading-relaxed */
  margin-bottom: 1rem;
  /* Tailwind mb-4 */
  flex-grow: 1;
  /* Pushes button down */
  transition: color 0.3s ease;
  /* Themed */
}

.news-item-card .read-more-btn {
  font-family: 'Montserrat', sans-serif;
  padding: 0.6rem 1.2rem;
  /* py-2.5 px-5 */
  border-radius: 0.5rem;
  /* Tailwind rounded-lg */
  font-weight: 600;
  /* Tailwind font-semibold */
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  /* Themed */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  /* Or block if full width desired */
  text-align: center;
  cursor: pointer;
  border: none;
  align-self: flex-start;
  /* Aligns button to the start if content is short */
  margin-top: auto;
  /* Pushes button to the bottom */
}

.news-item-card .read-more-btn:hover {
  transform: translateY(-2px);
  /* background-color is themed */
}

/* --- NEWS MODAL STYLES --- */
.news-modal-overlay {
  /* Shared with .modal-overlay but can be distinct if needed */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
  /* Themed */
}

.news-modal-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  /* Tailwind p-8 */
  border-radius: 0.5rem;
  /* Tailwind rounded-lg */
  z-index: 1050;
  width: 90%;
  max-width: 800px;
  /* Wider for news articles */
  max-height: 90vh;
  overflow-y: auto;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  /* Themed */
}

@media (max-width: 768px) {

  /* Smaller padding on mobile for news modal */
  .news-modal-container {
    padding: 1.5rem;
    max-width: 95%;
  }
}

.news-modal-container .close-news-modal-btn {
  /* Shared with .close-modal-btn */
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  /* Themed */
}

.news-modal-content img.modal-news-image {
  width: 100%;
  max-height: 400px;
  /* Adjust as needed */
  object-fit: cover;
  border-radius: 0.375rem;
  /* Tailwind rounded-md */
  margin-bottom: 1.5rem;
  /* Tailwind mb-6 */
}

.news-modal-content h2.modal-news-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  /* Tailwind text-2xl or 3xl */
  font-weight: 700;
  /* font-bold */
  margin-bottom: 1rem;
  /* Tailwind mb-4 */
  transition: color 0.3s ease;
  /* Themed */
}

.news-modal-content p.modal-news-full-text {
  font-size: 1rem;
  /* Tailwind text-base */
  line-height: 1.7;
  /* Tailwind leading-relaxed */
  white-space: pre-line;
  /* Respects newlines in the full article text */
  transition: color 0.3s ease;
  /* Themed */
}

/* --- CONTACT SECTION --- */
#contact {
  padding: 4rem 1rem;
  /* py-16 px-4 */
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Themed */
}

#contact>h2 {
  /* Targets direct H2 children like "Send Us a Message", "Connect with Carrie" */
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
  /* Themed */
  /* Sizes and margins are handled by Tailwind classes in HTML */
}

/* Styles for the professional contact form inputs are themed */
#formMessages .success-message {
  /* color: green; Theme specific */
  font-weight: bold;
}

#formMessages .error-message {
  /* color: red; Theme specific */
  font-weight: bold;
}

.social-media-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  /* Tailwind's gap-4 equivalent */
  padding-top: 1rem;
  /* Space above the cards, below "Connect with Carrie" heading */
}

.social-item {
  border-radius: 0.5rem;
  /* Tailwind's rounded-lg */
  padding: 1.25rem;
  /* Tailwind's p-5 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* To push button to bottom if height varies */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  /* Tailwind's shadow-md */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  min-height: 160px;
  /* Ensure cards have a consistent minimum height */
}

.social-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* Tailwind's shadow-xl */
}

.social-item i {
  font-size: 2em;
  /* Icon size */
  margin-bottom: 0.75rem;
  /* Tailwind's mb-3 */
  transition: color 0.3s ease;
  /* Themed icon color */
}

.social-item span {
  font-size: 0.9rem;
  font-weight: 500;
  /* Tailwind's font-medium */
  margin-bottom: 1rem;
  /* Tailwind's mb-4 */
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
  /* Themed text color */
}

.social-item .btn {
  /* Button within social item card */
  padding: 0.5rem 1rem;
  /* Tailwind's py-2 px-4 */
  border: none;
  border-radius: 0.375rem;
  /* Tailwind's rounded-md */
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  /* Tailwind's font-semibold */
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  /* Pushes button to bottom */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* Background and color are themed */
}

.social-item .btn:hover {
  transform: translateY(-2px);
}

/* Responsive adjustments for social items */
@media (max-width: 639px) {

  /* Mobile: 2 columns */
  .social-media-links-wrapper {
    display: flex;
    /* Ensure flex for mobile wrap */
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-item {
    width: calc(50% - 0.5rem);
    /* Two items per row, accounting for 1rem gap */
    padding: 1rem;
    min-height: 140px;
  }

  .social-item i {
    font-size: 1.8em;
    margin-bottom: 0.5rem;
  }

  .social-item span {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .social-item .btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {

  /* Tablet: auto-fit columns */
  .social-media-links-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .social-item {
    width: auto;
    padding: 1.1rem;
  }
}

@media (min-width: 1024px) {

  /* Desktop: 7 items per row (or adjust as needed) */
  .social-media-links-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* Adjust count based on how many you have */
    gap: 1rem;
  }

  .social-item {
    width: auto;
    padding: 1.25rem;
    min-height: 160px;
  }
}


/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Themed */
}

footer p {
  margin-bottom: 1rem;
}

.social-icons {
  /* Footer social icons */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  transition: color 0.3s ease;
  /* Themed */
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

/* --- THEME TOGGLE BUTTON --- */
#themeToggleBtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  /* Tailwind p-2 equivalent */
  margin-left: 0.5rem;
  /* Adjust spacing as needed */
  /* color is set by theme-specific rules in theme.css */
}

#themeToggleBtn svg {
  width: 24px;
  /* Tailwind w-6 */
  height: 24px;
  /* Tailwind h-6 */
}

/* --- RESPONSIVE ADJUSTMENTS (General) --- */
@media (max-width: 768px) {
  /* md breakpoint and below */
  /* .nav-items already handled */
  /* #mobileMenuBtn already handled */

  .home-title-carrie {
    font-size: 2.5rem;
    /* Smaller on mobile */
  }

  .home-title-underwood {
    font-size: 4.5rem;
    /* Smaller on mobile */
  }

  .reflection-banner-container {
    flex-direction: column;
    /* Stack on mobile */
    padding: 1rem;
    max-width: 95%;
  }

  .reflection-banner-arrow {
    display: none;
    /* Hide arrows on mobile, not enough space */
  }

  .reflection-banner-text {
    font-size: 0.9rem;
  }

  .reflection-streaming-info {
    font-size: 0.7rem;
  }

  .header-content {
    flex-direction: row;
    /* Keep logo and menu button in a row */
    justify-content: space-between;
  }

  .logo {
    margin-bottom: 0;
    /* Remove margin if it was added for stacked layout */
  }

  /* Reduce heading sizes for sections on mobile */
  #gallery h2,
  #vip h2,
  #about h2,
  #giveaway h2,
  #tour h2,
  #community h2,
  #contact>h2,
  /* Target direct h2 children of contact */
  #news-section h2 {
    /* Target news section heading */
    font-size: 1.75rem;
    /* Tailwind text-2xl or 3xl */
  }

  .vip-grid,
  .giveaway-grid,
  .tour-grid,
  .community-grid {
    padding: 0 0.5rem;
    /* Reduce horizontal padding for grids on mobile */
  }

  .modal-form-container {
    padding: 1.25rem;
    /* Smaller padding for modals on mobile */
  }

  .modal-form-container h4 {
    font-size: 1.3rem;
    /* Smaller modal titles */
  }

  /* .form-group-grid already defaults to 1 column */
}

@media (min-width: 640px) {

  /* sm breakpoint and up */
  #applicationModal .submit-links,
  #tourTicketModal .submit-links {
    flex-direction: row;
    /* Buttons side-by-side on larger screens */
    justify-content: center;
  }

  #applicationModal .submit-link-btn,
  #tourTicketModal .submit-link-btn {
    flex-grow: 1;
    /* Allow buttons to grow */
    max-width: 160px;
    /* But cap their width */
  }
}

/* --- SUCCESS ANIMATION STYLES --- */
.success-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in-out;
}

.success-animation .circle {
  width: 80px;
  height: 80px;
  border: 5px solid #28a745;
  border-radius: 50%;
  position: relative;
  animation: scaleUp 1s ease-in-out infinite;
}

.success-animation .checkmark {
  position: absolute;
  width: 40px;
  height: 20px;
  border-left: 5px solid #28a745;
  border-bottom: 5px solid #28a745;
  transform: rotate(-45deg);
  top: 30px;
  left: 20px;
}

.success-animation p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #555;
  font-family: 'Montserrat', sans-serif;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}