
:root {
    /* Colors */
    --bg-dark: #050505;
    --text-main: #ececec;
    --text-muted: #9ca3af;
    
    /* Brand Accents */
    --accent-pink: #F6339A;
    --accent-purple: #AD46FF;
    --accent-blue: #4F39F6;
    --accent-green: #00d26a;
    --gold: #D4AF37;
    --brand-gradient: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-blue));
    
    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    --font-hand: 'Great Vibes', cursive;
}

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

body {
    background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body);
    line-height: 1.7; overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* --- TYPOGRAPHY --- */
.handwritten-text {
    font-family: var(--font-hand);
    font-weight: 400;
    letter-spacing: 2px;
    transform: scale(1.3);
    display: inline-block;
    margin: 0 5px;
}

/* --- AMBIENT BACKGROUND --- */
.ambient-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; overflow: hidden; background: #020202; }
.light-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; animation: floatOrb 20s infinite ease-in-out alternate; }
.orb-1 { width: 600px; height: 600px; background: var(--accent-purple); top: -10%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: var(--accent-blue); bottom: -10%; right: -10%; animation-delay: -5s; }
.noise-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; }
@keyframes floatOrb { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, 80px); } }

/* --- HEADER & NAV --- */
header { 
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; 
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    background: transparent;
}
header.scrolled { 
    background: rgba(5, 5, 5, 0.85); 
    backdrop-filter: blur(20px); 
    padding: 12px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.brand-wrapper { display: flex; align-items: center; gap: 15px; }

.logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: 1px; }
.dot { color: var(--accent-pink); }

.work-hours-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.work-hours-badge i { color: var(--accent-purple); font-size: 0.9rem; }

.desktop-nav ul { display: flex; align-items: center; gap: 40px; list-style: none; }
.desktop-nav .nav-link { 
    text-decoration: none; 
    color: rgba(255,255,255,0.8); 
    font-weight: 500; 
    transition: 0.3s; 
    font-size: 0.95rem; 
    position: relative;
    padding-bottom: 5px;
}
.desktop-nav .nav-link:hover { color: #fff; }
.desktop-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent-purple); transition: width 0.3s ease;
}
.desktop-nav .nav-link:hover::after { width: 100%; }

.btn-reserve-menu {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; padding: 10px 25px; border-radius: 50px; cursor: pointer; text-decoration: none;
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(5px);
}
.btn-reserve-menu:hover { 
    background: var(--accent-purple); border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(173, 70, 255, 0.4); transform: translateY(-2px);
}

