/* Base Styles */
:root {
  /* Color Palette */
  --lesbian-1: #D52D00;  /* Dark Orange */
  --lesbian-2: #FF9A56;  /* Light Orange */
  --lesbian-3: #FFFFFF;  /* White */
  --lesbian-4: #F88379;  /* Light Coral */
  --lesbian-5: #FF6B6B;  /* Coral */
  
  /* Theme Colors */
  --primary-color: var(--lesbian-5);     /* Coral */
  --secondary-color: var(--lesbian-1);   /* Dark Orange */
  --accent-color: var(--lesbian-4);      /* Light Coral */
  --text-color: #333;
  --light-bg: #FFF3F3;                    /* Pearl */
  --white: #ffffff;
  --black: #2D2D2D;                       /* Soft black */
  --gray-light: #FFF3F3;                 /* Pearl */
  --gray: #9E8E9B;                       /* Muted purple-gray */
  --gray-dark: #4A3E47;                  /* Dark purple-gray */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--lesbian-5) 0%, var(--lesbian-1) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--lesbian-4) 0%, var(--lesbian-2) 100%);  /* Light Coral to Light Orange */
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Effects */
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(210, 98, 164, 0.15);
  --border-radius: 8px;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
  background: linear-gradient(135deg, #FFF3F3 0%, #FFF0F0 50%, #FFF3F3 100%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FF7F50; /* Coral color */
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2.mid-heading {
  font-size: 2rem;
  margin-bottom: 1.75rem;
}

h2::after, h2.mid-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FF7F50; /* Coral color */
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #333;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  overflow: visible;
}

.section {
  padding: 2rem 0;  /* Reduced default section padding */
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.bg-light {
  background-color: var(--light-bg);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);  /* Coral shadow */
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(210, 98, 164, 0.3);
}

.btn:hover:before {
  opacity: 1;
}

.btn-primary {
  background-color: var(--primary-color);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background 0.3s ease, padding 0.3s ease;
  transform: translateY(0);
  background: transparent;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(255, 163, 134, 0.95);  /* Coral with transparency */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar scroll animations */
.nav-up {
  transform: translateY(-100%);
}

.nav-down {
  transform: translateY(0);
}

.navbar .container {
  display: flex;
  justify-content: flex-start; /* Align items to the start */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  gap: 4rem; /* Space between logo and nav */
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light-bg);
  text-decoration: none;
  gap: 0.8rem;
  letter-spacing: 0.5px;
  margin-right: 2rem; /* Space after logo */
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--lesbian-5);
  background-color: var(--light-bg);
  padding: 5px;
  transition: all 0.3s ease;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Logo image styles are now directly on .logo img */

.logo:hover {
  color: var(--secondary-color);
}

.logo:hover .logo-img {
  transform: rotate(10deg);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

/* Floating Logo */
.floating-logo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  border: 2px solid var(--lesbian-5);
  padding: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.floating-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar .container {
    justify-content: space-between;
    gap: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: block;
    height: 50px;
  }
  
  .logo {
    margin: 0;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .floating-logo {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .footer-logo-img {
    height: 70px;
    width: 70px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem; /* Reduced gap between menu items */
  flex-wrap: nowrap;
  align-items: center;
}

/* Adjust font size if needed to fit everything */
.nav-links a {
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links li {
  margin: 0;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  bottom: 0;
  left: 1rem;
  right: 1rem;
  border-radius: 3px;
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: calc(100% - 2rem);
}

/* Hero Section */
body {
  background-color: #fff;  /* Changed to white */
  color: #FFA386;  /* Main text color */
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: -200px !important;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: #F7E4DE; /* Fallback color */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  text-align: center;
  z-index: 2;
  padding: 2rem;
  margin: 0;
  box-sizing: border-box;
}

.hero-content .container {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-description p:first-child {
  margin-bottom: 1.5rem;
}

.hero-description p:last-child {
  margin-top: 1rem;  /* Extra space before the second paragraph */
  font-weight: 500;
}

.hero h2 {
  color: #ffffff;
  font-size: 3.5rem;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  padding: 0 1rem;
}

.hero .tagline {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.2s forwards;
  color: #ffffff;  /* White color for tagline */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;  /* White color for main heading */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero h2 {
  font-size: 4rem;
  margin: 0 0 2rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive adjustments for hero heading */
@media (max-width: 768px) {
  .logo {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    padding: 0 1rem;
    margin: 0 auto 1.5rem;
    text-align: center;
    width: 100%;
  }
}

/* Coral colored centered text */
.coral-centered-text {
  color: var(--coral);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Standardize all section headings */
section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  width: 100%;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF7F50, #FFD700);
  border-radius: 2px;
}

/* Responsive adjustments for section headings */
@media (max-width: 768px) {
  section h2 {
    font-size: 1.8rem;
    margin: 1.5rem 0 2rem;
    padding: 0 1rem 1rem;
  }
  
  section h2::after {
    width: 50px;
    bottom: -8px;
  }
}

.hero-description {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.9s forwards;
  padding: 0 10px;
  box-sizing: border-box;
}

.hero-description p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 auto 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.hero-description p:last-child {
  font-weight: 500;
  font-style: italic;
  width: 100%;
  margin: 0 auto;
  padding: 0 5px;
  box-sizing: border-box;
  white-space: normal;
}

.hero .btn {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 1.1s forwards;
  display: block;
  width: fit-content;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--lesbian-5);
  color: white;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 30px;
}

.hero .btn:hover {
  background: var(--lesbian-1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dream Section */
#dream .about-text p {
  color: var(--coral) !important;
  margin-top: 0;
  padding-top: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
}

/* About Content Layout */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  margin: 0;
  box-sizing: border-box;
  overflow: visible;
  word-break: break-word;
  hyphens: auto;
}

.about-text p {
  color: var(--coral);
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
  hyphens: auto;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    margin: 0;
    padding: 2rem 1rem 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .about-image {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
  }
  
  .about-text {
    order: 2;
    width: 100%;
    padding: 0;
  }
  
  .about-text p {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
  }
  
  #vision .container {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  #vision .mid-heading {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Zipolite Image Section */
.zipolite-image-section {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.zipolite-image-section .full-width-image {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zipolite-image-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);  /* Semi-transparent overlay */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
  width: 100%;
  height: 100%;
  margin: 0;
}

.zipolite-image-section .image-overlay h2 {
  color: #ffffff !important; /* Force white color */
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  font-size: 2.5rem; /* Reduced from 4rem */
  margin: 0;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .zipolite-image-section .full-width-image {
    height: 60vh;
    min-height: 400px;
  }
  
  .zipolite-image-section .image-overlay h2 {
    font-size: 2.2rem;
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .zipolite-image-section .full-width-image {
    height: 50vh;
    min-height: 350px;
    background-position: center 15%;
  }
  
  .zipolite-image-section .image-overlay h2 {
    font-size: 1.8rem;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .zipolite-image-section .full-width-image {
    height: 40vh;
    min-height: 300px;
    background-position: center 10%;
  }
  
  .zipolite-image-section .image-overlay h2 {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}

.zipolite-text .about-text p {
  color: #FF7F50;  /* Coral color */
  font-size: 1.1rem;
  line-height: 1.8;
  color: #FF7F50;  /* Coral color */
  margin-bottom: 1.5rem;
}

/* Zipolite Text Section */
.zipolite-text {
  background-color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.zipolite-text .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.zipolite-text .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#vision.zipolite-text .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  align-items: center;
}

#vision .about-text {
  max-width: 100%;
  padding: 0;
}

#vision .about-text p {
  background: #fff9f7;
  padding: 2rem;
  border-left: 4px solid #FF7F50;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 0;
}

#vision .about-image {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#vision .about-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  #vision.zipolite-text .about-content {
    grid-template-columns: 1fr;
  }
  
  #vision .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .zipolite-text .about-content {
    grid-template-columns: 1fr;
  }
  
  .zipolite-text .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

.zipolite-text .about-text {
  max-width: 100%;
  position: relative;
  padding: 0;
  width: 100%;
}

.zipolite-text .about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin: 0 auto 1.5rem;
  padding: 3rem 4rem;
  background-color: #fff9f7;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF7F50;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  box-sizing: border-box;
}

.zipolite-text .about-text p::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 127, 80, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

@media (max-width: 768px) {
  .zipolite-text {
    padding: 4rem 0;
  }
  
  .zipolite-text .about-text p {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
}

/* Vision Section */
#vision .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0;
}

#vision .about-text {
  flex: 1;
  min-width: 300px;
}

#vision .about-image {
  flex: 1.5;
  min-width: 50%;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 0;
  display: block;
}

#vision .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 992px) {
  #vision .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  #vision .about-image {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }
  
  #vision .about-image img {
    max-height: 80vh;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Update zipolite text styles */
.zipolite-text {
  color: #333;  /* Dark color for better readability */
}

/* Make the zipolite description text coral */
#zipolite .about-text p {
  color: #FF7F50;  /* Coral color */
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.zipolite-text .about-text p {
  color: #333;  /* Dark color for better readability */
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: normal;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem; /* Add padding for better mobile reading */
}

/* Join section styles */
#join .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
}

#join h2 {
  text-align: center;
  margin: 0 auto 3rem;
  color: #333;
  font-size: 2.5rem;
  font-weight: 600;
  width: 100%;
  line-height: 1.3;
  order: 1;
}

#join .about-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  order: 2;
  width: 100%;
}

