/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #303B37;
    --primary-color-dark: #232b27;
    --secondary-color: #b58e4c;
    --accent-color: #e6d8b6;
    --text-color: #303B37;
    --light-text: #4f5a56;
    --bg-light: #f4f7f5;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Holiday Notice Banner */
.holiday-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #8B0000;
    color: var(--white);
    z-index: 2000;
    padding: 0.75rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.holiday-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.holiday-banner p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.close-banner {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-banner:hover {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #02261d;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: top 0.3s ease, background 0.3s ease;
}

.navbar.with-banner {
    top: 45px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 80px;
    object-fit: contain;
}

.logo-placeholder {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo {
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1500;
}

.nav-menu a {
    text-decoration: none;
    color: #fdf9d6;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fdf9d6;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero-background.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Removed wavy overlay to show background image */

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    color: #fdf9d6;
    text-shadow: 
        3px 3px 0px rgba(2, 38, 29, 0.9),
        6px 6px 25px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(253, 249, 214, 0.4);
    position: relative;
    padding: 2rem 3rem;
    display: inline-block;
    background: rgba(2, 38, 29, 0.4);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(253, 249, 214, 0.3);
    border-radius: 8px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(253, 249, 214, 0.2);
}

.hero-logo {
    max-width: min(90vw, 600px);
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-buttons .btn-primary {
    background: #fdf9d6;
    color: #02261d;
    border-color: #fdf9d6;
    font-size: 1.1rem;
    padding: 18px 42px;
    font-weight: 700;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(253, 249, 214, 0.3);
    text-shadow: none;
}

.hero-buttons .btn-primary:hover {
    background: #ffffff;
    color: #02261d;
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(253, 249, 214, 0.3);
}

.btn {
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: #02261d;
    color: #fdf9d6;
    border-color: #02261d;
    box-shadow: 
        0 4px 15px rgba(2, 38, 29, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #033d2e;
    border-color: #033d2e;
    color: #fdf9d6;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(2, 38, 29, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 10px rgba(2, 38, 29, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-large {
    padding: 20px 52px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #02261d;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #02261d, transparent);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fafafa;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(2, 38, 29, 0.1), transparent);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-image {
    width: 100%;
    height: 400px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.placeholder-hint {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

/* Menu & Book Section */
.menu-book-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.menu-book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(2, 38, 29, 0.1), transparent);
}

.menu-book-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.subsection-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.menu-part {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid rgba(2, 38, 29, 0.1);
    box-shadow: 0 4px 20px rgba(2, 38, 29, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-part:hover {
    box-shadow: 0 6px 25px rgba(2, 38, 29, 0.12);
    transform: translateY(-2px);
}

.menu-part .menu-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin: 2rem 0;
}

.menu-download {
    margin-top: 2rem;
}

.book-part {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #02261d 0%, #033d2e 100%);
    border-radius: 8px;
    color: #fdf9d6;
    box-shadow: 0 8px 24px rgba(2, 38, 29, 0.3);
}

.book-part .subsection-title {
    color: #fdf9d6;
}

.book-description {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
    color: rgba(253, 249, 214, 0.9);
}

.book-part .book-phone {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(253, 249, 214, 0.9);
}

.book-part .book-phone span {
    color: #fdf9d6;
    font-weight: 600;
}

.book-form {
    margin-top: 1rem;
}

.book-part .btn-primary {
    background: #fdf9d6;
    color: #02261d;
    border-color: #fdf9d6;
    box-shadow: 0 4px 15px rgba(253, 249, 214, 0.3);
}

.book-part .btn-primary:hover {
    background: #ffffff;
    color: #02261d;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}


/* Rooms Section */
.rooms-section {
    padding: 100px 0;
    background: #fafafa;
    position: relative;
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(2, 38, 29, 0.1), transparent);
}

.rooms-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.rooms-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.room-card-simple {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.room-card-simple:hover {
    transform: translateY(-5px);
}

.room-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.room-card-simple h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 1rem 0.5rem;
}

.room-card-simple p {
    color: var(--light-text);
    margin: 0 1rem 1.5rem;
    line-height: 1.6;
}

.book-rooms-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(2, 38, 29, 0.1), transparent);
}

.reviews-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #02261d;
    color: #fdf9d6;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-phone {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--accent-color);
}

.footer-section p {
    margin: 0.5rem 0;
    color: rgba(253, 249, 214, 0.8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: #fdf9d6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    color: var(--secondary-color);
}

.email-link:hover {
    color: var(--accent-color);
}

.phone-link {
    color: #fdf9d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-color);
}

.phone-link-footer {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link-footer:hover {
    color: #fdf9d6;
}

.email-link {
    color: rgba(253, 249, 214, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-color);
}

.address-link {
    color: rgba(253, 249, 214, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #fdf9d6;
}

.find-us-map {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(253, 249, 214, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.find-us-map:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.find-us-map iframe {
    border: 0;
    border-radius: 6px;
    display: block;
    width: 100%;
    height: 200px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 249, 214, 0.1);
}

.footer-bottom p {
    color: rgba(253, 249, 214, 0.6);
}

.footer-bottom p {
    color: rgba(253, 249, 214, 0.6);
}

.credit-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #fdf9d6;
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fdf9d6;
    color: #02261d;
    border: 2px solid #02261d;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(253, 249, 214, 0.2);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #02261d;
    color: #fdf9d6;
    border-color: #02261d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(253, 249, 214, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    display: block;
}

/* 404 Error Page Styles */
.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: #fafafa;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-serif);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    color: #02261d;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(2, 38, 29, 0.1);
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.error-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #02261d;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.error-message {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.error-section,
.error-section * {
    animation: none !important;
    transition: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.4rem 0;
    }

    .logo {
        height: 70px;
    }

    .logo-img {
        max-height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: #02261d;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        z-index: 1500;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(253, 249, 214, 0.15);
    }

    .nav-menu a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: 85vh;
        padding: 0 15px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .about-section,
    .menu-book-section,
    .rooms-section,
    .reviews-section {
        padding: clamp(50px, 6vw, 60px) 0;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        font-size: 1rem;
    }

    .room-card-simple h3 {
        font-size: 1.3rem;
    }

    .book-part {
        padding: 2rem 1.5rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-book-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-part {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        margin: 0.5rem 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 3rem);
        letter-spacing: 0.5px;
    }

    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .about-section,
    .menu-book-section,
    .rooms-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .menu-category {
        padding: 2rem 1.5rem;
    }

    .nav-menu {
        top: 60px;
        padding: 1rem;
    }

    .navbar {
        padding: 0.3rem 0;
    }

    .logo {
        height: 65px;
    }

    .logo-img {
        max-height: 65px;
    }

    .nav-menu {
        top: 70px;
        padding: 1rem;
    }

    .footer-phone {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
