/* --- ROZI CUTZ TÉMA (Reszponzív Javított - Final V2) --- */
:root {
    --silver-main: #C5C4C2; 
    --bg-dark: #111111; 
    
    /* Glassmorphism */
    --glass-bg: rgba(30, 30, 30, 0.6); /* Kicsit sötétebb üveg a jobb kontrasztért */
    --glass-border: rgba(197, 196, 194, 0.3); 
    --hover-bg: rgba(197, 196, 194, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--silver-main); 
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2a2a2a, #000000);
    z-index: -1;
}

/* --- NAVIGÁCIÓ --- */
.glass-nav {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 15px 40px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}
.accent-dot { color: var(--silver-main); }
.nav-links { list-style: none; }

.nav-btn {
    border: 1px solid var(--silver-main);
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(197, 196, 194, 0.1);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--silver-main);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: var(--silver-main);
    color: #000 !important;
    box-shadow: 0 0 15px var(--silver-main);
}

/* --- HERO --- */
.hero {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 40px 20px;
}

.hero-content { width: 100%; max-width: 800px; }

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bio-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 0 10px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--silver-main);
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.hero-bio {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: #d1d1d1;
    font-weight: 300;
}

.hero-bio strong {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(197, 196, 194, 0.5);
}

/* --- KÁRTYÁK --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    width: 100%;
}

.container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding-bottom: 60px; }

/* --- PROFIL --- */
.profile-card { text-align: center; }

.profile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.profile-image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid var(--glass-border);
    flex-shrink: 0;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: 0.5s;
}
.profile-card:hover .profile-img { filter: grayscale(0%); }

.profile-info h3 { font-size: 2.5rem; color: #fff; margin-bottom: 5px; }
.role { color: var(--silver-main); opacity: 0.7; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 10px; }
.divider { width: 50px; height: 2px; background: var(--silver-main); margin: 20px auto; opacity: 0.3; }

.price-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08); 
    padding: 8px 20px;
    border-radius: 50px;
    margin: 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button, .submit-btn {
    padding: 15px 30px;
    background: var(--silver-main);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(197, 196, 194, 0.2);
}

/* --- FOGLALÁS & IDŐPONTOK --- */
.hidden { display: none !important; }

.header-with-back {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.back-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--silver-main);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}
.back-btn:hover { background: var(--silver-main); color: #000; }

h2 { color: #fff; margin: 0; font-size: clamp(1.5rem, 5vw, 2rem); }
.subtitle { text-align: center; margin-bottom: 20px; opacity: 0.6; font-size: 0.9rem; }

/* Inputok */
.glass-input {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 5px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.glass-input i { color: var(--silver-main); margin-right: 10px; min-width: 20px; text-align: center;}
select, input { width: 100%; background: transparent; border: none; color: #fff; padding: 12px 0; outline: none; font-size: 16px; }

/* --- IDŐPONTOK KÖZÉPRE IGAZÍTÁSA --- */
.slots-grid {
    display: flex; /* Flexbox a középre igazításhoz */
    flex-wrap: wrap; /* Sortörés, ha nem férnek el */
    justify-content: center; /* Vízszintes középre igazítás */
    gap: 15px; /* Távolság a gombok között */
    margin: 30px 0;
}

.time-slot {
    padding: 12px 20px; /* Szélesebb gombok */
    min-width: 100px; /* Fix minimum szélesség */
    text-align: center;
    border: 1px solid var(--glass-border);
    color: var(--silver-main);
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.time-slot:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.time-slot.selected {
    background: var(--silver-main);
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 20px var(--silver-main);
    border-color: var(--silver-main);
}

/* --- TÉRKÉP & INSTA --- */
.insta-container { margin: 30px 0; }
.insta-big-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    border: 2px solid var(--silver-main);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px;
}
.insta-big-btn:hover {
    background: var(--silver-main);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--silver-main);
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-top: 20px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: grayscale(100%) invert(90%); }

.glass-footer { text-align: center; padding: 20px; font-size: 0.8rem; opacity: 0.5; }

/* Animációk */
.fade-in-down { animation: fadeInDown 1s ease both; }
.fade-in-up { animation: fadeInUp 0.8s ease both; }
.fade-in { animation: fadeIn 1.5s ease both; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Media Queries */
@media (max-width: 768px) {
    .glass-nav { padding: 10px 20px; flex-direction: row; gap: 0;}
    .hero { margin-top: 60px; }
    .map-container { padding-bottom: 75%; }
}
@media (max-width: 480px) {
    .glass-card { padding: 20px 15px; }
    .nav-btn span { display: none; }
    .nav-btn::after { content: " Galéria"; display: inline; }
}

/* --- NAPTÁR DESIGN (Profi, Sötét, Üveg) --- */

.calendar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.flatpickr-calendar {
    background: rgba(20, 20, 20, 0.95) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important;
    border-radius: 20px !important;
    font-family: 'Poppins', sans-serif !important;
    padding: 15px !important;
    width: 320px !important; /* Szélesebb, kényelmesebb naptár */
}

/* Hónap váltó fejléc */
.flatpickr-months {
    background: transparent !important;
    margin-bottom: 10px !important;
}

.flatpickr-month {
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month span.cur-month {
    font-weight: 700 !important;
    color: #fff !important;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after { border-bottom-color: #fff !important; }
.flatpickr-current-month .numInputWrapper span.arrowDown:after { border-top-color: #fff !important; }

/* Hét napjai */
span.flatpickr-weekday {
    color: var(--silver-main) !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
}

/* Napok */
.flatpickr-day {
    color: #ccc !important;
    border-radius: 10px !important; /* Kerekítés */
    border: none !important;
    transition: all 0.2s ease !important;
    margin-top: 5px !important;
}

/* Hover a napokon */
.flatpickr-day:hover, 
.flatpickr-day:focus {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

/* Kiválasztott nap (A legfontosabb rész) */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange {
    background: var(--silver-main) !important; /* Ezüst háttér */
    color: #000 !important; /* Fekete szöveg a kontrasztért */
    font-weight: 800 !important;
    box-shadow: 0 0 15px var(--silver-main) !important;
}

/* Mai nap */
.flatpickr-day.today {
    border: 1px solid var(--silver-main) !important;
}
.flatpickr-day.today:hover {
    background: var(--silver-main) !important;
    color: #000 !important;
}

/* Tiltott napok (Szürkítve) */
.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    color: #333 !important;
    background: transparent !important;
    cursor: default !important;
}

/* Nyilak */
.flatpickr-prev-month, .flatpickr-next-month {
    color: #fff !important;
    fill: #fff !important;
}
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg {
    fill: var(--silver-main) !important;
}