#join .about-text {
  flex: 1;
  min-width: 0;
}

#join .about-text p {
  color: #FF7F50;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

#join .about-image {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#join .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

#join .about-image img:hover {
  transform: scale(1.02);
}

/* Ensure headings in zipolite-text are visible */
.zipolite-text h2,
.zipolite-text h3,
.zipolite-text h4 {
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Zipolite Image Section */
.zipolite-image-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  margin: 4rem 0;
}

.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.image-overlay .container {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.animate-text {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff !important; /* Force white color */
  -webkit-text-fill-color: #ffffff !important; /* For WebKit browsers */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important; /* Darker shadow for better contrast */
  position: relative;
  display: inline-block;
  animation: slideIn 1.2s ease-out;
  background: transparent !important; /* Ensure no background */
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.animate-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hover effect for the image */
.parallax-image:hover {
  transform: scale(1.02);
}

/* Gallery Grid for Get Inspired Section */
#inspired .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#inspired .gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#inspired .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  margin: 0;
}

#inspired .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 991px) {
  #inspired .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  #inspired .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

#inspired .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Mobile styles for Get Inspired section */
@media (max-width: 768px) {
  #inspired .gallery-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;  /* Reduced gap between items */
    padding: 0 0.5rem;  /* Reduced side padding */
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  
  #inspired .gallery-item {
    width: 95%;
    max-width: 320px;
    margin: 0 auto;
    height: 80px;  /* Half of the previous 80px height */
    max-height: 80px;  /* Also update max-height to match */
  }
}

