/* Gathering Page Styles - Fresh Design */
.gathering-page {
  --accent-color: #5a9a8a;
  --accent-light: #e0f0eb;
  --accent-dark: #3a7a6a;
  --gradient-start: #5a9a8a;
  --gradient-end: #f2b880;
  background-color: #f8f9fa;
}

/* Apple-inspired Hero Section */
.gathering-hero {
  height: 100vh;
  min-height: 700px;
  background-color: rgba(0, 0, 0, 0.5); /* Darkened background as fallback */
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background image without darkening the whole image */
.gathering-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/gallery/beach.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1; /* Full image opacity to keep it vibrant */
  z-index: 1;
}

/* Replace the full dark overlay with a gradient overlay */
.gathering-hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient that adds darkness only where the text is while keeping most of the image vibrant */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

/* Text with warmer color scheme */
.gathering-hero h1 {
  font-size: 5.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #FFE8CC; /* Warm cream color */
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 4px 8px rgba(0,0,0,0.4),
    0 8px 16px rgba(0,0,0,0.3);
}

/* Subtitle with softer color */
.gathering-hero .subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #E6F2FF; /* Soft light blue */
  text-shadow: 
    0 1px 2px rgba(0,0,0,0.8),
    0 2px 4px rgba(0,0,0,0.5);
}

