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

body, html {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
    overflow: hidden; /* Fixează ecranul */
}

.main-screen {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrare orizontală */
}

/* --- WATERMARK --- */
.watermark-bg {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 600px;
    padding: 0 20px;
    font-weight: 800;
    //font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-size:30px;
    color: #000;
    opacity: 0.12; /* Mai pronunțat cum ai cerut */
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1000;
}

/* --- HEADER SUS --- */
.header-section {
    position: relative;
    z-index: 10;
    text-align: center !important;
    width: 100%;
    padding-top: 50px;
}

.tagline {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #007aff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    margin-bottom: 5px;
    text-align: center;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #86868b;
    font-style: italic;
    text-align: center;
}

/* --- BUTONUL --- */
.mid-button-area {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.gallery-btn {
    display: flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    border: 1px solid #e5e5e7;
    background: white;
    transition: all 0.3s ease;
}

.gallery-btn.active { 
    border-color: rgba(0, 122, 255, 0.4); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.gallery-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.15);
}

.gallery-btn.inactive { background-color: #f5f5f7; cursor: not-allowed; }

.btn-text { display: flex; flex-direction: column; text-align: left; }
.main-txt { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; }
.sub-txt { font-size: 0.6rem; opacity: 0.8; margin-top: 1px; }

.gallery-btn.active .main-txt, .gallery-btn.active .sub-txt { color: #007aff; }
.gallery-btn.inactive .main-txt, .gallery-btn.inactive .sub-txt { color: #a1a1a6; }

.status-dot { width: 7px; height: 7px; border-radius: 50%; margin-right: 12px; }
.status-dot.blue { background-color: #007aff; box-shadow: 0 0 8px #007aff; }
.status-dot.gray { background-color: #d2d2d7; }

/* --- POZA JOS --- */
.bottom-anchor {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    //line-height: 0;
    z-index: 5;
}

.image-container { position: relative; width: 100%; }
.hero-img { width: 100%; height: auto; display: block; }

.hotspot {
    position: absolute;
    top: 41.5%; left: 72.5%; width: 21%; height: 11%;
    cursor: pointer; z-index: 20; background: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 600px) {
    .bottom-anchor { max-width: 100vw; }
    .header-section { padding-top: 30px; }
    .watermark-bg { font-size: 30px; opacity: 0.15; top: 47%; width: 95%;
 }
}