/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --text: #333333;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    color: var(--text);
    line-height: 1.7;
    background-color: #fefefe;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }

/* Navigation Bar (New for Multi-page) */
nav {
    background: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

/* Common Layout */
section {
    padding: 100px 20px;
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--dark);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn:hover:before { left: 0; }

/* Hero Section */
.hero {
    height: 90vh; 
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('../images/raquel-bg.png');
    background-size: cover;
    
    /* CHANGED FROM 'center' TO '50% 20%' to focus on the face */
    background-position: 50% 20%; 
    
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero .subheading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero .oneline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.btn-group {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

/* About Page Specifics */
.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text { flex: 1; }
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    display: block;
    border: 2px solid var(--gold);
    padding: 15px;
}

.detail-list {
    list-style: none;
    margin-top: 30px;
}

.detail-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.detail-list li:before {
    content: '→';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* What I Do Columns */
.columns {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.column {
    flex: 1;
    padding: 50px 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid var(--gold);
}

.column i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.partner-item {
    background: var(--light);
    border-radius: 16px;
    transition: var(--transition);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* Collaboration Deliverables */
.deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.deliverable-item {
    background: var(--light);
    padding: 40px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.deliverable-item:hover {
    border-bottom: 3px solid var(--gold);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.deliverable-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Contact */
.email {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark);
    margin: 40px 0;
    font-family: 'Cormorant Garamond', serif;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    
    /* CHANGED FROM '60px 20px' TO '20px 20px' */
    padding: 20px 20px; 
    
    text-align: center;
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links { display: none; } /* Simplified for prompt brevity, ideally use a hamburger menu */
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .about-content { flex-direction: column-reverse; }
    .columns, .deliverables { grid-template-columns: 1fr; display: grid; }
    .hero h1 { font-size: 3.5rem; }
}
@media (max-width: 480px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
/* --- MOBILE MENU FIX --- */

/* 1. Default: Hide the hamburger button on Desktop */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
}

/* 2. Styles for Mobile Screens */
@media (max-width: 992px) {
    /* Show the hamburger icon */
    .menu-toggle {
        display: block;
    }

    /* Fix the navigation bar container */
    nav .container {
        position: relative;
    }

    /* Style the links as a dropdown menu */
    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Push it below the black bar */
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* This class is added by JavaScript to show the menu */
    .nav-links.active {
        display: flex;
    }
}


