html { scroll-behavior: smooth; }
:root {
    --primary-gold: #D4AF37;
    --accent-gold: #C5A028;
    --soft-cream: #FDFBF7;
    --dark-charcoal: #2D2D2D;
    --glass-white: rgba(255, 255, 255, 0.85);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--soft-cream);
    color: var(--dark-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-charcoal);
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

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

.btn-area-privada {
    background: var(--primary-gold);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    box-shadow: var(--shadow-premium);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F1E9 100%);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

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

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.4s;
}

.hero-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* Sections General */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-gold);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* Dashboard specific */
.dashboard-header {
    background: white;
    padding: 4rem 5%;
    margin-top: 80px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.media-grid {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.media-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    animation: fadeInUp 0.8s ease-out backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.media-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.media-thumb {
    height: 220px;
    background: linear-gradient(45deg, #f9f6f0, #fcfaf5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.media-thumb::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: -25%;
    left: -25%;
}

.media-info {
    padding: 2rem;
}

.media-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--dark-charcoal);
}

.btn-view {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view:hover {
    background: var(--dark-charcoal);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
\n
/* ========================================================================= */
/* Responsive Design / Mobile Friendly */
/* ========================================================================= */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-content {
        margin-bottom: 3rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        flex-direction: column;
        padding: 1rem 5%;
    }
    .logo {
        margin-bottom: 1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-btn {
        padding: 0.8rem 1.5rem;
    }

    /* Sections */
    section {
        padding: 60px 5%;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Dashboard grids */
    .media-grid, .grid {
        gap: 1.5rem;
        padding: 40px 5%;
    }

    /* Typography & Others */
    .dashboard-header {
        padding: 2rem 5%;
        margin-top: 120px;
        text-align: center;
    }
    
    /* Ensure no horizontal scroll on imgs */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .btn-area-privada {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    .card {
        padding: 1.5rem;
    }
}

/* ========================================================================= */
/* Hamburger Menu Overrides */
/* ========================================================================= */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2D2D2D;
    user-select: none;
}

@media (max-width: 900px) {
    nav, .dashboard-header {
        flex-direction: row !important;
    }
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 20px !important;
    }
    .hamburger {
        display: block !important;
    }
    .nav-links {
        display: none !important;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #FDFBF7;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 1.5rem !important;
    }
    .nav-links.active {
        display: flex !important;
    }
}