/* Badge with complementary color */
.announcement-badge {
  display: inline-block;
  background-color: rgba(90, 154, 138, 0.4); /* Using accent color with transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f2f2f2; /* Off-white */
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border: 2px solid rgba(90, 154, 138, 0.6);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Location with golden tone */
.location {
  display: block;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #F2D0A9; /* Light golden tone */
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.location i {
  color: #f2b880; /* Using the gradient-end color for a nice accent */
  margin-right: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Apple-inspired Feature and Details Sections */

/* Section Headers */
.event-highlights h3, 
.event-details h3 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Refined, Smaller Feature Tiles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.feature-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.feature-icon i {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--accent-color), #f2b880);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Add overlay to image */
.feature-image:after {
  content: "";
  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));
  z-index: 1;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1d1d1f;
}

.feature-location {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #86868b;
}

.feature-location i {
  color: var(--accent-color);
  margin-right: 5px;
  font-size: 0.8rem;
}

.feature p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #86868b;
  margin-bottom: 15px;
  flex-grow: 1;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background-color: rgba(90, 154, 138, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.feature-cta i {
  margin-left: 4px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.feature-cta:hover {
  background-color: var(--accent-color);
  color: white;
}

.feature-cta:hover i {
  transform: translateX(3px);
}

/* Event Details - Centered Alignment Fix */
.event-details {
  margin: 6rem 0;
  padding: 0 20px;
  position: relative;
  text-align: center;
}

.event-details h3 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.details-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.details-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.details-card-header {
  padding: 20px;
  background-color: rgba(90, 154, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.details-card-header i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.details-card-header strong {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
}

.details-card-content {
  padding: 20px;
  font-size: 0.95rem;
  color: #86868b;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

/* Completely Redesigned "What Awaits You" Section */
.event-highlights {
  margin: 6rem 0;
  padding: 0 20px;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.event-highlights h3 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

/* Stacked Experience Cards */
.experience-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.experience-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  padding: 28px 32px;
}

.experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.experience-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1d1d1f;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.experience-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #86868b;
  margin: 0;
}

.experience-location {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #86868b;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-location i {
  color: var(--accent-color);
  margin-right: 8px;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.feature-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.feature-cta:hover {
  color: #f2b880;
}

.feature-cta:hover i {
  transform: translateX(5px);
}

/* Organic shapes */
.organic-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.08;
  filter: blur(70px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--accent-color);
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background-color: #f2b880;
  bottom: 20%;
  right: 5%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .event-highlights h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .experience-content h4 {
    font-size: 1.25rem;
  }
  
  .experience-item {
    padding: 24px 28px;
  }
  
  .event-details h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .details-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .details-card-header i {
    font-size: 1.6rem;
  }
  
  .details-card-header strong {
    font-size: 0.95rem;
  }
  
  .details-card-content {
    font-size: 0.9rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .experience-item {
    padding: 20px 24px;
  }
  
  .experience-content h4 {
    font-size: 1.15rem;
  }
  
  .experience-content p {
    font-size: 0.9rem;
  }
  
  .details-list {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Location Showcase with Larger Images */
.location-showcase {
  margin: 8rem 0;
  padding: 0 20px;
  text-align: center;
}

.location-showcase h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.location-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #86868b;
}

/* Larger Image Grid */
.location-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.location-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}

/* First image spans full width */
.location-image:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.location-image:hover img {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
}

.location-description {
  max-width: 700px;
  margin: 2rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #86868b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .location-images {
    gap: 20px;
  }
  
  .image-caption {
    padding: 12px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .location-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .location-image:first-child {
    aspect-ratio: 4/3;
  }
  
  .location-showcase h3 {
    font-size: 2rem;
  }
  
  .location-intro {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .location-images {
    gap: 15px;
  }
  
  .image-caption {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* CTA Container */
.cta-container {
  margin: 3rem 0;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 15px;
  color: white;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.save-date {
  font-size: 1.4rem !important;
  font-weight: 600;
}

.tagline {
  font-size: 2rem;
  font-weight: 600;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
}

.cta-group {
  margin-top: 2rem;
}

.cta-group .btn {
  margin: 0 0.5rem;
  padding: 1rem 2.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.cta-group .btn-primary {
  background-color: white;
  color: var(--accent-dark);
  border: none;
}

.cta-group .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-group .btn-primary:hover {
  background-color: var(--accent-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-group .btn-secondary:hover {
  background-color: white;
  color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Announcement Section */
.announcement-section {
  padding: 80px 0;
  margin-top: 0;
  background-color: #f8f9fa; /* Use same background as page */
}

.announcement-card {
  /* Remove background color */
  background-color: transparent;
  /* Remove border radius */
  border-radius: 0;
  /* Reduce or remove shadow */
  box-shadow: none;
  /* Increase padding to give more breathing room */
  padding: 3rem 1rem;
  text-align: center;
  /* Increase max-width for more expansive layout */
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.announcement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.announcement-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.announcement-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.announcement-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Check Back Section */
.check-back {
  background-color: var(--accent-light);
  padding: 3rem;
  border-radius: 15px;
  margin: 4rem auto;
  max-width: 1200px;
}

.check-back h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.check-back p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.social-follow {
  margin-top: 2rem;
}

.social-follow p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-follow .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-follow .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-follow .social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gathering-hero h1 {
    font-size: 4.5rem;
  }
  
  .gathering-hero .subtitle {
    font-size: 1.5rem;
  }
  
  .announcement-card {
    padding: 2rem 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .event-highlights h3, 
  .event-details h3,
  .location-showcase h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .gathering-hero h1 {
    font-size: 3.5rem;
  }
  
  .gathering-hero .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    padding: 15px 40px;
  }
  
  .announcement-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .location {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .check-back {
    padding: 2rem;
  }
  
  .event-highlights h3, 
  .event-details h3,
  .location-showcase h3 {
    font-size: 2rem;
  }
  
  .event-highlights {
    padding: 60px 20px;
  }
  
  .location-images {
    grid-template-columns: 1fr;
  }
  
  .location-images img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .gathering-hero h1 {
    font-size: 2.8rem;
  }
  
  .gathering-hero .subtitle {
    font-size: 1.3rem;
  }
  
  .announcement-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .announcement-card {
    padding: 2rem 1.5rem;
  }
  
  .announcement-card h2 {
    font-size: 1.6rem;
  }
  
  .announcement-card p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .check-back h3 {
    font-size: 1.4rem;
  }
  
  .social-follow .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

}

/* Mobile Navigation Toggle Button for Gathering Page */
.gathering-page .nav-toggle {
  display: none; /* Hidden by default on desktop */
}

/* Mobile Navigation Specific Styles for Gathering Page */
@media (max-width: 767.98px) {
  .gathering-page .site-header {
    padding: 15px 0;
    position: relative;
  }
  
  .gathering-page .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .gathering-page .logo {
    z-index: 1001;
  }
  
  .gathering-page .nav-toggle {
    display: block; /* Show only on mobile */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
  
  .gathering-page .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .gathering-page .main-nav.active {
    display: block;
  }
  
  .gathering-page .nav-list {
    flex-direction: column;
    padding: 1rem 0;
    margin: 0;
  }
  
  .gathering-page .nav-list li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  
  .gathering-page .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-dark);
  }
}

/* Updated hero CTA button with inverted colors on hover */
.hero-cta {
  display: inline-block;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: white;
  color: var(--accent-dark);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  clear: both;
  border: 2px solid transparent; /* Transparent border initially */
}

.hero-cta:hover {
  background-color: transparent; /* Transparent background on hover */
  color: white; /* White text on hover */
  border: 2px solid white; /* White border on hover */
  transform: translateY(-3px); /* Keep the slight float effect */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

/* Remove the shine effect since it wouldn't look good with the inverted colors */
.hero-cta:after {
  display: none;
}

/* Announcement Header - New Compact Design */
.announcement-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1100px;
}

/* Update feature boxes now that icons are removed */
.feature-box {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden; /* Prevent any overflow content */
  justify-content: center; /* Center content vertically */
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Adjust heading to be more prominent without the icons */
.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  color: var(--accent-dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

/* Add a subtle line under the heading to replace the visual anchor of the icon */
.feature-box h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 3px;
}

/* Ensure text stays visible and doesn't change on hover */
.feature-box:hover p {
  color: inherit;
  opacity: 1;
}

/* Make sure no background images are being applied */
.feature-box,
.feature-box:hover {
  background-image: none !important;
}

.feature-box p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for the features grid */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .compact-intro {
    padding: 1.2rem;
  }
  
  .compact-intro p {
    font-size: 1rem;
  }
  
  .compact-intro .intro-text {
    font-size: 1.1rem;
  }
}

/* Existing announcement card styles - updated to match new design */
.announcement-card {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Make announcement icon more modern */
.announcement-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.announcement-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Update existing content styles to match the more compact format */
.location-showcase {
  margin: 4rem 0;
  padding: 0;
  text-align: center;
}

.event-details {
  margin: 3rem 0;
  padding: 0;
  position: relative;
  text-align: center;
}

.cta-container {
  margin: 2rem 0;
  padding: 1.5rem;
}

.cta-container p {
  font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .announcement-card {
    padding: 2rem 1.5rem;
  }
  
  .announcement-card h2 {
    font-size: 1.8rem;
  }
}

/* Make announcement header more expansive */
.announcement-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Adjust compact intro to fit expanded layout */
.compact-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  background-color: rgba(90, 154, 138, 0.05);
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
}

.compact-intro p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #555;
}

.compact-intro .intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
}

/* Features Grid - Expanded Layout */
.features-container {
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

/* Update feature boxes to match expanded design */
.feature-box {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Update event details section */
.event-details {
  margin: 5rem auto;
  padding: 0;
  position: relative;
  text-align: center;
  max-width: 1400px;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Update location showcase for expanded design */
.location-showcase {
  margin: 5rem auto;
  padding: 0;
  text-align: center;
  max-width: 1400px;
}

/* Update location images for expanded layout */
.location-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

/* Update CTA container to match expanded design */
.cta-container {
  margin: 4rem auto;
  padding: 3rem;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 15px;
}

/* Responsive adjustments for the expanded layout */
@media (max-width: 1200px) {
  .details-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .announcement-card {
    padding: 2rem 1rem;
  }
  
  .details-list {
    gap: 20px;
  }
  
  .location-showcase,
  .event-details,
  .cta-container,
  .check-back {
    margin: 3rem auto;
  }
}

@media (max-width: 768px) {
  .location-images {
    grid-template-columns: 1fr;
  }
  
  .announcement-card h2 {
    font-size: 1.8rem;
  }
  
  .compact-intro {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .details-list {
    grid-template-columns: 1fr;
  }
}

/* Speakers Section */
.speakers-section {
  margin: 6rem auto;
  padding: 0;
  max-width: 1400px;
  text-align: center;
}

.speakers-section h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto 3rem;
}

.speaker-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.speaker-image {
  height: 240px; /* Increased height since we removed bio */
  overflow: hidden;
  position: relative;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}

.speaker-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.2rem 0 0.3rem;
  color: var(--accent-dark);
  padding: 0 1.2rem;
}

.speaker-title {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 1.2rem; /* Increased bottom margin */
  padding: 0 1.2rem;
  font-style: italic;
}

/* Remove the speakers-note section since we're keeping it simple */
.speakers-note {
  display: none;
}

/* Responsive adjustments for speakers section */
@media (max-width: 1200px) {
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .speakers-section {
    margin: 4rem auto;
  }
}

@media (max-width: 768px) {
  .section-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .speaker-image {
    height: 240px;
  }
}

/* Redesigned Gallery Section with Equal Sized Images */
.gallery-section {
  margin: 6rem auto;
  padding: 0;
  max-width: 1400px;
  text-align: center;
}

.gallery-section h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.gallery-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 2rem auto 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 3rem 0;
}

/* All gallery items now have same dimensions */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  height: 100%;
  width: 100%;
  position: relative;
}

.gallery-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  padding: 20px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.image-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.image-description {
  font-size: 0.9rem;
  opacity: 0.8;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .image-title,
.gallery-item:hover .image-description {
  transform: translateY(0);
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Adjust gallery for different screen sizes */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-section {
    margin: 4rem auto;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    gap: 10px;
  }
  
  .gallery-section h3 {
    font-size: 2rem;
  }
  
  .gallery-description {
    font-size: 1rem;
  }
  
  .image-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
} 