:root {
    --bg-dark: #050505;
    --gold: #d4af37;
    --gold-dim: #8a7020;
    --text-white: #ffffff;
    --text-gray: #aaaaaa;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(212, 175, 55, 0.3);
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 100%);
    color: var(--text-white);
    height: 100vh;
    overflow: hidden; /* Fara Scroll */
    display: flex;
    flex-direction: column;
}

/* Particule Fundal (Note Muzicale) */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.note {
    position: absolute;
    color: var(--gold);
    opacity: 0;
    animation: floatNotes 8s linear infinite;
    user-select: none;
}

@keyframes floatNotes {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    20% { opacity: 0.3; }
    80% { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* Navbar Modern */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 100;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.logo span { color: var(--gold); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.nav-item:hover, .nav-item.active {
    color: var(--gold);
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: 0.3s;
}

.nav-item.active::after { width: 100%; }

/* Content Container */
.content-container {
    flex: 1;
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sectiuni (SPA logic) */
.page-section {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: scale(0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-section.active-section {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 10;
}

/* Stiluri Generale Elemente */
.gold-text { color: var(--gold); }
.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- ACASA & BULE RECENZII --- */
.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

#floating-reviews-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Click-ul trece prin ele */
    z-index: 1;
}

.review-bubble {
    position: absolute;
    bottom: -150px; /* Pornesc de sub ecran */
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    color: white;
    max-width: 280px;
    opacity: 0;
    animation: floatUpFade linear forwards;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--gold);
}

.review-stars {
    font-size: 0.8rem;
    color: #f0d060;
}

.review-text {
    font-size: 0.85rem;
    color: #eee;
    font-style: italic;
    line-height: 1.4;
}

@keyframes floatUpFade {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    10% { opacity: 1; transform: translateY(-10vh) scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

.btn-gold {
    padding: 12px 30px;
    background: var(--gold);
    border: none;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 1rem;
}
.btn-gold:hover { background: #f0d060; box-shadow: 0 0 15px var(--gold-dim); }

.hidden { display: none; }

/* PRETURI */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover { transform: translateY(-10px); border-color: var(--gold); }

.price-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(30, 30, 30, 0.7);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: black;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
    display: block;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i { color: var(--gold); width: 20px; }

.btn-outline {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-outline:hover { background: var(--gold); color: black; }

.discount-label {
    font-size: 1rem;
    background: #c00;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
}

/* DESPRE */
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
}

.about-image-wrapper { flex: 1; }
.studio-img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.about-text { flex: 1; font-size: 1.1rem; line-height: 1.6; text-align: left; }

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.stat-item { text-align: center; }
.stat-item .number { display: block; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-item .label { font-size: 0.8rem; text-transform: uppercase; color: #888; }

/* CONTACT */
.contact-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.btn-contact {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-contact.whatsapp { background: #25D366; color: white; transition: 0.3s; }
.btn-contact.whatsapp:hover { box-shadow: 0 0 15px #25D366; transform: scale(1.05); }
.btn-contact.disabled { background: #333; color: #666; cursor: not-allowed; }

/* Responsive Mobile */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; padding: 15px; }
    .content-container { padding: 10px; align-items: flex-start; overflow-y: auto; } 
    .page-section { position: relative; height: auto; display: block; padding-top: 20px; }
    .about-container { flex-direction: column; }
    .hero-content h1 { font-size: 2rem; margin-top: 50px; }
    #floating-reviews-container { z-index: 0; }
}