.mobile-actions { display: none; align-items: center; gap: 20px; }
.mobile-phone-icon { color: #fff; font-size: 1.2rem; text-decoration: none; }
.menu-toggle { cursor: pointer; flex-direction: column; gap: 6px; display: flex; }
.bar { width: 25px; height: 2px; background: #fff; transition: 0.3s; }

/* --- HERO SECTION --- */
.hero-section { height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 20px; text-align: center; }
.overline { display: block; font-size: 0.9rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-purple); margin-bottom: 20px; font-weight: 600; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.headline { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 1.1; margin-bottom: 30px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.gradient-text { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 400; }
.sub-headline { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 50px; text-shadow: 0 1px 5px rgba(0,0,0,0.8); }
.btn-outline { padding: 14px 40px; border: 1px solid rgba(255,255,255,0.5); color: #fff; text-decoration: none; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; transition: 0.3s; display: inline-block; backdrop-filter: blur(5px); background: transparent; cursor: pointer; }
.btn-outline:hover { border-color: var(--accent-pink); background: rgba(246, 51, 154, 0.2); }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; z-index: 2; }
.line { width: 1px; height: 60px; background: linear-gradient(to bottom, #fff, transparent); }

/* --- SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-spacing { padding: 100px 0; }
.section-title { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 15px; }
.section-subtitle { color: var(--accent-purple); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 50px; }
.text-center { text-align: center; }

/* --- CARDS --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card {
    position: relative; height: 500px; border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); transition: transform 0.4s ease;
    display: flex; align-items: flex-end; background: #000;
}
.service-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0.5; filter: grayscale(80%);
    transition: all 0.5s ease; transform: scale(1);
}
.service-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.5) 60%, transparent 100%);
    z-index: 1;
}
.card-content { position: relative; z-index: 2; padding: 25px; width: 100%; }
.service-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 5px; color: #fff; }
.service-card p { font-size: 0.9rem; color: #ccc; margin-bottom: 15px; opacity: 0.8; line-height: 1.4; }

.card-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-top: 15px; }
.btn-book { 
    background: var(--brand-gradient); color: #fff; padding: 8px 20px; text-decoration: none;
    font-size: 0.8rem; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; 
    border-radius: 30px; transition: 0.3s; border: none;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(173, 70, 255, 0.4); }

.btn-details {
    background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 7px 15px;
    font-size: 0.8rem; cursor: pointer; border-radius: 30px; transition: 0.3s;
}
.btn-details:hover { border-color: var(--accent-pink); color: var(--accent-pink); }

.price-tag { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 15px; margin-top: 10px; }
.price-tag span { font-size: 0.85rem; color: var(--accent-purple); text-transform: uppercase; font-weight: 600; }
.price-val { font-weight: 700; color: #fff; font-size: 1rem; }
.euro-sub { color: var(--text-muted); font-size: 0.9em; font-weight: 400; }

.service-card:hover { transform: translateY(-5px); border-color: var(--accent-pink); }
.service-card:hover .service-bg { opacity: 0.8; filter: grayscale(0%); transform: scale(1.1); }

.promo-badge {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500); color: #000;
    padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 5;
}

/* --- REVIEWS --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.review-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px; border-radius: 16px; position: relative; transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.review-card::before {
    content: '\201C'; position: absolute; top: -20px; left: 30px;
    font-family: var(--font-display); font-size: 6rem; color: var(--accent-purple); opacity: 0.2; line-height: 1;
}
.review-card:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--accent-purple); transform: translateY(-10px); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.stars { color: #FFD700; font-size: 0.9rem; }
.review-text { font-style: italic; color: #ccc; margin-bottom: 30px; font-size: 1.05rem; line-height: 1.7; position: relative; z-index: 2; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #333, #555); display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: bold; font-size: 0.9rem;
}
.reviewer .r-name { display: block; font-weight: 700; color: #fff; font-family: var(--font-display); }

/* --- ABOUT US --- */
.about-premium { position: relative; padding: 120px 0; overflow: hidden; }
.about-centered { display: flex; justify-content: center; text-align: center; }
.about-text { max-width: 800px; margin: 0 auto; }
.about-text h2 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.about-text .highlight { color: var(--gold); font-style: italic; }
.about-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }
.signature { font-family: var(--font-hand); font-size: 2.5rem; color: var(--accent-purple); margin-top: 30px; display: block; text-align: center; }

/* --- FOOTER --- */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0 30px; background: #020202; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-info p { color: var(--text-muted); margin-bottom: 10px; }
.footer-info i { width: 25px; color: var(--accent-blue); }
.footer-social a { color: #fff; margin-right: 15px; font-size: 1.2rem; }
.copyright { text-align: center; font-size: 0.8rem; color: #555; width: 100%; border-top: 1px solid #111; padding-top: 20px; margin-top: 10px; }
.contact-link { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.contact-link:hover { color: #fff; }

/* --- MODALS --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-container {
    background: #0f0f0f; width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto;
    padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6); position: relative;
    transform: translateY(50px) scale(0.95); transition: all 0.4s ease;
}
.modal-overlay.open .modal-container { transform: translateY(0) scale(1); }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #666; font-size: 2rem; cursor: pointer; }
.close-modal:hover { color: var(--accent-pink); }

/* Contact Choice Modal */
.contact-options-grid {
    display: flex; flex-direction: column; gap: 20px; margin-top: 20px;
}
.contact-card-btn {
    display: flex; align-items: center; gap: 20px;
    padding: 20px; text-decoration: none;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; transition: all 0.3s ease;
}
.contact-card-btn:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }

.phone-btn .icon-circle { background: rgba(0, 210, 106, 0.2); color: #00d26a; }
.phone-btn:hover { border-color: #00d26a; }
.viber-btn .icon-circle { background: rgba(115, 96, 242, 0.2); color: #7360f2; }
.viber-btn:hover { border-color: #7360f2; }

.icon-circle {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.btn-text { display: flex; flex-direction: column; }
.btn-text strong { color: #fff; font-size: 1.1rem; }
.btn-text span { color: #aaa; font-size: 0.9rem; }

/* Details Modal Specifics */
.details-header { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.details-img { width: 120px; height: 120px; border-radius: 10px; object-fit: cover; border: 1px solid rgba(255,255,255,0.2); }
.details-info h3 { font-family: var(--font-display); font-size: 1.8rem; line-height: 1.2; margin-bottom: 5px; }
.details-info .price { color: var(--accent-purple); font-weight: bold; font-size: 1.2rem; }
.details-body p { color: #ccc; margin-bottom: 20px; line-height: 1.6; }
.benefits-list { list-style: none; margin-bottom: 30px; }
.benefits-list li { margin-bottom: 10px; color: #aaa; display: flex; align-items: center; gap: 10px; }
.benefits-list li i { color: var(--accent-green); }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.85rem; color: #aaa; margin-bottom: 8px; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 5px; color: #fff; outline: none; }
optgroup { color: #aaa; background: #1a1a1a; font-style: normal; font-weight: bold; }
.btn-submit { width: 100%; padding: 15px; background: var(--brand-gradient); border: none; border-radius: 5px; color: #fff; font-weight: 600; cursor: pointer; transition: transform 0.2s; }

/* Admin Styles (Kept for manual backend) */
.login-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 3000; display: flex; justify-content: center; align-items: center; }
.login-box { text-align: center; }
.admin-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #333; background: #111; }
.admin-logo { font-weight: bold; color: white; text-decoration: none; }
.btn-logout { background: #333; color: white; border: none; padding: 5px 15px; cursor: pointer; border-radius: 5px; }
.admin-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-card { background: #111; padding: 20px; border-radius: 10px; text-align: center; border: 1px solid #222; }
.stat-card .val { font-size: 2.5rem; font-weight: bold; color: var(--accent-blue); margin-top: 10px; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; color: #ddd; }
.admin-table th, .admin-table td { text-align: left; padding: 15px; border-bottom: 1px solid #222; }
.admin-table th { color: var(--accent-purple); }
.btn-approve, .btn-reject, .btn-delete, .btn-edit { border: none; width: 30px; height: 30px; border-radius: 5px; cursor: pointer; margin-right: 5px; color: white; }
.btn-approve { background: var(--accent-green); }
.btn-reject { background: #f00; }
.btn-delete { background: #333; }
.btn-edit { background: var(--accent-blue); }

/* Mobile Menu */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #000; z-index: 999; display: flex; align-items: center; justify-content: center; transform: translateY(-100%); transition: 0.5s ease-in-out; }
.mobile-overlay.active { transform: translateY(0); }
.mobile-overlay nav { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.m-link { font-family: var(--font-display); font-size: 2rem; color: #fff; text-decoration: none; }
.btn-reserve-mobile { padding: 15px 40px; background: var(--brand-gradient); color: #fff; border: none; border-radius: 30px; font-size: 1.2rem; font-weight: bold; cursor: pointer; text-decoration: none; }
.m-work-hours { font-size: 1.2rem; color: var(--accent-purple); margin-bottom: 20px; }

/* Utility */
.hidden-el { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.show-el { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .work-hours-badge { display: none; } /* Hide on mobile header, show in menu instead */
    .mobile-actions { display: flex; }
    .headline { font-size: 3rem; }
    .dashboard-stats { grid-template-columns: 1fr; }
    .details-header { flex-direction: column; align-items: flex-start; }
}
