/* ==========================================================================
   1. CONFIGURAÇÕES GERAIS E RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: #000; 
    color: #000;
}

/* ==========================================================================
   2. BARRA DE NAVEGAÇÃO FLUTUANTE (Transparente por cima da foto)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 65px;
    position: absolute;  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent; 
}

.logo-img {
    height: 55px; 
    display: block;
    width: auto;
}

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

/* Links do Menu (Estado normal) */
.nav-item {
    text-decoration: none;
    color: #000; 
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.2s ease-in-out; 
}

/* ON MOUSE OVER para as palavras (Fica Dourado) */
.nav-item:hover {
    color: #dfcba5; 
}

/* Caixa "FIND YOUR PHOTO" (Estado normal) */
.btn-find {
    text-decoration: none;
    color: #dfcba5; 
    background-color: #000;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    border: 3px solid #dfcba5; 
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* ON MOUSE OVER para o Botão (Fundo Branco, Letras Pretas, Sem Borda) */
.btn-find:hover {
    background-color: #fff;       
    color: #000;                  
    border-color: transparent;    
}

/* ==========================================================================
   3. SECÇÃO DA FOTO (Ecrã Total / Fullscreen)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('vintage.png'); 
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
    transform: scaleX(-1); 
    z-index: 1;
}

/* ==========================================================================
   4. TEXTOS (Caixas compactas)
   ========================================================================== */
.hero-content {
    position: relative;
    z-index: 2; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    gap: 25px; 
    padding-left: 5%; 
    padding-top: 80px; 
}

.bg-black {
    background-color: #000;
    color: #fff;
    padding: 4px 15px; 
    display: inline-block;
}

.hero-title, 
.hero-subtitle {
    font-size: 3.4rem; 
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-title {
    line-height: 1.25; 
}

.text-gold {
    color: #dfcba5; 
}

/* ==========================================================================
   5. RESPONSIVIDADE (Ajuste para telemóveis)
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        position: relative; 
        background-color: #eaeaea; 
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-img {
        height: 35px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section {
        height: calc(100vh - 160px); 
    }

    .hero-title, 
    .hero-subtitle {
        font-size: 2.2rem; 
    }
}