:root {
    --primary-red: #9B1B30;
    --secondary-red: #DC143C;
    --white: #FFFFFF;
    --shadow: #111111;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #000;
}

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

.navbar {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    z-index: 1000;
    text-align: center;
}

.logo {
    margin-bottom: 1rem;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-red);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(155, 27, 48, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://images.pexels.com/photos/1579739/pexels-photo-1579739.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

section {
    padding: 5rem 2rem;
}

.about {
    background-color: #111;
}

.about h2,
.retreats h2,
.indulgence h2,
.echoes h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.retreat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.retreat-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #222;
}

.retreat-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.retreat-card:hover img {
    transform: scale(1.1);
}

.retreat-card h3 {
    padding: 1rem;
    color: var(--white);
}

.retreat-card p {
    padding: 0 1rem 1rem;
    color: #ccc;
}

.experience-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    margin-left: 100px;
}

.experience-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
}

.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience-card h3 {
    padding: 1rem;
}

.experience-card p {
    padding: 0 1rem 1rem;
    color: #ccc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--primary-red);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #ccc;
}

.join-us {
    text-align: center;
    background: linear-gradient(rgba(155, 27, 48, 0.9), rgba(155, 27, 48, 0.9));
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

footer {
    background: #111;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
}

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

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-red);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    display: none;
}

.cookie-content {
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--white);
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--secondary-red);
    background: none;
}

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

    .hero h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* Contact Section Styling */
.contact-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background-color: #444;
}

/* Enhanced Thank You Popup */
#thank-you-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: 9999;
  max-width: 400px;
  width: 90%;
  animation: fadeInPop 0.4s ease-in-out;
  border: 1px solid #e0e0e0;
}

#thank-you-popup h2 {
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2a2a2a;
}

#thank-you-popup p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

/* Optional: subtle entrance animation */
@keyframes fadeInPop {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Enhanced Thank You Popup */
#thank-you-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: 9999;
  max-width: 400px;
  width: 90%;
  animation: fadeInPop 0.4s ease-in-out;
  border: 1px solid #e0e0e0;
}

#thank-you-popup h2 {
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2a2a2a;
}

#thank-you-popup p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

/* Optional: subtle entrance animation */
@keyframes fadeInPop {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

* Shared Styles for Policy Pages */

main {
  font-family: 'Space Grotesk', sans-serif;
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
  min-height: 70vh;
}

.page-hero {
    height: 50px;
  text-align: center;
  padding: 150px 20px;
  background-color: #2c2c2c;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 0px;
}

.page-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 0;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-section {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
