@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- DUST & GOLD DESIGN SYSTEM --- */
:root {
    --primary-dark: #0f1012;
    --primary-dark-rgb: 15, 16, 18;
    --secondary-dark: #16181b;
    --accent-gold: #c59b27;
    --accent-gold-light: #d4af37;
    --accent-gold-rgb: 197, 155, 39;
    --text-light: #f4f1ea;
    --text-muted: #a3a19b;
    --text-dark: #1c1d1f;
    --bg-light: #faf7f2;
    --bg-sand: #f0ebe1;
    --border-color: rgba(197, 155, 39, 0.15);
    --border-light: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(22, 24, 27, 0.75);
    --glass-border: rgba(197, 155, 39, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- CUSTOM FLOWER CURSOR --- */
.flower-cursor {
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-cursor::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold-light);
    border-radius: 50%;
}

.flower-cursor.hovered {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 155, 39, 0.1);
    border-color: var(--accent-gold-light);
}

@media (max-width: 1024px) {
    .flower-cursor {
        display: none !important;
    }
}

/* --- TYPOGRAPHY & BUTTONS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
}

p {
    font-weight: 300;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.gold-accent-text {
    color: var(--accent-gold-light);
    font-family: var(--font-heading);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-dark);
    background-color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-dark);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}

.btn-gold:hover::after {
    height: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    color: var(--primary-dark);
    background-color: var(--text-light);
    border-color: var(--text-light);
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 1rem 4rem;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-svg {
    width: 42px;
    height: 42px;
    fill: var(--accent-gold);
    transition: var(--transition-smooth);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold-light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 0.4rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

nav ul li a:hover {
    color: var(--text-light);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin-bottom: 5px;
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    header, header.scrolled {
        padding: 1.2rem 2rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--secondary-dark);
        padding: 6rem 3rem;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul li a {
        font-size: 1.1rem;
    }
}

/* --- HERO SECTION (VIDEO BACKGROUND) --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-fallback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15,16,18,0.4) 0%, rgba(15,16,18,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: 4rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1.2s both;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s 0.2s both;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s 0.4s both;
}

.hero-tag {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tag::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.hero-btns {
    animation: fadeInUp 1.2s 0.6s both;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-indicator svg {
    width: 20px;
    height: 32px;
    stroke: var(--accent-gold);
    fill: none;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-tags {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
}

/* --- ABOUT SECTION --- */
.section {
    padding: 8rem 0;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    .container {
        padding: 0 1.5rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.intro-image-container {
    position: relative;
    padding-bottom: 120%;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.intro-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.1, 1, 0.1, 1);
}

.intro-image-container:hover .intro-image {
    transform: scale(1.08);
}

.intro-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--glass-bg);
    border: 1px solid var(--accent-gold);
    padding: 1.5rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.intro-badge-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    font-weight: 700;
}

.intro-badge-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-subtitle::before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.text-block p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.about-feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.about-feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* --- PARAMETERS SECTION (SVOBODA & WILLIAMS STYLE) --- */
.bg-light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.bg-light-section .section-title {
    color: var(--text-dark);
}

.bg-light-section .section-subtitle {
    color: var(--accent-gold);
}

.bg-light-section .section-subtitle::before {
    background-color: var(--accent-gold);
}

.specs-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 0.5rem;
}

.specs-list {
    list-style: none;
}

.specs-item {
    display: flex;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
}

.specs-label {
    font-weight: 500;
    color: #4a4a4a;
}

.specs-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.specs-highlight {
    background-color: var(--bg-sand);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.specs-highlight-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.specs-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.specs-highlight-box {
    display: flex;
    flex-direction: column;
}

.specs-highlight-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.specs-highlight-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* Mini-galleries in Floor Cards */
.floor-card-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.floor-card-thumbnails::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.floor-card-thumbnails {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.floor-card-thumbnail {
    width: 60px;
    height: 45px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.5;
    flex-shrink: 0;
}

.floor-card-thumbnail:hover {
    opacity: 0.8;
    border-color: rgba(197, 155, 39, 0.4);
}

.floor-card-thumbnail.active {
    opacity: 1;
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(197, 155, 39, 0.4);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15,16,18,0.98);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold-light);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 2rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    color: var(--accent-gold-light);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* --- MAP SECTION --- */
.map-container-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
}

#map {
    height: 550px;
    width: 100%;
    z-index: 10;
}

.map-card-overlay {
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 100;
    max-width: 350px;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.map-card-title {
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    margin-bottom: 1rem;
}

.map-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.map-card-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    #map {
        height: 400px;
    }
    .map-card-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        border-top: none;
    }
}

/* Custom leaflet styles to match dark design */
.leaflet-container {
    background: #111 !important;
}

.leaflet-popup-content-wrapper {
    background-color: var(--secondary-dark) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--accent-gold) !important;
    border-radius: 0 !important;
    font-family: var(--font-body);
}

