/* --- PALETA DE CULORI PREMIUM (ARIELLVIBE - ITALY AESTHETIC) --- */
:root {
    --primary-color: #d4af37; /* Detalii din text și logo în Auriu Luxury */
    --primary-hover: #b89020; 
    --secondary-color: #4a1525; /* Vișiniu-catifea (burgundy) pentru navbar și butoane principale */
    --background-color: #faf9f6; /* Alb-marmură, foarte curat și luminos */
    --dark-section-bg: #4a1525; /* Vișiniu profund pentru secțiunile de contrast */
    --text-color: #2b1b17; /* Maro-roșcat închis, arată mult mai scump decât negrul */
    --light-text: #fff;
    --border-radius: 4px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Georgia', 'Arial', sans-serif; 
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* --- NAVIGARE (HEADER) --- */
#navbar {
    background-color: var(--secondary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: var(--primary-color);
    font-size: 1.6em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* --- SECȚIUNI GENERALE --- */
.content-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.dark-bg {
    background-color: var(--dark-section-bg);
    color: var(--light-text);
}

.dark-bg h2 {
    color: var(--primary-color);
}

/* --- HOME SECTION (HERO) --- */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('images/B&W.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.hero-btn-container {
    margin-top: 10px;
}

/* --- PROFIL ȘI DESPRE --- */
.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: -60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: #fff;
    border: 6px solid var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    background-size: cover;
}

.about-me {
    max-width: 600px;
    text-align: left;
    margin-top: 80px;
}

.about-me h2 {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.about-me p {
    color: #5c4d3c;
    font-size: 1.1em;
}

/* --- BUTOANE STILIZATE (CTAs) --- */
.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 1px;
    font-size: 0.9em;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.5);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

/* --- STILIZARE VITRINĂ SHOP --- */
.merch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.merch-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2edd5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.merch-img-placeholder {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

.merch-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.merch-info h3 {
    font-family: 'Georgia', serif;
    color: var(--secondary-color);
    font-size: 1.3em;
}

.merch-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    min-height: 40px;
}

.price {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: auto; 
}

.shop-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.85em;
    margin-top: 5px;
}

/* --- STRUCTURĂ EXCLUSIVĂ BUTOANE (SOCIAL & LIVES) --- */
/* --- REDESIGN PREMIUM BUTOANE (SOCIALS & LIVES INTEGRATE) --- */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px; /* Scurtăm puțin lățimea pentru un aspect mai compact */
    margin: 30px auto 0 auto;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px; /* Padding mai înalt pentru eleganță */
    border-radius: var(--border-radius); /* Folosim colțurile discrete de 4px, nu 30px */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase; /* Uppercase obligatoriu pentru vibe-ul luxury */
    font-family: 'Georgia', serif; /* Fontul serif elegant */
    font-size: 0.95rem;
    letter-spacing: 2px; /* Spațiere între litere pentru aerisire */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Umbră discretă */
    width: 100%;
}

.link-btn:hover {
    transform: translateY(-3px);
}

/* === STIL PENTRU CAMSITES (Burgundy Solid -> Auriu pe Hover) === */
.cam-btn, .cam-btn-secondary {
    background-color: var(--secondary-color); /* Catifea Burgundy */
    color: var(--light-text);
    border: 2px solid var(--secondary-color);
}

.cam-btn:hover, .cam-btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(74, 21, 37, 0.2);
}

/* Adăugăm un efect special de strălucire aurie discretă doar pentru butoanele Live */
.cam-btn {
    position: relative;
    overflow: hidden;
}

.cam-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(212, 163, 115, 0.3);
    transform: rotate(30deg);
    transition: all 0.5s;
    opacity: 0;
}

.cam-btn:hover::after {
    left: 120%;
    opacity: 1;
}

/* === STIL PENTRU SOCIALS (Transparent cu Border Auriu -> Solid Auriu pe Hover) === */
.twitter-btn, .onlyfans-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color); /* Border Auriu */
    color: var(--primary-color); /* Text Auriu */
}

.twitter-btn:hover, .onlyfans-btn:hover {
    background-color: var(--primary-color); /* Solid Auriu pe hover */
    color: var(--text-color); /* Text închis pe fundal deschis */
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

/* Iconițele rămân colorate discret la hover pe socials */
.twitter-btn:hover .icon { color: #1da1f2; }
.onlyfans-btn:hover .icon { color: #008fff; }

/* --- FAN FEED --- */
.feed-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.feed-post {
    display: flex;
    gap: 25px;
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f2edd5;
}

.feed-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.post-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.post-content h3 {
    color: var(--secondary-color);
    font-family: 'Georgia', serif;
    margin-bottom: 8px;
    font-size: 1.4em;
}

.post-content small {
    display: block;
    margin-top: 15px;
    color: #a09280;
    font-style: italic;
}

.post-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.8em;
    background-color: var(--secondary-color);
    color: var(--light-text);
    margin-top: 10px;
    margin-bottom: 5px;
}

.post-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* --- FOOTER --- */
footer {
    background-color: var(--secondary-color);
    color: #8c7e6e;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    letter-spacing: 1px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    nav ul {
        display: none; 
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .profile-container {
        flex-direction: column;
        margin-top: -100px;
    }

    .about-me {
        text-align: center;
    }
    
    .about-me h2 {
        margin-top: 20px;
    }
    
    .cta-buttons {
        justify-content: center;
    }

    .feed-post {
        flex-direction: column;
        text-align: center;
    }
    
    .post-image {
        width: 100%;
        height: auto;
        max-height: 200px;
    }
}


/* --- POP-UP IMAGINI (LIGHTBOX MĂRIT) --- */
.post-image {
    cursor: pointer; /* Schimbă cursorul în lăpușă ca să știe că se poate da click */
    transition: transform 0.2s ease;
}

.post-image:hover {
    transform: scale(1.03); /* Un mic efect de zoom când pune mouse-ul pe ea */
}

/* Fundalul negru transparent de pe tot ecranul */
.image-modal {
    display: none; /* Ascuns implicit */
    position: fixed;
    z-index: 9999; /* Se asigură că e deasupra la absolut orice, inclusiv navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92); /* Negru intens la fundal */
    justify-content: center;
    align-items: center;
    cursor: zoom-out; /* Cursorul arată că un click va închide poza */
}

/* Imaginea mărită propriu-zisă */
.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid var(--primary-color); /* Ramă fină aurie */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.25s ease; /* Efect fin de apariție */
}

/* Butonul X de închidere (opțional, pentru că merge închisă dând click oriunde) */
.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Animație simplă de deschidere */
@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



/* --- SĂGEATĂ PREMIUM CU TEXT ȘI FADE --- */
.scroll-down-indicator {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: 80px; /* Puțin mai lat ca să încapă textul frumos */
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease; /* Efectul de dispariție fină */
}

/* Clasa asta va fi pusă automat la scroll */
.hidden-indicator {
    opacity: 0 !important;
    transform: translate(-50%, -10px); /* Se ridică ușor când dispare */
    pointer-events: none; /* Nu mai lasă fanii să dea click pe ea dacă e invizibilă */
}

.scroll-text {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 0.65rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.scroll-arrow {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow span {
    position: absolute;
    top: 0;
    left: 5px;
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: scroll-pulsate 2s infinite;
    opacity: 0;
}

.scroll-arrow span:nth-child(2) {
    top: 8px;
    animation-delay: -0.2s;
}

@keyframes scroll-pulsate {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; transform: rotate(45deg) translate(0, 0); }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

@media (min-width: 769px) {
    .scroll-down-indicator { display: none; }
}