:root {
    --bg-navy: #011627;
    --navy-light: #111B3D;
    --cream: #FDF5E6;
    --copper: #B87333;
    --gold: #D4AF37;
    --text-primary: var(--cream);
    --text-secondary: rgba(253, 245, 230, 0.7);
}

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

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-navy);
    color: var(--text-primary);
    overflow: hidden;
}

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

.main-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: url('assets/hero_agave.png') no-repeat center center/cover;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 22, 39, 0.65), rgba(1, 22, 39, 0.9));
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.logo {
    height: 200px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(253, 245, 230, 0.1);
}

.brand-name {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    color: var(--copper);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
}

.minimal-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-bottom: 3rem;
}

.minimal-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.minimal-footer a {
    color: var(--copper);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.minimal-footer a:hover {
    color: white;
    border-bottom: 1px solid white;
}

@media (max-width: 768px) {
    .brand-name { font-size: 2.5rem; }
    .tagline { font-size: 1.2rem; }
    .description { font-size: 1rem; }
    .logo { height: 160px; }
    .btn-instagram { padding: 1rem 2rem; font-size: 1rem; }
}
