/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAF9F6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Header and Navigation */
header {
    background-color: #FAF9F6;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2C2C2C;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2C2C2C;
    margin: 3px 0;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1E2A38;
}

/* Hero Carousel Section */
.hero-carousel-container {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px; /* Account for fixed header */
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(30, 42, 56, 0.3),
        rgba(30, 42, 56, 0.8)
    );
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: #FAF9F6;
    max-width: 800px;
    padding: 3rem 2rem;
    background: rgba(30, 42, 56, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    color: #FAF9F6;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #FAF9F6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    transform: translateY(-50%);
}

.carousel-btn {
    background: rgba(250, 249, 246, 0.2);
    border: 2px solid rgba(250, 249, 246, 0.6);
    color: #FAF9F6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(184, 170, 151, 0.8);
    border-color: #B8AA97;
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(250, 249, 246, 0.4);
    border: 2px solid rgba(250, 249, 246, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #B8AA97;
    border-color: #B8AA97;
    transform: scale(1.2);
}

/* Legacy hero styles (keep for backwards compatibility) */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: #FAF9F6;
    padding: 0 2rem;
    padding-top: 80px; /* Account for fixed header */
}

/* Hero Page (for inner pages) */
.hero-page {
    background-color: #1E2A38;
    color: #FAF9F6;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 70px; /* Account for fixed header */
}

.hero-page h1 {
    color: #FAF9F6;
    margin-bottom: 1rem;
}

.hero-page p {
    font-size: 1.2rem;
    color: #B8AA97;
}

/* Hero Page with Image */
.hero-page-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 70px; /* Account for fixed header */
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.hero-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-page-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(30, 42, 56, 0.4),
        rgba(30, 42, 56, 0.8)
    );
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-page-image .hero-overlay .container {
    text-align: center;
    color: #FAF9F6;
    background: rgba(30, 42, 56, 0.5);
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-page-image h1 {
    color: #FAF9F6;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-page-image p {
    font-size: 1.3rem;
    color: #FAF9F6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: #FAF9F6;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FAF9F6;
}

.cta-button {
    display: inline-block;
    background-color: #1E2A38;
    color: #FAF9F6;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #B8AA97;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Sections */
section {
    padding: 5rem 2rem;
}

section:nth-child(even) {
    background-color: #FAF9F6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

#about img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background-color: #FAF9F6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-item p:last-of-type {
    margin-top: auto;
}

/* Memberships */
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Partners */
#partners {
    background-color: #FAF9F6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.partner-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.partner-item h3 {
    margin-bottom: 1rem;
    color: #1E2A38;
}

.partner-item p {
    flex-grow: 1;
    color: #2C2C2C;
}

.membership-item {
    text-align: center;
    padding: 2rem;
    background-color: #FAF9F6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.membership-item:hover {
    transform: translateY(-5px);
}

.membership-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.membership-item li {
    margin-bottom: 0.5rem;
}

.membership-item .cta-button {
    margin-top: auto;
}

/* Contact */
.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: #FAF9F6;
    padding: 2rem;
    text-align: center;
}

.social-links {
    margin-top: 1rem;
}

.social-icon {
    color: #FAF9F6;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #B8AA97;
}

/* Footer logo */
.footer-logo {
    height: 20px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.footer-logo:hover {
    opacity: 0.9;
}

/* Background variants */
.bg-light {
    background-color: #F5F5F5;
}

/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h3 {
    color: #1E2A38;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li::before {
    content: "•";
    color: #B8AA97;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services page styles */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: #2C2C2C;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    color: #1E2A38;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.coming-soon {
    background-color: #B8AA97;
    color: #FAF9F6;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coming-soon-item {
    opacity: 0.7;
}

/* Membership page styles */
.membership-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #B8AA97;
    margin-bottom: 1.5rem;
}

.membership-price {
    color: #1E2A38;
    font-weight: 600;
    font-size: 1.1rem;
}

.membership-item.featured {
    background-color: #1E2A38;
    color: #FAF9F6;
    transform: scale(1.05);
}

.membership-item.featured h3,
.membership-item.featured .membership-price {
    color: #FAF9F6;
}

.membership-item.featured .membership-header {
    border-bottom-color: #B8AA97;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    flex-grow: 1;
}

.membership-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.membership-features li::before {
    content: "✓";
    color: #B8AA97;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item,
.access-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3,
.access-item h3 {
    color: #1E2A38;
    margin-bottom: 1rem;
}

.access-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.feature {
    text-align: center;
}

.feature h3 {
    color: #1E2A38;
    margin-bottom: 1rem;
}

/* Partners page styles */
.partner-benefits {
    margin-top: 1.5rem;
}

.partner-benefits h4 {
    color: #1E2A38;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.partner-benefits ul {
    list-style: none;
    padding: 0;
}

.partner-benefits li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.partner-benefits li::before {
    content: "•";
    color: #B8AA97;
    position: absolute;
    left: 0;
}

.partner-link {
    display: inline-block;
    background-color: #1E2A38;
    color: #FAF9F6;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.partner-link:hover {
    background-color: #B8AA97;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    color: #1E2A38;
    margin-bottom: 1rem;
}

/* Contact page styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #1E2A38;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #1E2A38;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #B8AA97;
}

.social-contact {
    margin-top: 3rem;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #F5F5F5;
    border-radius: 8px;
    text-decoration: none;
    color: #2C2C2C;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #B8AA97;
    color: #FAF9F6;
}

.social-platform {
    font-weight: 600;
}

.social-handle {
    color: #1E2A38;
}

.social-link:hover .social-handle {
    color: #FAF9F6;
}

.contact-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-service {
    text-align: center;
    padding: 2rem;
    background-color: #FAF9F6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-service h3 {
    color: #1E2A38;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    background-color: #1E2A38;
    color: #FAF9F6;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.contact-button:hover {
    background-color: #B8AA97;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-step h3 {
    color: #1E2A38;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* CTA button enhancements */
.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Tablet responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid,
    .access-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultation-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-points,
    .contact-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1E2A38;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .memberships-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .access-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultation-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        min-height: 44px; /* Touch-friendly */
    }

    .social-icon {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-item {
        min-height: auto;
    }

    /* Multi-page responsive styles */
    .hero-page {
        padding: 6rem 1rem 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links-contact {
        gap: 0.5rem;
    }

    .social-link {
        padding: 0.75rem;
    }

    .benefits-grid,
    .access-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .exclusivity-features,
    .philosophy-points,
    .contact-services,
    .consultation-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Hero page image responsive */
    .hero-page-image {
        height: 350px;
    }

    .hero-page-image h1 {
        font-size: 2.5rem;
    }

    .hero-page-image p {
        font-size: 1.1rem;
    }

    .hero-page-image .hero-overlay .container {
        padding: 2rem 1.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .membership-item.featured {
        transform: none;
    }

    /* Carousel responsive styles */
    .hero-carousel-container {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .carousel-controls {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Hero page image mobile */
    .hero-page-image {
        height: 300px;
    }

    .hero-page-image h1 {
        font-size: 2rem;
    }

    .hero-page-image p {
        font-size: 1rem;
    }

    .hero-page-image .hero-overlay .container {
        padding: 1.5rem 1rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        border-radius: 5px;
    }
}