/* --- RESET & FONT --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
html, body {
    width: 100vw; 
    margin: 0; 
    padding: 0;
    overflow-x: hidden; 
} 

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000; /* Negru Pur */
    color: #ffffff;
    line-height: 1.6;
}

/* FONTURI PENTRU LUX */
h1, h2, /* Am eliminat .site-logo-text de aici */ {
    font-family: 'Playfair Display', serif;
}

/* CULOAREA DE ACCENT AURIU */
:root {
    --color-gold: #e7c880; /* Auriu/Șampanie */
    --color-primary: var(--color-gold);
    --color-secondary-dark: #1f1f1f; /* Gri închis pentru fundal carduri */
}

/* --- SECȚIUNI GENERALE --- */
section:not(#hero-video-section) {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}
h2 { 
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
h2 span { color: var(--color-primary); }
.sub-title {
    font-size: 1.2rem;
    color: #aaaaaa;
    font-weight: 400;
}

/* --- HEADER FIX ȘI TRANSPARENT --- */
#main-header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background: rgba(0, 0, 0, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0); 
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px; 
    max-width: 1300px;
    margin: 0 auto;
}
/* AICI AM ELIMINAT STILURILE PENTRU h1.site-logo-text */
/* .site-logo-text { 
    font-size: 2.2rem; 
    font-weight: 900;
    color: var(--color-gold); 
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(231, 200, 128, 0.5); 
} */

/* STILURI PENTRU IMAGINEA LOGO-ului */
.site-logo-img {
    max-height: 80px; /* Ajustează dimensiunea logo-ului după preferințe */
    width: 80px;
    display: block; /* Elimină spațiul suplimentar de sub imagine */
}

/* Navigare Desktop */
#main-nav { display: flex; align-items: center; gap: 20px; }
#main-nav a { color: #fff; text-decoration: none; padding: 5px 0; font-weight: 600; }
#main-nav a:hover { color: var(--color-gold); border-bottom: 2px solid var(--color-gold); }
.btn-call:hover { color: var(--color-gold) !important; }

/* --- HERO VIDEO BACKGROUND --- */
#hero-video-section {
    width: 100vw; height: 100vh; position: relative; overflow: hidden; 
    background: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; align-items: center; text-align: center;
}
#hero-background-video {
    position: absolute; z-index: -1; top: 50%; left: 50%;
    transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; object-fit: cover; 
}
.hero-content {
    position: relative; z-index: 10; color: white; max-width: 1000px; padding: 0 20px;
}
#hero-video-section h1 { font-size: 5rem; font-weight: 900; text-shadow: 0 0 15px var(--color-primary); }
.tagline { font-size: 1.5rem; margin-bottom: 3rem; color: #ffffff; }

/* --- BUTOANE GENERALE --- */
.btn {
    padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; display: inline-block; margin: 5px;
}
.btn-xl { padding: 1.2rem 3rem; font-size: 1.1rem; }
.btn:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 20px rgba(231, 200, 128, 0.4);
}
.btn-primary { background: var(--color-gold); color: #000; border: 2px solid var(--color-gold); }
.btn-secondary { background: var(--color-secondary-dark); color: #fff; border: 2px solid #555; }
.btn-outline-white { border: 2px solid var(--color-gold); color: var(--color-gold); background: transparent; }

/* MODIFICARI CONTACT: CENTRARE BUTOANE SI STIL OUTLINE */
.contact-details { 
    margin-top: 2rem; 
    display: flex; 
    justify-content: center; /* Centrare orizontală */
    gap: 20px; 
    flex-wrap: wrap; 
}
.contact-details .btn-secondary,
.contact-details .btn-whatsapp {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}
.contact-header { 
    margin-top: 4rem; /* Spațiu între galerie și secțiunea de contact */
}


/* --- GRID ȘI CARDURI --- */
.grid-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 2rem; }
.card { 
    background: var(--color-secondary-dark); border-radius: 8px; padding: 2rem; 
    width: 380px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8); transition: transform 0.3s ease;
}
.card-attraction:hover { 
    transform: translateY(-5px); border: 2px solid var(--color-gold);
    box-shadow: 0 10px 20px rgba(231, 200, 128, 0.2); 
}
/* UNIFORMIZARE IMAGINI SERVICII */
.card img { 
    width: 100%; 
    height: 250px; /* Înălțime FIXĂ pentru uniformitate */
    object-fit: cover; /* Asigură că imaginea umple spațiul fără a fi deformată */
    border-radius: 6px; 
    margin-bottom: 1rem; 
    filter: saturate(1.1) brightness(0.9);
}

.card h3 { color: var(--color-gold); font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.card-package.featured { 
    border-color: var(--color-gold); background: #111111; transform: scale(1.05); 
    box-shadow: 0 15px 30px rgba(231, 200, 128, 0.2);
}
.card-package .price { color: var(--color-gold); font-size: 3.5rem; font-weight: 900; }
.card-package .badge { background: var(--color-gold); color: #000; }


/* --- GALERIE FOTO --- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #111; 
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}
.photo-gallery img {
    width: 100%;
    height: 300px; /* Înălțime fixă pentru consistența galeriei */
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.photo-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(231, 200, 128, 0.3);
}


/* --- FOOTER --- */
footer { text-align: center; padding: 2rem; color: #aaa; border-top: 1px solid #333; background: #111; }


/* --- BUTOANE PLUTITOARE (Floating Buttons) --- */
.floating-contact {
    position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; 
    gap: 15px; z-index: 1050; 
}
.floating-btn {
    width: 60px; height: 60px; border-radius: 50%; display: flex;
    justify-content: center; align-items: center; font-size: 28px; color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); transition: transform 0.3s ease;
    text-decoration: none; /* ELIMINĂ SUBLINIEREA */
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn.btn-call-float { background-color: var(--color-gold); color: #000; }
.floating-btn.btn-whatsapp-float { background-color: #25D366; }


/* --- RESPONSIVE (Meniu fără JS) --- */
.menu-checkbox { display: none; }
.menu-toggle { display: none; cursor: pointer; z-index: 1010; }

@media (max-width: 768px) {
    .menu-toggle { display: block; color: var(--color-gold); font-size: 2rem; }
    
    #main-nav {
        position: absolute; top: 80px; right: 0; width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column; display: none; 
        padding: 20px 0; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    }
    
    .menu-checkbox:checked ~ #main-nav { display: flex; }
    
    #main-nav a { margin: 10px 0; text-align: center; width: 100%; padding: 15px 0; border-radius: 0; border-bottom: 1px solid #333; color: #fff; }
    #main-nav a:hover { background-color: var(--color-secondary-dark); color: var(--color-gold); }
    #main-nav a:last-child { border-bottom: none; }
    
    #hero-video-section h1 { font-size: 3rem; }
    .tagline { font-size: 1.2rem; }
    .card { width: 90%; }
    .photo-gallery { grid-template-columns: 1fr; } /* O singură coloană pe mobil */

    .floating-btn { width: 50px; height: 50px; font-size: 24px; }
    .floating-contact { bottom: 15px; right: 15px; gap: 10px; }
}