<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    /* Color Palette */
    --cream: #fcf8f3;
    --gold: #d4af37;
    --bordo: #8b0000;
    --dark-green-gray: var(--bordo); /* Replacing dark-green-gray with bordo */
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-green-gray);
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1rem;
}

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

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--dark-green-gray);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-instagram {
    background-color: #c13584;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-instagram i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(252, 248, 243, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bordo);
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--bordo);
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bordo);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.language-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    opacity: 0.6;
    transition: all 0.3s;
}

.language-btn.active {
    opacity: 1;
    color: var(--dark-green-gray);
}

.language-btn:hover {
    opacity: 1;
}

.language-divider {
    width: 1px;
    height: 15px;
    background-color: var(--text-color);
    margin: 0 0.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--cream);
    position: relative;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    padding-right: 20px;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green-gray);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green-gray);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-color);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-green-gray);
    border: 2px solid var(--dark-green-gray);
}

.btn-secondary:hover {
    background-color: var(--dark-green-gray);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

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

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

/* Lookbook Section */
.lookbook {
    padding: 6rem 0;
    background-color: var(--cream);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: all 0.3s;
}

/* Instagram Section */
.instagram {
    padding: 6rem 0;
    background-color: var(--white);
}

.instagram-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.instagram-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 5px 15px var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.instagram-cta {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--cream);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: var(--gold);
    font-size: 1.4rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px var(--shadow);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 992px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--cream);
        box-shadow: 0 5px 10px var(--shadow);
        padding: 1rem 0;
        z-index: 10;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
        padding-right: 0;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .instagram-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}
</pre></body></html>