/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Global variables */
:root {
    --primary: #252159;
    --secondary: #1f4484;
    --accent: #10b3d5;
    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
}

/* Global styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Global spacing and rhythm */
main {
    padding-top: 0;
    transition: padding-top 0.3s ease;
}

body.has-sticky-header main {
    padding-top: 110px; /* Accommodate logo (90px + 20px padding) */
}

@media (max-width: 991px) {
    body.has-sticky-header main {
        padding-top: 95px; /* Tablet: 75px + 20px padding */
    }
}

@media (max-width: 767.98px) {
    body.has-sticky-header main {
        padding-top: 85px; /* Mobile: 65px + 20px padding */
    }
}

@media (max-width: 575.98px) {
    body.has-sticky-header main {
        padding-top: 75px; /* Small mobile: 55px + 20px padding */
    }
}

section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 120px;
}

/* Adjust scroll margin for mobile */
@media (max-width: 767.98px) {
    section {
        scroll-margin-top: 100px;
    }
}

.section-title {
    margin-bottom: 3rem;
}

/* Improved spacing for different screen sizes */
@media (max-width: 576px) {
    section {
        padding: 2.5rem 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
        font-size: 1.75rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    section {
        padding: 4rem 0;
    }
}

/* Global link styles */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--accent);
    text-decoration: none;
}

/* Accessibility improvements */
a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