/* Modern Carousel Gallery */
.section {
  padding: 0;  
  position: relative;
  overflow: hidden;
  margin: 0;
}

#dream {
  padding: 0 !important;
  margin-top: -20px !important; /* Pull up the section */
  position: relative;
}

.carousel-section {
  padding: 0;  /* No padding */
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 auto;
  width: 100%;
  max-width: 700px; /* Reduced from 1000px */
}

.carousel-slide {
  min-width: 100%;
  padding: 0 15px; /* Increased side padding */
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  aspect-ratio: 4/3; /* Better aspect ratio */
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 2rem 1.5rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 8px 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.carousel-slide:hover .slide-caption {
  transform: translateY(0);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10;
}

.carousel-button:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.05);
}

.carousel-button svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary-color);
  transition: fill 0.2s ease;
}

.carousel-button:hover svg {
  fill: white;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

/* Zipolite Text Section */
.zipolite-text {
  background-color: #fff;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.zipolite-text .about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

/* Vision Section Layout */
#vision .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#vision .mid-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

#vision .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

#vision .about-image {
  order: 2;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

#vision .about-text {
  order: 3;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Desktop Layout */
@media (min-width: 992px) {
  #vision .about-content {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }
  
  #vision .about-text {
    order: 1;
    flex: 1;
    text-align: left;
    padding: 0;
  }
  
  #vision .about-image {
    order: 2;
    flex: 1;
    margin: 0;
  }
}

#vision .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.zipolite-text .about-text {
  text-align: center;
  padding: 1.5rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.zipolite-text .about-text p {
  color: var(--coral);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 900px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-container {
    width: 90%;
    max-width: 600px;
    padding: 0 15px;
  }
  
  .carousel-slide img {
    height: 300px;
  }
  
  /* Mobile hero section adjustments */
  .hero {
    min-height: 90vh; /* Slightly smaller viewport height */
    height: 90vh;
    max-height: 90vh;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .hero-content {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 1rem;
  }
  
  /* Remove margin and padding from sections on mobile */
  .section {
    padding: 0;  /* No padding */
    margin: 0;
  }
  
  /* Adjust the hero section that follows the hero image */
  #dream {
    padding: 10rem 1rem 0 1rem !important; /* More padding at the top and sides */
    margin: 0 !important;
    max-width: 90%;
    margin: 0 auto !important;
  }
  
  /* Ensure no margin or padding on containers */
  .container {
    padding: 0 0.25rem !important; /* Minimal padding */
    margin: 0 !important;
  }
  
  /* Reduce spacing in about content */
  .about-content {
    gap: 0.5rem;  /* Reduced from 1.5rem */
  }
  
  .hero-overlay {
    min-height: 100%;
    height: 100%;
    padding: 0.5rem;  /* Reduced from 1rem */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
  }
  
  .hero h2 {
    font-size: 2rem;  /* Slightly smaller on mobile */
    margin-bottom: 0.75rem;  /* Reduced from 1.5rem */
    text-align: center;
    padding: 0 0.5rem;  /* Reduced from 1rem */
  }
  
  .hero .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
  
  .hero-content {
    padding: 1rem;
    text-align: center;
  }
  
  /* Zipolite Text Section Mobile */
  .zipolite-text {
    padding: 2rem 0;
  }
  
  .zipolite-text .about-content {
    padding: 0 1.5rem;
  }
  
  .zipolite-text .about-text {
    padding: 1rem 0;
  }
  
  .zipolite-text .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .carousel-section {
    padding: 1.5rem 0;
  }
  
  .carousel-container {
    width: 95%;
    padding: 0 10px;
  }
  
  .carousel-slide img {
    height: 250px;
  }
  
  .carousel-button {
    width: 36px;
    height: 36px;
  }
  
  .carousel-button svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .carousel-slide img {
    height: 200px;
  }
}

