/* ==========================================================================
   DESIGN TOKENS & CORE VARIABLES
   ========================================================================== */
:root {
    /* Color System */
    --color-primary: #152e20;        /* Deep Forest Green */
    --color-primary-light: #204530;  /* Lighter Forest Green for Hover */
    --color-primary-dark: #0a1710;   /* Deep Dark Green */
    --color-accent: #c59b27;         /* Warm Gold/Ocher Accent */
    --color-accent-light: #e0b63f;   /* Light Gold Accent */
    --color-bg-base: #faf8f5;        /* Soft Cream Background */
    --color-bg-card: #f2efe9;        /* Warm Stone Background for Cards */
    --color-text-main: #2b332f;      /* Soft Charcoal (High legibility, soft contrast) */
    --color-text-muted: #6b7770;     /* Slate Muted Text */
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* Layout & Spaces */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
    --box-shadow-subtle: 0 4px 20px rgba(21, 46, 32, 0.04);
    --box-shadow-medium: 0 10px 30px rgba(21, 46, 32, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(21, 46, 32, 0.15);
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   MULTI-LANGUAGE VISIBILITY CONTROLLER
   ========================================================================== */
body.lang-ro .hu-text,
body.lang-ro .en-text {
    display: none !important;
}

body.lang-hu .ro-text,
body.lang-hu .en-text {
    display: none !important;
}

body.lang-en .ro-text,
body.lang-en .hu-text {
    display: none !important;
}

/* Smooth fade-in utility */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline.fade-in { animation-delay: 0.1s; }
.hero-title.fade-in { animation-delay: 0.3s; }
.hero-subtitle.fade-in { animation-delay: 0.5s; }
.hero-btns.fade-in { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-base);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 46, 32, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    display: width;
    width: 100%;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

/* Navbar active state on scroll */
.navbar.scrolled {
    padding: 16px 0;
    background-color: rgba(21, 46, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.nav-logo .logo-accent {
    color: var(--color-accent);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
}

/* Active indicator */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 80px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 60px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2);
}

.btn-cta:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomOutBg 12s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomOutBg {
    to {
        transform: scale(1);
    }
}

.hero-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    animation: bounce 2s infinite;
    transition: var(--transition-fast);
}

.scroll-down:hover {
    color: var(--color-accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ==========================================================================
   ABOUT / PREZENTARE SECTION
   ========================================================================== */
.despre {
    padding: 120px 0;
    background-color: var(--color-bg-base);
}

.section-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.grid-about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Overlapping Image Grid */
.about-images {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
}

.about-images .img-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-smooth);
    border: 4px solid var(--color-bg-base);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-images .img-wrapper:hover img {
    transform: scale(1.06);
}

.about-images .main-img {
    width: 65%;
    height: 380px;
    left: 0;
    top: 20px;
    z-index: 2;
}

.about-images .sub-img {
    width: 50%;
    height: 280px;
    right: 0;
    top: 140px;
    z-index: 3;
}

.about-images .detail-img {
    width: 38%;
    height: 200px;
    left: 10%;
    bottom: -10px;
    z-index: 4;
}

.about-images .img-wrapper:hover {
    z-index: 5;
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--color-accent);
}

/* Text Side styling */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-desc p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-desc p strong {
    color: var(--color-primary);
    font-weight: 600;
}

.highlight-quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary) !important;
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
    margin-top: 30px;
    line-height: 1.5;
}

/* ==========================================================================
   FACILITIES / AMENITIES SECTION
   ========================================================================== */
.facilitati {
    padding: 100px 0;
    background-color: var(--color-bg-card);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.grid-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background-color: var(--color-bg-base);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--box-shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(21, 46, 32, 0.03);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(197, 155, 39, 0.2);
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(21, 46, 32, 0.05);
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

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

.amenity-card:hover .amenity-icon {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.amenity-card h3 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    font-weight: 700;
}

.amenity-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */
.galerie {
    padding: 120px 0;
    background-color: var(--color-bg-base);
}

.gallery-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--color-bg-card);
    color: var(--color-text-muted);
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Photo Cards */
.gallery-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #e5e5e5;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeGrid 0.5s ease-out forwards;
}