/* Bootstrap overrides */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #1e1b4a;
    border-color: #1e1b4a;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #193a70;
    border-color: #193a70;
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-accent:hover, .btn-accent:focus {
    background-color: #0e9ab8;
    border-color: #0e9ab8;
    color: white;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

/* Header styles */
header {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    position: relative;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    /*padding: 1.5rem 0;*/
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    transition: all 0.3s ease;
    padding-right: 2rem;
}

.navbar-brand img {
    height: 90px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.scrolled .navbar-brand img {
    height: 70px;
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand {
        padding-right: 1.5rem;
    }

    .navbar-brand img {
        height: 75px;
    }

    .scrolled .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        padding-right: 1rem;
    }

    .navbar-brand img {
        height: 65px;
    }

    .scrolled .navbar-brand img {
        height: 55px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 55px;
    }

    .scrolled .navbar-brand img {
        height: 50px;
    }
}

.navbar-brand{
    padding-top: 0;
    padding-bottom: 0;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.nav-link.active {
    color: var(--accent) !important;
}

.nav-link.active::after {
    width: calc(100% - 2rem);
}

.nav-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.nav-link:focus:not(:focus-visible) {
    outline: none;
}

/* Hamburger menu animation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.navbar-toggler:focus:not(:focus-visible) {
    outline: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Footer styles */
footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--primary);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

footer h5 {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

footer p {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

footer a:hover {
    color: var(--accent);
    text-decoration: none;
}

footer .list-unstyled a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

footer .list-unstyled a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Additional footer styles */
.not-italic {
    font-style: normal;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

footer address p {
    margin-bottom: 0.5rem;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Footer responsive styles */
@media (max-width: 991.98px) {
    footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-about,
    .footer-description {
        text-align: center;
    }

    footer h5 {
        text-align: center;
        margin-top: 1.5rem;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    footer address {
        text-align: center;
    }

    footer .list-unstyled {
        text-align: center;
    }

    footer .list-unstyled a::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo img {
        max-width: 140px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .container > .row > div {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 576px) {
    .hero-section {
        height: auto;
        min-height: 400px;
        padding: 80px 0 100px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 450px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-section {
        min-height: 500px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
}

/* Reservation Banner */
.reservation-banner {
    position: relative;
    background-color: rgb(56 53 103);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reservation-form {
    padding: 20px;
    color: #333;
}

.reservation-form label {
    font-weight: 500;
}

/* Accent Line */
.accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
}

/* Diagonal Accent */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--accent);
    transform: skewY(-2deg);
    z-index: 1;
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.section-title {
    position: relative;
    color: var(--primary);
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

/* Badges */
.badges-container {
    margin-top: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.badge-item i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* SVG Decoration */
.svg-decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Ski Trail SVG Decoration */
.ski-trail-decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
    transform: rotate(-15deg) scale(0.8);
}

/* Advantages Section */
.advantages-section {
    position: relative;
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.advantages-section .container {
    position: relative;
    z-index: 1;
}

/* Remove the skewed separator as we're using the wave separator instead */

.value-prop-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

/* Center the cards in the row on all screen sizes */
.usp-cards .col-6 {
    display: flex;
    justify-content: center;
}

.value-prop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-prop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(16, 179, 213, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.value-prop-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.value-prop-card h4 {
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
    width: 100%;
}

.value-prop-card p {
    color: #666;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

/* Custom 5-column layout for large screens */
.col-lg-1-5 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-1-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    background-color: white;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.amenity-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.amenity-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.amenity-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    width: 100%;
}

.amenity-card.bg-secondary p {
    color: rgba(255, 255, 255, 0.8);
}

/* Ensure consistent hover effect for all amenity cards */
.amenity-card.bg-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure accent styling for text in secondary cards */
.amenity-card.bg-secondary h5 {
    color: white;
}

.amenity-card i {
    color: inherit;
}

/* Gallery Teaser Section */
.gallery-teaser-section {
    padding: 80px 0 120px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

/* Wave separator */
.wave-separator {
    position: relative;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.wave-separator svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .reservation-banner {
        margin: 0 15px;
    }

    /* About section responsive */
    .about-section {
        padding: 60px 0;
    }

    .svg-decoration {
        top: 20px;
        right: 20px;
        transform: scale(0.7);
    }

    .badge-item {
        padding: 8px 12px;
    }

    .badge-item i {
        font-size: 1.2rem;
    }

    .badge-item span {
        font-size: 0.8rem;
    }

    /* Advantages section responsive */
    .advantages-section {
        padding: 60px 0;
    }

    .value-prop-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .value-prop-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .value-prop-icon i {
        font-size: 1.8rem;
    }

    .value-prop-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .value-prop-card p {
        font-size: 0.9rem;
    }

    /* Amenities section responsive */
    .amenities-section {
        padding: 60px 0;
    }

    .amenity-card {
        padding: 20px 15px;
    }

    .amenity-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .amenity-card h5 {
        font-size: 1rem;
    }

    .amenity-card p {
        font-size: 0.8rem;
    }

        /* Gallery Teaser section responsive */
        .gallery-teaser-section {
            padding: 60px 0;
        }

        .gallery-item {
            margin-bottom: 15px;
        }

        /* Availability section responsive */
        .availability-section {
            padding: 60px 0;
        }

        .calendar-container {
            margin: 0 -15px;
        }

        .calendar-legend {
            margin-top: 20px;
        }

        .calendar-actions .btn {
            margin-bottom: 10px;
            width: 100%;
        }
    }

/* Availability Section */
.availability-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.calendar-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 30px;
}

.calendar-legend {
    margin: 20px 0;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
}

.calendar-actions {
    margin: 30px 0;
}

.calendar-info {
    max-width: 600px;
    margin: 0 auto;
}

/* FullCalendar Customizations */
.fc-theme-standard .fc-scrollgrid {
    border-color: #e5e5e5;
}

.fc-theme-standard th {
    background-color: var(--primary);
    color: white;
    padding: 10px;
}

.fc-theme-standard td {
    border-color: #e5e5e5;
}

.fc-day-today {
    background-color: rgba(16, 179, 213, 0.1) !important;
}

.fc-button-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.fc-button-primary:hover {
    background-color: #1e1b4a !important;
    border-color: #1e1b4a !important;
}

.fc-button-active {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* Location section responsive */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }

    .map-container {
        margin: 0 -15px;
        border-radius: 0;
    }

    .map-container iframe {
        height: 300px;
    }

    .location-info {
        padding: 15px;
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 16px 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    background-color: white;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: white;
    color: #555;
    line-height: 1.6;
}

/* FAQ section responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .accordion-item {
        margin-bottom: 12px;
    }

    .accordion-button {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    .navbar-brand img {
        height: 70px;         /* вместо 90px – по-обрано лого */
    }

    .navbar-brand {
        padding-right: 3rem;  /* повече въздух между лого и меню */
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.5rem 1.1rem !important;
    }
}

/* Language switcher по-стегнат, но видим */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.btn-language {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 33, 89, 0.15);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    background-color: #fff;
    transition: all 0.2s ease;
}

.btn-language .flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
}

.btn-language.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-language.active .flag-icon {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
}

.btn-language:hover:not(.active) {
    background-color: rgba(16,179,213,0.06);
    border-color: rgba(16,179,213,0.4);
}

/* Mobile – да не натиска прекалено хедъра */

@media (max-width: 991.98px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 0.75rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .btn-language {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

.logo{
    width: 240px;
    height: 80px;
}

.font-size-amenity-emoji{
    font-size: 3.65rem !important;
}