/* Stay With Us Section */
#stay-with-us {
  padding: 6rem 0 4rem;  /* Increased top padding */
  position: relative;
  background-color: var(--light-bg);
  text-align: center;
}

#stay-with-us .section-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

#stay-with-us .coral-centered-text {
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Gallery Section */
#inspired {
  padding: 2rem 0;
  background-color: #f9f9f9;
  text-align: center;
  width: 100%;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 1000px;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 3/2; /* Maintain 3:2 aspect ratio */
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.gallery-item > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Carousel Styles */
#dream .about-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3; /* Better aspect ratio for carousel */
  height: auto;
}

#dream .slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

#dream .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#dream .slide.active {
  opacity: 1;
}

#dream .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slideshow-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.prev-btn,
.next-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots span.active {
  background: white;
  transform: scale(1.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .about-image {
    aspect-ratio: 1/1; /* Square on mobile */
    max-width: 100%;
    margin: 0 auto;
  }
  
  .slideshow-container {
    padding-bottom: 100%; /* 1:1 aspect ratio for mobile */
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-item {
    margin: 0 0 15px 0;
    aspect-ratio: 1.33;
    height: 250px;
    width: 100%;
    max-width: 500px; /* Prevent images from getting too wide */
  }
  
  section#inspired {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Tablet Layout */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    padding: 0 0.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none; /* Firefox */
  }
  
  .gallery-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .gallery-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 280px;
    height: 280px; /* Fixed height to match width */
    aspect-ratio: 1/1; /* Square aspect ratio */
  }
  
  .gallery-caption {
    transform: none;
    opacity: 0.9;
  }
  
  .gallery-item:hover {
    transform: none;
  }
}

/* Container styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Full width container for mobile */
@media (max-width: 768px) {
  .container {
    padding: 0;
    max-width: 100%;
  }
}

/* Inspired section heading */
#inspired h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#inspired h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF7F50, #FFD700);
  border-radius: 2px;
}

/* Gallery Item Styles */
.gallery-item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1; /* Square aspect ratio */
  width: 100%;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

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

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

/* Caption Effect */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.15rem 0.25rem;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 500;
  line-height: 1.1;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Removed img styles since we're using background images */

/* Responsive adjustments */
@media (max-width: 1200px) {
  .gallery-grid {
    max-width: 1000px;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    padding: 0 1.5rem;
    max-width: 1000px;
  }
}

@media (max-width: 1400px) {
  .gallery-grid {
    max-width: 900px;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 850px;
    gap: 0.4rem;
  }
}

@media (max-width: 992px) {
  #inspired h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    padding: 0 1rem;
    max-width: 700px;
    gap: 0.4rem;
  }
}

