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

body {
    font-family: 'Inter', sans-serif;
    background-color: #111;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Add a dark gradient overlay to make text pop */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
    pointer-events: none;
}

.header, .hero, .footer {
    position: relative;
    z-index: 1;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: transparent;
    -webkit-text-stroke: 1.5px #d8a98d;
    text-transform: uppercase;
}

.logo-subtext {
    font-size: 0.5rem;
    letter-spacing: 5px;
    color: #d8a98d;
    text-transform: uppercase;
}

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

.nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-instagram {
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-instagram svg {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
}

.icon-instagram:hover svg {
    opacity: 0.7;
}

.separator {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.3);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #fff;
    cursor: pointer;
}

.btn {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary {
    background-color: #a56a52;
    color: #fff;
    padding: 10px 24px;
}

.btn-primary:hover {
    background-color: #8c5843;
}

.btn-secondary {
    background-color: #a56a52;
    color: #fff;
    padding: 14px 32px;
}

.btn-secondary:hover {
    background-color: #8c5843;
}

/* MAIN HERO */
.hero {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #e0e0e0;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem;
    }
    .footer {
        padding: 1.5rem 2rem;
    }
    .nav {
        display: none; 
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .header-actions {
        gap: 1rem;
    }
    .btn-primary {
        padding: 8px 16px;
    }
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
