/* =========================================
   OHCC Dugri - CSS Styles
   Palette: White, Off-White, Gold/Champagne
   Fonts: Playfair Display (Headings), Inter (Body)
   ========================================= */

:root {
    /* Color Palette */
    --gold-primary: #B58A59;
    --gold-dark: #8F6A40;
    --gold-light: #F2EBE1;
    --white: #ffffff;
    --off-white: #FAF6ED;
    --text-dark: #3E3023;
    --text-light: #7A6958;
    --border-color: #E6DCB8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 80px 0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white); /* Reverting to white to make the gold/beige POPS */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.py-section {
    padding: var(--section-pad);
}

.bg-light {
    background-color: var(--off-white);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

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

.gold-text {
    color: var(--gold-primary);
}

/* Typography Utilities */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--gold-primary);
    margin-bottom: 2rem;
}

.center-underline {
    margin: 0 auto 2rem auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px; /* Adjust based on actual logo proportions */
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-menu a:hover {
    color: var(--gold-primary);
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('cta.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(62, 48, 35, 0.85) 0%, rgba(181, 138, 89, 0.4) 100%); /* Deep brown to gold gradient */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    color: var(--white);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-highlights {
    margin-top: 2rem;
}

.about-highlights li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-image-wrapper {
    position: relative;
    padding-right: 20px;
    padding-top: 20px;
}

.placeholder-image {
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1606902965551-dce093cda6e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); /* Women training together */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(181, 138, 89, 0.2); /* Gold shadow */
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(181, 138, 89, 0.15); /* Soft gold overlay based on new --gold-primary */
}

.gold-accent-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    z-index: 1;
}

#founder .placeholder-image {
    background-size: cover;
    border-radius: 4px; /* Slight softening for portrait */
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border-color); /* Thicker border */
    border-radius: 8px; /* Slightly rounded */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(181, 138, 89, 0.15); /* Gold shadow */
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-us {
    background-color: var(--gold-primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.why-us-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Membership */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background-color: var(--off-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    background-color: var(--white);
    border: 3px solid var(--gold-primary);
    padding: 60px 30px;
    box-shadow: 0 15px 40px rgba(181, 138, 89, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-primary);
    color: var(--white);
    padding: 5px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items:baseline;
}

.price span:first-child {
    font-size: 1.5rem;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
}

.plan-features {
    margin-bottom: 35px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold-primary);
    margin-right: 15px;
    font-size: 0.9rem;
}

.plan-features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.plan-features li.disabled::before {
    content: '\f00d';
    color: #aaa;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--gold-light);
    border: 2px solid var(--gold-primary); /* Adding strict gold border */
    padding: 40px;
    text-align: center;
    position: relative;
    border-radius: 8px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gold-dark);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
}

.map-container {
    height: 250px;
    width: 100%;
}

.contact-form-wrapper {
    background-color: var(--off-white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(181, 138, 89, 0.15); /* Gold shadow */
    border-top: 5px solid var(--gold-primary);
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

/* Footer */
.footer {
    background-color: var(--gold-primary);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 60px;
    background-color: var(--white);
    padding: 4px;
    border-radius: 4px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.tagline {
    color: var(--white);
    font-style: italic;
    opacity: 0.9;
    font-family: var(--font-heading);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold-primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(181, 138, 89, 0.4); /* Gold shadow */
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Transformations Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal-title {
    color: var(--gold-primary);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.modal-content {
    background-color: var(--black);
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    border: 2px solid var(--gold-primary);
    padding: 40px;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--gold-primary);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--white);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.modal-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--gold-primary);
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.award-img:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

/* Free Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.plan-column {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-primary);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--black);
}

.plan-content h4 {
    color: var(--gold-primary);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.plan-content ul {
    list-style-type: none;
    padding-left: 0;
}

.plan-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.plan-content li::before {
    content: "•";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan-content p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Base Responsive rules already below... */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .plans-grid, .services-grid, .modal-grid, .awards-grid {
        grid-template-columns: 1fr !important; /* Force override inline styles */
        gap: 40px;
    }
    
    #founder .about-image-wrapper {
        order: -1; /* Keep picture on top in mobile */
    }
    
    .pricing-card.popular {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 30px 20px !important;
    }
    
    .py-section {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-item {
        min-width: 45%;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