@media (max-width: 768px) {
  #inspired {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
    gap: 1rem;
  }
  
  #inspired h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  
  .gallery-caption {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }
  
  .gallery-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
  }
  
  .gallery-caption {
    display: none; /* Hide captions on mobile */
  }
  
  .gallery-item {
    flex: 0 0 auto;
    width: 80px; /* Fixed width for each item */
    height: 80px; /* Fixed height for each item */
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 0.5rem;
    gap: 0.4rem;
  }
  
  .gallery-item {
    max-width: 80px; /* Even smaller on very small screens */
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 0.5rem;
    gap: 0.5rem;
  }
  
  .gallery-caption {
    font-size: 0.7rem;
    padding: 0.3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item {
    aspect-ratio: 1/1;
  }
  
  #inspired h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-item:hover .gallery-caption {
    opacity: 1;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-container img {
  transform: scale(1.05);
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.img-caption {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .img-caption {
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-gallery {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-gallery:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  background: var(--gradient-secondary);
}

/* Masonry layout adjustments */
.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item:nth-child(3n) {
  grid-row: span 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .masonry-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
  }
  
  .gallery-item:first-child,
  .gallery-item:nth-child(3n) {
    grid-row: span 1;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
  }
}

.zipolite-text .about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-text:last-of-type {
  margin-bottom: 2.5rem;
}

.hero .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 1.2s forwards;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .about-content.reverse {
    direction: rtl;
  }
  
  .about-content.reverse > * {
    direction: ltr;
  }
}

.about-text {
  padding: 2rem 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Full Width Image Section */
.full-width-image {
  position: relative;
  height: 70vh;  /* Slightly taller */
  min-height: 500px;  /* Increased minimum height */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0;  /* Removed top and bottom margin */
}

.full-width-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.image-overlay {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
}

.image-overlay h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Gallery Sections */
.image-gallery, .gallery-section, #inspired {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

#inspired {
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
  font-size: 0.9rem;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus .gallery-caption,
.gallery-item:active .gallery-caption {
  transform: translateY(0);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .gallery-caption {
    font-size: 0.8rem;
    padding: 0.5rem;
    transform: none;
    opacity: 0.9;
  }
  
  .gallery-item:hover {
    transform: none;
  }
  
  .gallery-item:active {
    transform: scale(0.98);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: #bbb;
  text-decoration: none;
}

#caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 0 1rem;
    gap: 15px;
  }
  
  .full-width-image {
    height: 50vh;
    min-height: 300px;
  }
  
  .image-overlay h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 3rem 1.5rem;
  }
}

/* Map Section */
#map {
  padding: 5rem 0;
  background-color: #fff;
}

.map-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.map-container p {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin: 0;
  padding: 0.5rem 0;
}

.map-container i {
  color: #FFA386;
  margin-right: 8px;
}

.map-wrapper {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.map-image-link:hover .map-image {
  transform: scale(1.03);
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-image-link:hover .map-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.map-address {
  background: #fff;
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  color: #555;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-address i {
  color: #FFA386;
}

.map-placeholder {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px dashed #ddd;
}

.map-placeholder p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFA386;
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 163, 134, 0.3);
}

.map-link:hover {
  background-color: #e68a6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 163, 134, 0.4);
}

.map-link i {
  font-size: 1.2em;
  color: white;
}

.map-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.map-image-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.map-image-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: #FFA386;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-link i {
  margin-right: 8px;
  color: #FFA386;
}

.map-link:hover {
  color: #e68a6e;
}

.location-details {
  text-align: center;
  margin-top: 2rem;
}

.location-details p {
  margin: 0.5rem 0;
  color: #333;
  font-size: 1.1rem;
}

.location-details i {
  color: #FFA386;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.location-details a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-details a:hover {
  color: #FFA386;
}

/* Contact Section Social Links */
.contact-info .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info .social-links p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

.contact-info .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #FFA386;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
  background-color: #e67a5d;
  transform: scale(1.1);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info {
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info p {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #000000;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.contact-info a {
  color: var(--lesbian-5);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--lesbian-1);
  text-decoration: underline;
}

.contact-info i {
  color: var(--lesbian-5);
  font-size: 1.4rem;
  min-width: 30px;
  text-align: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 248, 0.95));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.social-links p {
  margin: 0;
  font-weight: 700;
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.social-links p:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #405DE6, #E1306C);
  border-radius: 3px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;  /* Increased from 60px */
  height: 80px;  /* Increased from 60px */
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: #ffffff;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 2.8rem;  /* Increased from 2rem */
  box-shadow: 0 6px 20px rgba(193, 53, 132, 0.3);
  position: relative;
  overflow: hidden;
}

.social-links a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(193, 53, 132, 0.4);
  border-radius: 50%;
}

.social-links a:hover:before {
  left: 100%;
}

/* Dream Section */
#dream {
  padding: 4rem 0;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#dream .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
#dream .about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

#dream .about-text {
  flex: 1;
  max-width: 600px;
}

#dream .about-image {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#dream .about-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#dream .about-image .slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#dream .about-image .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#dream .about-image .slide.active {
  opacity: 1;
  position: relative;
}

@media (max-width: 992px) {
  #dream .about-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0;
  }
  
  .about-text,
  .about-image {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  
  .about-image {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
  }
  
  .about-image .slideshow-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  
  .about-image .slide {
    height: 100%;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
}

#dream .about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin: 0 auto 1.5rem;
  padding: 2rem;
  background-color: #fff9f7; /* Very light coral background */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF7F50; /* Coral accent border */
  position: relative;
  max-width: 800px;
}

