/* DESIGN SYSTEM */
:root {
    --emerald: #0E3A2F;
    --gold: #C5A572;
    --ivory: #F4F1EA;
    --charcoal: #1D2624;
    --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--charcoal); 
    background: var(--white); 
    line-height: 1.6; 
}

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 120px 0; scroll-margin-top: 80px; }
.text-center { text-align: center; }

/* HLAVIČKA - ZPĚT K ČISTÉMU DESIGNU */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 25px 0; transition: 0.4s ease; }
header.scrolled { background: var(--emerald); padding: 15px 0; box-shadow: 0 10px 40px rgba(0,0,0,0.4); }

.header-flex { display: flex; justify-content: space-between; align-items: center; }
.header-col { flex: 1; display: flex; align-items: center; }
.header-col.right { justify-content: flex-end; gap: 30px; }

/* LOGO FIX - Aby nebylo obří */
.nav-logo {
    height: 130px; /* Fixní výška, odpovídá velikosti původního textu */
    width: auto;
    display: block;
    transition: 0.3s;
}

header.scrolled .nav-logo {
    height: 100px; /* Jemné zmenšení při scrollu */
}

/* Stará třída pro text v patičce */
.logo { color: var(--gold); text-decoration: none; font-size: 28px; font-weight: 700; letter-spacing: 3px; }

.nav-desktop a { color: white; text-decoration: none; margin-left: 30px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }

.lang-switch { display: flex; gap: 10px; color: white; font-size: 11px; }
.lang-link { cursor: pointer; opacity: 0.5; }
.lang-link.active { opacity: 1; color: var(--gold); }

.btn-gold-sm { background: var(--gold); color: white; padding: 12px 25px; text-decoration: none; font-weight: 600; font-size: 10px; }

/* HERO */
.hero { 
    height: 100vh; position: relative; display: flex; align-items: center; color: var(--white); text-align: center;
    background: url('img/pozadi1.webp') no-repeat center center/cover;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(14, 58, 47, 0.8), rgba(14, 58, 47, 0.5));
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(45px, 8vw, 85px); margin-bottom: 25px; }
.hero-p { max-width: 750px; margin: 0 auto 50px; font-size: 20px; opacity: 0.9; }

.hero-btns { display: flex; justify-content: center; gap: 20px; }
.btn-gold { background: var(--gold); color: white; padding: 18px 45px; text-decoration: none; font-weight: 600; border: 1px solid var(--gold); }
.btn-outline { border: 1px solid white; color: white; padding: 18px 45px; text-decoration: none; }

/* GRID A POKOJE */
.usp-bar { background: var(--emerald); color: white; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; } /* Zde je ta mezera, co se ti líbila */
.usp-item { padding: 70px 30px; text-align: center; border-right: 1px solid rgba(255,255,255,0.05); }

.rooms-section { background: var(--ivory); }
.room-grid { margin-top: 60px; }
.room-card { background: white; transition: 0.4s ease; height: 100%; display: flex; flex-direction: column; }
.room-img { height: 350px; background-size: cover; background-position: center; width: 100%; }
.room-info { padding: 40px; text-align: center; flex-grow: 1; }
.price { display: block; font-weight: 700; color: var(--gold); margin: 20px 0; font-size: 20px; }
.btn-card { display: block; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; padding: 15px; font-weight: 600; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gold-text { color: var(--gold); font-weight: 600; letter-spacing: 2px; font-size: 13px; margin-bottom: 15px; }
.img-frame img { width: 100%; border: 15px solid white; box-shadow: 20px 20px 0 var(--gold); }

.bonus-box { background: rgba(197, 165, 114, 0.1); padding: 25px; border-left: 4px solid var(--gold); margin-top: 30px; }
.atmosphere { background: var(--emerald); color: white; }

/* FOOTER */
footer { background: var(--emerald); color: white; padding: 100px 0 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 50px; }
.footer-nav a { color: white; text-decoration: none; display: block; margin-bottom: 15px; opacity: 0.7; }
.footer-bottom { margin-top: 40px; opacity: 0.5; font-size: 12px; }

/* ANIMACE */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* MOBILE */
.burger-menu { display: none; background: none; border: none; cursor: pointer; }
.burger-menu span { display: block; width: 25px; height: 2px; background: var(--gold); margin: 6px 0; }

@media (max-width: 1100px) {
    .nav-desktop { display: none; }
    .burger-menu { display: block; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

.mobile-overlay { position: fixed; inset: 0; background: var(--emerald); z-index: 2000; display: none; align-items: center; justify-content: center; flex-direction: column; }
.mobile-overlay.active { display: flex; }
.mobile-links a { color: white; font-size: 24px; text-decoration: none; margin: 15px; font-family: 'Playfair Display'; }
.close-btn { position: absolute; top: 30px; right: 30px; font-size: 40px; color: white; background: none; border: none; cursor: pointer; }