@keyframes fadeGrid {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 46, 32, 0.8), rgba(21, 46, 32, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-title {
    transform: translateY(0);
}

.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   CONTACT & FORM SECTION
   ========================================================================== */
.contact {
    padding: 120px 0;
    background-color: var(--color-bg-base);
}

.grid-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-lead {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-bg-base);
    color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-icon.highlight {
    background-color: #25d366; /* WhatsApp Green */
    color: var(--color-white);
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-text a, .contact-text p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-text a:hover {
    color: var(--color-accent);
}

/* Map Style & Wrapper */
.map-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    overflow: visible;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 4px solid var(--color-bg-base);
}

.btn-recenter {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999; /* Ensure it floats above the iframe rendering context */
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-recenter:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.3);
}

.btn-recenter svg {
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.btn-recenter:hover svg {
    transform: rotate(180deg);
}

/* Booking Form Container */
.contact-form-container {
    background-color: var(--color-bg-base);
    padding: 50px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    border: 1px solid rgba(21, 46, 32, 0.02);
}

.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-sub {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-bg-card);
    border: 1.5px solid transparent;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(197, 155, 39, 0.08);
}

.booking-form .btn-primary {
    margin-top: 15px;
    padding: 16px 30px;
}

/* ==========================================================================
   IMMERSIVE LIGHTBOX overlay
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 23, 16, 0.92);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-caption {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 24px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
}

.lightbox-btn:hover {
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* ==========================================================================
   MODALS (SUCCESS FORM DISPLAY)
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 23, 16, 0.6);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

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

.modal-content {
    background-color: var(--color-bg-base);
    max-width: 500px;
    width: 90%;
    border-radius: var(--border-radius-md);
    padding: 50px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(21, 46, 32, 0.05);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(197, 155, 39, 0.1);
    color: var(--color-accent);
    margin-bottom: 24px;
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-content .btn {
    padding: 12px 40px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p:last-child {
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   POLICIES & DETAILED FACILITIES SECTION
   ========================================================================== */
.detalii {
    padding: 120px 0;
    background-color: var(--color-bg-card);
    border-top: 1px solid rgba(21, 46, 32, 0.03);
}

.grid-detalii {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.policies-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.policy-card {
    background-color: var(--color-bg-base);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid rgba(21, 46, 32, 0.02);
    transition: var(--transition-smooth);
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-medium);
    border-color: rgba(197, 155, 39, 0.15);
}

.policy-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.policy-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.policy-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
}

.policy-content {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.policy-content ul li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Detailed Facilities Column */
.facilities-accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.fac-group {
    background-color: var(--color-bg-base);
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid rgba(21, 46, 32, 0.02);
}

.fac-group h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(197, 155, 39, 0.15);
    padding-bottom: 12px;
}

.fac-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.fac-list-detailed.grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.fac-list-detailed li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive adjustment for detailed section */
@media (max-width: 1024px) {
    .grid-detalii {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .fac-list-detailed.grid-list {
        grid-template-columns: 1fr;
    }
    .fac-group {
        padding: 25px;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Under 1024px (Tablets / Laptops) */
@media (max-width: 1024px) {
    .grid-about {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        height: 480px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .grid-amenities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-contact {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Under 768px (Mobile & Small Tablets) */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
        background-color: var(--color-primary); /* Solid colored on mobile for legibility */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-container {
        position: relative;
    }
    
    /* Responsive Mobile Menu Drawer */
    .nav-menu {
        position: absolute;
        top: 60px;
        left: -5%;
        width: 110%;
        background-color: var(--color-primary);
        padding: 30px 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Active Burger Animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .btn-cta {
        display: none; /* Hide standard CTA in header to avoid clutter */
    }
    
    .hero-title {
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        margin-bottom: 30px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .despre {
        padding: 80px 0;
    }
    
    .about-images {
        height: 380px;
    }
    
    .about-images .main-img {
        height: 280px;
    }
    
    .about-images .sub-img {
        height: 200px;
        top: 100px;
    }
    
    .about-images .detail-img {
        height: 140px;
        bottom: 10px;
    }
    
    .grid-amenities {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amenity-card {
        padding: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.2rem;
    }
    
    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Under 480px (Extra Small Mobile) */
@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.35rem;
    }
    
    .lang-switcher {
        padding: 2px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