#dream .about-text p::before {
  content: "{";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 127, 80, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 100;
}

#dream .about-text p::after {
  content: "}";
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 4rem;
  color: rgba(255, 127, 80, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 100;
}

#dream .about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #dream {
    padding: 4rem 0;
  }
  
  #dream .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  #dream .about-image,
  #dream .about-text {
    max-width: 100%;
  }
  
  #dream .about-text p {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
}

/* Slideshow styles */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide img {
  width: 100%;
  height: 400px; /* Fixed height for all images */
  object-fit: cover;
  display: block;
  object-position: center; /* Center the image within the container */
}

/* Ensure the slideshow container has a fixed height */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 400px; /* Match the image height */
  overflow: hidden;
  border-radius: 10px;
}

.slideshow-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  z-index: 10;
}

.prev-btn,
.next-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  color: #FF7F50;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background: #FF7F50;
  color: white;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #FF7F50;
}

#dream .about-image:hover {
  transform: translateY(-5px);
}

#dream .about-text {
  flex: 1;
  text-align: left;
}

#dream .about-text {
  max-width: 800px;
  position: relative;
  padding: 0 1rem;
  margin: 0 auto;
}

#dream .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #FF7F50;  /* Coral color */
  margin-bottom: 1.5rem;
  position: relative;
  padding: 2rem;
  background-color: #fff9f7; /* Very light coral background */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF7F50; /* Coral accent border */
}

#dream .about-text p:first-child {
  margin-bottom: 1.5rem;
}

#dream .about-text p:first-child::before {
  content: '\201C';  /* Left double quotation mark */
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 127, 80, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

#dream .about-text p:last-child {
  margin-top: 0;
}

@media (max-width: 992px) {
  #dream .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  #dream .about-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  #dream .about-text {
    text-align: center;
  }
  
  #dream .about-text p {
    padding: 1.5rem;
  }
}

