/* =========================================
   MOGSSTUDIO - Elizabeth G Fashion Boutique Theme
   ========================================= */

/* Variables & Design System */
:root {
    /* Color Palette */
    --primary-color: #d8c3a5;      /* Soft beige/nude */
    --secondary-color: #333333;    /* Soft black for text */
    --accent-color: #e9e0d2;       /* Very light nude for backgrounds */
    --text-dark: #222222;
    --text-light: #ffffff;
    --bg-light: #fbfbfb;           /* Off-white */
    --bg-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1300px;
    --transition: all 0.4s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

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

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

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

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

/* Buttons - Elegant Boutique Style */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    color: var(--text-dark);
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.btn-block {
    display: block;
    width: 100%;
}

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

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fadeIn 1s forwards ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Navigation - Boutique Style */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar {
    background: var(--bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: inline-block;
}

.logo img {
    height: 60px; /* Adjust as needed */
    width: auto;
    display: block;
    mix-blend-mode: darken;
    filter: contrast(1.2) brightness(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 2rem;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    margin-bottom: 3rem;
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: 500px;
    mix-blend-mode: darken;
    filter: contrast(1.2) brightness(1.05);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 5rem;
    text-align: center;
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #555;
}

/* Branded About Section */
.about-branded-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.about-branded-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-branded-text {
    padding-right: 2rem;
}

.about-branded-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.about-branded-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

.about-branded-paragraphs {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 3rem;
}

.about-branded-paragraphs p {
    margin-bottom: 1.5rem;
}

.branded-btn {
    border-radius: 0;
    padding: 1rem 2.5rem;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.about-branded-profile-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 6.5rem 3rem 3rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: 3rem;
    border: 1px solid #f0f0f0;
}

.about-branded-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--bg-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-card-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.profile-card-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.profile-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    letter-spacing: 0;
    text-transform: none;
}

.profile-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 0;
    text-transform: none;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

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

/* Collections Section - Clean Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.collection-card {
    text-align: center;
    cursor: pointer;
}

.card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 3/4;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    image-rendering: high-quality;
    filter: contrast(1.08) saturate(1.05);
}

img.hide-watermark {
    transform: scale(1.12) translate(4%, 4%);
}

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

.collection-card:hover .card-image img.hide-watermark {
    transform: scale(1.17) translate(4%, 4%);
}

.collection-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.collection-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Instagram Section */
.instagram-feed {
    background: var(--bg-light);
    padding: 5rem 0;
    margin-top: 3rem;
}

/* Contact / Footer Section */
.footer {
    background: var(--bg-white);
    border-top: 1px solid #eee;
    padding: 5rem 2rem 2rem;
}

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

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
    color: #666;
    font-size: 0.95rem;
    line-height: 2;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-right: none;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--text-dark);
    color: white;
    border: 1px solid var(--text-dark);
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.85rem;
}

/* Reviews Section */
.reviews {
    background: var(--bg-white);
    padding: 5rem 0;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    flex: 1 1 300px;
    max-width: 450px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

/* Bridal Trousseau Next-Gen Section */
.bridal-trousseau {
    position: relative;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/bridal_trousseau_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bridal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    z-index: 1;
}

.bridal-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    margin-right: auto;
    margin-left: 5%;
}

.glass-panel {
    background: rgba(25, 25, 25, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    color: white;
}

.glass-panel h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: white;
}

.glass-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #eee;
}

/* Contact Us Section - New Gen */
.contact-section {
    background: #0a0a0a;
    padding: 6rem 0;
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(0,0,0,0.2);
    color: white;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.contact-form .btn {
    background: white;
    color: black;
    border: none;
    padding: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* WhatsApp Floating Ribbon */
.whatsapp-ribbon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-ribbon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-ribbon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-branded-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    .about-branded-text {
        padding-right: 0;
        text-align: center;
    }
    .about-branded-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-branded-profile-card {
        padding: 6.5rem 1.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: center;
        padding: 0.5rem 2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-content {
        padding: 3rem 2rem;
        margin: 0 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        margin-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