.leaflet-popup-tip {
    background-color: var(--secondary-dark) !important;
    border-left: 1px solid var(--accent-gold) !important;
    border-bottom: 1px solid var(--accent-gold) !important;
}

.popup-content-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold-light);
    margin-bottom: 0.3rem;
}

.popup-content-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- CONTACT SECTION & MAKLER PROFILE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 6rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.profile-card {
    border: 1px solid var(--border-color);
    padding: 3rem;
    background-color: var(--secondary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-img-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    margin-bottom: 2rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.profile-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.profile-contact-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
}

.profile-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.profile-contact-val {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.profile-contact-val:hover {
    color: var(--accent-gold-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    transition: var(--transition-smooth);
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.6rem 0;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-consent-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.4;
}

.form-consent-checkbox {
    margin-top: 0.2rem;
    accent-color: var(--accent-gold);
}

.form-consent-label a {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

.form-success-message {
    display: none;
    background-color: rgba(197, 155, 39, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* --- FOOTER --- */
footer {
    background-color: #0b0c0d;
    border-top: 1px solid var(--border-light);
    padding: 5rem 0 3rem 0;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold-light);
    padding-left: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 99999;
    padding: 2.2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-title {
    font-size: 1.35rem;
    color: var(--accent-gold-light);
    margin-bottom: 0.8rem;
}

.cookie-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-preferences {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
}

.cookie-preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cookie-preference-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.15);
    transition: .4s;
    border-radius: 20px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-light);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--accent-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(18px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-btn-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1 1 auto;
    padding: 0.65rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-light);
    transition: var(--transition-smooth);
    text-align: center;
}

.cookie-btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.cookie-btn-primary:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}

.cookie-btn-link {
    border-color: transparent;
    color: var(--text-muted);
}

.cookie-btn-link:hover {
    color: var(--text-light);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 1.5rem;
    }
}

/* --- LEGAL PAGES LAYOUT (VOP, GDPR) --- */
.legal-body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
}

.legal-body header {
    background-color: var(--primary-dark);
    border-bottom: 1px solid var(--border-light);
}

.legal-main {
    max-width: 800px;
    margin: 8rem auto 6rem auto;
    padding: 0 2rem;
}

.legal-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.legal-content {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .legal-main {
        margin-top: 6rem;
    }
    .legal-content {
        padding: 2rem 1.5rem;
    }
    .legal-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

/* --- FLOOR DISPOZICE (NOVA SEKCE) --- */
.floor-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.floor-tab {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.floor-tab.active, .floor-tab:hover {
    border-color: var(--accent-gold);
    color: var(--text-light);
    background-color: rgba(197, 155, 39, 0.08);
}

.floor-content-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floor-content-container.show {
    opacity: 1;
    transform: translateY(0);
}

.floor-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.floor-card {
    grid-column: span 6;
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-gold);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.floor-card.full-width {
    grid-column: span 12;
}

.floor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold-light);
}

.floor-card-body {
    padding: 2.5rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.floor-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.floor-card-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floor-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--accent-gold);
}

.floor-card-image-wrapper:hover .floor-card-image {
    transform: scale(1.04);
}

.floor-card-image-wrapper:hover .floor-card-image-overlay {
    opacity: 1;
}

.floor-card-image-overlay svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.floor-card-image-wrapper:hover .floor-card-image-overlay svg {
    transform: scale(1.15);
}

.floor-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.floor-card-title {
    font-size: 1.8rem;
    color: var(--text-light);
}

.floor-card-badge {
    background-color: rgba(197, 155, 39, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.floor-card-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.floor-card-meta-item strong {
    color: var(--text-light);
    font-weight: 500;
}

.floor-card-desc {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.floor-card-highlight {
    background-color: rgba(197, 155, 39, 0.05);
    border: 1px dashed var(--accent-gold);
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.floor-card-highlight-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floor-card-highlight-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .floor-card {
        grid-column: span 12;
        padding: 0;
    }
    
    .floor-card-body {
        padding: 2rem;
    }
    
    .floor-card-image-wrapper {
        height: 220px;
    }
}

/* --- ADVANTAGES & POTENTIAL SECTIONS --- */
.advantage-section {
    background-color: var(--primary-dark);
    padding: 8rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.advantage-card {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.advantage-card:hover::before {
    height: 100%;
}

.advantage-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 155, 39, 0.08);
    border: 1px solid rgba(197, 155, 39, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-light);
    margin-bottom: 0.5rem;
}

.advantage-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.advantage-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
}

.advantage-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.potential-section {
    background-color: var(--bg-light);
    padding: 8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.potential-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.potential-card {
    grid-column: span 4;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
}

.potential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 155, 39, 0.2);
}

.potential-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    line-height: 1;
    opacity: 0.8;
}

.potential-card-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.potential-card-text {
    font-size: 0.95rem;
    color: #555;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .potential-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .potential-card {
        grid-column: span 12;
    }
    .advantage-section, .potential-section {
        padding: 5rem 0;
    }
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@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 bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