/* Honeypot field */
.hidden {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Success message */
.form-success-message {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-align: center;
  border: 1px solid #a5d6a7;
  display: none; /* Will be shown by JavaScript */
}

.contact-form {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d5008f;
  box-shadow: 0 0 0 2px rgba(93, 64, 55, 0.2);
  background-color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Compact Facilities Section */
.compact-facilities {
  max-width: 900px;
  margin: 0 auto;
}

.facility-category {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.facility-category h3 {
  color: var(--lesbian-5);  /* Coral color */
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.facility-category p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Original Facilities Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.facility-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.facility-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.facility-item h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--dark-color);
}

/* Footer Social Links */
.footer .social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #FFA386;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer .social-links a:hover {
  background-color: #e67a5d;
  transform: scale(1.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Community Message Section */
.community-message-section {
  position: relative;
  background-image: url('../images/beach2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.community-message-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.community-message-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.community-message-section .section-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.community-message-section .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FF7F50, #FFD700);
  margin: 0 auto 2rem;
  border-radius: 3px;
}

.community-message-section .message-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .community-message-section {
    padding: 4rem 0;
    background-attachment: scroll;
  }
  
  .community-message-overlay {
    padding: 3rem 0;
  }
  
  .community-message-section .section-title {
    font-size: 2rem;
  }
  
  .community-message-section .message-text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Stay With Us Section */
.compact-stay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.compact-stay-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.compact-stay-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.compact-stay-content {
  padding: 1.5rem;
  text-align: center;
}

.compact-stay-content h3 {
  color: #333;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.compact-stay-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF7F50, #FFD700);
}

.compact-stay-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.compact-stay-content .btn-primary {
  padding: 8px 20px;
  font-size: 0.85rem;
  display: inline-block;
}

#stay-with-us .section-header {
  margin-bottom: 2rem;
}

#stay-with-us h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#stay-with-us .section-intro {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #stay-with-us.section,
  #facilities.section,
  #volunteer.section {
    padding: 1.5rem 0;
  }
  
  #dream.section {
    padding: 6rem 0 1rem; /* Reduced bottom padding from 2rem to 1rem */
  }
  
  /* Ensure text comes before image on mobile for dream section */
  #dream .about-content {
    display: flex;
    flex-direction: column;
  }
  
  /* Slideshow container styles */
  .slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .slide {
    display: none;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    position: relative;
  }
  
  .slide.active {
    display: block;
  }
  
  .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #dream .about-text {
    order: 1;
    margin: 0 auto 2rem;  /* Center the text block */
    width: 100%;
    max-width: 600px;  /* Match zipolite text width */
    padding: 0 1.5rem;  /* Match zipolite padding */
    box-sizing: border-box;
    position: relative;
    z-index: 1;  /* Ensure text stays above other elements */
  }
  
  #dream .about-text p {
    font-size: 1.1rem;  /* Slightly larger text for better readability */
    line-height: 1.7;  /* Increased line height for better readability */
    margin: 0;
    padding: 0.5rem 0;  /* Reduced vertical padding */
    text-align: center;  /* Center align text like zipolite */
  }
  
  #dream .about-image {
    order: 2;
    width: 100%;
    max-width: 800px;  /* Match zipolite image width */
    margin: 0 auto;  /* Center the image */
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  /* Join us section mobile layout */
  #join {
    color: #333; /* Ensure default text color is visible */
  }
  
  /* Mobile styles for join section */
  @media (max-width: 768px) {
    #join .container {
      padding: 2rem 1rem !important;
      display: block !important;
    }
    
    #join h2 {
      font-size: 1.8rem !important;
      margin: 0 0 1.5rem 0 !important;
      text-align: center !important;
      width: 100% !important;
      order: 1 !important;
    }
    
    #join .about-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 1.5rem !important;
      width: 100% !important;
    }
    
    #join .about-text {
      order: 3 !important;
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    
    #join .about-text p {
      font-size: 1.1rem !important;
      text-align: center !important;
      margin: 0 auto !important;
      max-width: 100% !important;
    }
    
    #join .about-image {
      order: 2 !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 0 1.5rem 0 !important;
      padding: 0 !important;
    }
    
    #join .about-image img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      border-radius: 8px !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }
  }
  
  .social-links p {
    display: block;
    margin: 0.5rem 0;
    line-height: 1.5;
    white-space: nowrap;
  }
  
  /* Footer Styles */
  .footer {
    background-color: #f9f9f9;
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo-img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }
  
  .footer-logo h3 {
    margin-bottom: 0.5rem;
  }
  
  .footer-logo p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-links,
  .footer-contact {
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #FF7F50;
  }
  
  .footer-contact p {
    margin: 0.5rem 0;
    color: #666;
  }
  
  .footer-contact a {
    color: #FF7F50;
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Desktop styles */
  @media (min-width: 768px) {
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      padding: 0 2rem;
    }
    
    .footer-logo {
      flex: 1 1 30%;
      text-align: left;
      margin-bottom: 0;
    }
    
    .footer-logo p {
      margin: 0;
      text-align: left;
    }
    
    .footer-links,
    .footer-contact {
      flex: 1 1 30%;
      text-align: left;
      margin-bottom: 0;
    }
  }
  
  .instagram-link {
    color: #333;
    text-decoration: none;
    margin-right: 5px;
  }
  
  .instagram-link:hover {
    text-decoration: underline;
  }
  
  /* Ensure Instagram handles are lowercase */
  .social-links p,
  #social-media p {
    text-transform: lowercase !important;
    font-variant: normal !important;
  }
  
  #facilities .container,
  #volunteer .container {
    padding: 0 1rem;
  }
  
  #stay-with-us .container,
  #facilities .container {
    padding: 0 1rem;
  }
  
  .compact-stay-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 1.5rem auto 0;
  }
  
  .compact-stay-card {
    margin-bottom: 1.5rem;
  }
  
  #stay-with-us h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}

#stay-with-us {
  width: 100%;
  overflow: hidden;
}

/* Hero Section */
.stay-hero {
  height: 60vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: 3rem;
}

.stay-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.stay-hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

/* Content Rows */
.stay-content-sections {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.stay-row {
  display: flex;
  min-height: 500px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.stay-row.reverse {
  flex-direction: row-reverse;
}

.stay-image-wrapper {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 300px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.7) 0%, rgba(255, 99, 71, 0.7) 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.stay-image-wrapper:hover .image-overlay {
  opacity: 0.8;
}

.stay-text-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem;
  background-color: #fff;
}

.stay-text-content {
  max-width: 500px;
  margin: 0 auto;
}

.stay-text-content h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.stay-text-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF7F50, #FFD700);
}

.stay-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, #FF7F50, #FF6347);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
  color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .stay-row {
    flex-direction: column;
    min-height: auto;
  }
  
  .stay-row.reverse {
    flex-direction: column;
  }
  
  .stay-image-wrapper {
    min-height: 300px;
  }
  
  .stay-text-wrapper {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .stay-hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .stay-text-content h3 {
    font-size: 1.8rem;
  }
  
  .stay-content-sections {
    padding: 0 1.5rem 3rem;
  }
}

/* Footer */
.footer {
  background-color: #F7E4DE;  /* Light pink background */
  color: #FFA386;  /* Coral text color */
  padding: 4rem 0 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  text-align: center;
}

.footer-logo h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.8rem;
  color: #FFA386;  /* Coral color for Femitopia heading */
  line-height: 1.8;
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  text-align: center;
}

.footer-links h4 {
  color: #FFA386;  /* Coral color for Quick Links heading */
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #FFA386;  /* Coral text color */
  transition: var(--transition);
  display: inline-block;
  padding: 0.3rem 0;
}

.footer-links a:hover {
  color: #d46b52;  /* Slightly darker coral on hover */
  transform: translateX(5px);
  padding-left: 0;
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  margin-bottom: 1rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0 1rem;
    overflow: hidden;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .footer-logo {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 163, 134, 0.2);
  }
  
  .footer-logo p {
    margin: 0.5rem 0 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    padding: 0.5rem 0;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links li {
    margin: 0.3rem 0;
  }
  
  .footer-links a {
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
  
  .footer-contact {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 163, 134, 0.2);
  }
  
  .footer-contact p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  
  .footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 163, 134, 0.2);
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
  }
}

.social-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.social-links h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.social-links a {
  display: inline-block;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Slideshow Mobile Styles */
@media (max-width: 768px) {
  .slideshow-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .slideshow-container {
    height: 100%;
  }
  
  .slideshow-container .slide {
    width: 100%;
    height: 100%;
    min-height: 400px; /* Increased minimum height for better mobile viewing */
    overflow: hidden;
  }
  
  .slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    object-position: center;
  }
  
  .slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none; /* Allow clicks to pass through to underlying elements */
  }
  
  .prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--lesbian-1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: auto; /* Re-enable pointer events for buttons */
    transition: all 0.3s ease;
  }
  
  .prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
  }
  
  .dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 10;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--lesbian-1);
  }
}

/* Join Us Section - Mobile Styles */
@media (max-width: 768px) {
  #join .about-image {
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 500px; /* Prevents the image from becoming too wide */
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  #join .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  /* This will ensure the image maintains its aspect ratio */
  #join .about-image::before {
    content: '';
    display: block;
    padding-top: 150%; /* Adjust this percentage to match your image's aspect ratio */
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 163, 134, 0.3);  /* Lighter coral border */
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 4%;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 2rem;
    transition: var(--transition);
    z-index: 998;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--dark-color);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    padding: 6rem 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
  }
  
  /* Contact Section Mobile Styles */
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-info {
    margin-bottom: 2rem;
    width: 100%;
  }
  
  .contact-info p {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .social-links p {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .social-links a {
    margin: 0;
    width: 70px;  /* Increased from 45px */
    height: 70px;  /* Increased from 45px */
    font-size: 2.2rem;  /* Increased from 1.6rem */
  }
}

/* Build With Us Section */
.build-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  text-align: center;
}

.build-header .lead {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.build-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.build-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.build-card h3 {
  color: var(--lesbian-1);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.build-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
}

.build-card p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.build-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.build-card li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.build-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--lesbian-5);
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}

.build-cta {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
}

.build-cta-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.build-cta h3 {
  color: var(--lesbian-1);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.build-cta p {
  color: var(--gray-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.build-cta .btn {
  align-self: flex-start;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.build-cta-image {
  position: relative;
  min-height: 300px;
}

.build-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .build-cta {
    grid-template-columns: 1fr;
  }
  
  .build-cta-image {
    order: -1;
    height: 250px;
  }
  
  .build-cta-content {
    padding: 2rem;
  }
  
  .build-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .build-header {
    margin-bottom: 2.5rem;
  }
  
  .build-card {
    padding: 1.5rem;
  }
}

.volunteer-text h2 {
  color: var(--lesbian-1);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.3;
}

.volunteer-text .divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1.5rem 0;
}

.volunteer-text .lead {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.volunteer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.volunteer-benefits h3,
.volunteer-perks h3 {
  color: var(--lesbian-5);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.volunteer-benefits h3:after,
.volunteer-perks h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
}

.volunteer-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.volunteer-details li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.volunteer-details li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lesbian-5);
  font-weight: bold;
}

.cta-text {
  font-size: 1.1rem;
  margin: 2rem 0 1.5rem;
  color: var(--gray-dark);
  font-weight: 500;
}

.volunteer-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.volunteer-image:hover {
  transform: translateY(-5px);
}

.volunteer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media (max-width: 992px) {
  .volunteer-content {
    grid-template-columns: 1fr;
  }
  
  .volunteer-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .volunteer-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-image img {
    max-width: 80%;
    height: 500px; /* Increased height */
    aspect-ratio: 3/4;
    object-fit: cover;
    margin: 0 auto;
  }
}
