:root {
  --primary-color: #ff896b;
  --primary-color-dark: #e06a4e;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-padding-top: 80px; /* Height of fixed header */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000000e6;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header styles */
.header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #000000e6;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.nav-links a {
    color: #000000e6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff896b;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000000e6;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger to X animation */
.mobile-menu.active + .mobile-menu-overlay + .mobile-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu.active + .mobile-menu-overlay + .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active + .mobile-menu-overlay + .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Start off-screen */
    width: 300px;
    height: 100vh;
    background: white;
    padding: 2rem;
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(-300px);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-menu-header h2 {
    font-size: 1.25rem;
    margin: 0;
    color: #000000e6;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #000000e6;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-menu-content a {
    color: #000000e6;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    text-align: left;
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #ff896b;
}

.mobile-menu-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Use the exact same social link styles as elsewhere */
.mobile-menu .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu .social-link svg {
    width: 20px;
    height: 20px;
    stroke: #000000e6;
    transition: stroke 0.3s ease;
}

.mobile-menu .social-link:hover {
    background-color: #ff896b;
}

.mobile-menu .social-link:hover svg {
    stroke: white;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        padding: 1rem 1.5rem;
    }
}

/* Main content spacing */
main {
    padding-top: 60px; /* Height of header */
}

/* Hero section */
.hero {
    min-height: calc(100vh - 60px); /* Subtract header height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero_image.JPG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out forwards;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    opacity: 0;
    transform: translateY(40px);
    letter-spacing: -0.05em;
    animation: heroTitleFadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes heroTitleFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: -0.05em;
    }
    60% {
        opacity: 1;
        transform: translateY(-8px);
        letter-spacing: 0.1em;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.02em;
    }
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: heroElementSlide 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.hero .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: heroElementSlide 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff896b;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

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

/* Features section */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 137, 107, 0.1);
    border-radius: 50%;
    padding: 1rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 137, 107, 0.2);
}

.feature-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(60%) sepia(19%) saturate(1037%) hue-rotate(318deg) brightness(103%) contrast(101%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-svg {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #000000e6;
    font-size: 1.25rem;
}

.feature-card p {
    color: #707070;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Amenities section */
.amenities {
    padding: 4rem 1rem;
}

.amenities h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-item {
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Location section */
.location {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.location h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-info {
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    color: #000000e6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.location-info p {
    color: #707070;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-detail h4 {
    color: #000000e6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-detail ul {
    list-style: none;
    padding: 0;
}

.location-detail ul li {
    color: #707070;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.location-detail ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #ff896b;
    border-radius: 50%;
}

.location-map {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 1.5rem;
    }

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

/* Attractions section */
.attractions {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.attractions h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distance-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff896b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 137, 107, 0.2);
}

.winter-sports .distance-badge,
.water-parks .distance-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.attraction-card:hover .distance-badge {
    background-color: #000000e6;
    transition: background-color 0.3s ease;
}

.attraction-card h3 {
    color: #000000e6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.attraction-card p {
    color: #707070;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.attraction-card ul {
    list-style: none;
    padding: 0;
    color: #707070;
}

.attraction-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.attraction-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #ff896b;
    border-radius: 50%;
}

.btn-link {
    display: inline-block;
    color: #ff896b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #000000e6;
}

.winter-sports,
.water-parks {
    background-color: transparent;
}

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

    .attraction-card {
        padding: 1.5rem;
    }
}

/* Contact section */
.contact {
    padding: 6rem 1rem;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #000000e6;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #707070;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    padding: 3rem;
    background-color: #000000e6;
    color: white;
}

.contact-info-header {
    margin-bottom: 3rem;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff896b;
}

.contact-text h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #ff896b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.social-link:hover {
    background-color: #ff896b;
}

.social-link:hover svg {
    stroke: white;
}

.contact-form {
    padding: 3rem;
}

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

.form-header h3 {
    font-size: 1.5rem;
    color: #000000e6;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #707070;
    font-size: 0.9rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000e6;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #000000e6;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff896b;
    box-shadow: 0 0 0 3px rgba(255, 137, 107, 0.1);
    background-color: white;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background-color: #ff896b;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #000000e6;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 1.5rem;
    }

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

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

    .attraction-card {
        padding: 1.5rem;
    }

    .gallery-categories {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-category {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-header h3,
    .form-header h3 {
        font-size: 1.25rem;
    }

    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Footer styles */
.footer {
    background-color: #000000e6;
    color: white;
    padding: 4rem 1rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.footer-info,
.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-info h3,
.footer-links h3,
.footer-social h3 {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    text-align: center;
}

.footer-links a:hover {
    color: #ff896b;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #707070;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.made-with-love {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.made-with-love .heart {
    color: #ff896b;
    display: inline-block;
    animation: heartbeat 1.5s ease infinite;
}

.made-with-love a {
    color: #ff896b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.made-with-love a:hover {
    color: white;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive design */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .features-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery section */
.gallery {
    padding: 4rem 1rem;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-category {
    padding: 0.5rem 1.5rem;
    border: 2px solid #ff896b;
    background: none;
    color: #ff896b;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-category:hover,
.gallery-category.active,
.gallery-category:focus,
.gallery-category:active {
    background-color: #ff896b;
    color: white;
    border-color: #ff896b;
    box-shadow: none;
    outline: none;
    transform: none;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #e2e8f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-categories {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-category {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-category {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
}

/* Pricing section */
.pricing {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #000000e6;
}

.pricing-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.price-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.price-card-header {
    background-color: #000000e6;
    color: white;
    padding: 2rem;
    text-align: center;
}

.price-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    margin-bottom: 1rem;
}

.price-amount .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ff896b;
}

.price-amount .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-card-body {
    padding: 2rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #707070;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li svg {
    width: 20px;
    height: 20px;
    stroke: #ff896b;
    flex-shrink: 0;
}

.price-features li strong {
    color: #000000e6;
    font-weight: 600;
}

.price-card-footer {
    padding: 2rem;
    text-align: center;
    background-color: #f7fafc;
}

.price-card-footer .btn {
    width: 100%;
    max-width: 200px;
}

@media (max-width: 768px) {
    .pricing {
        padding: 1rem;
    }

    .price-card {
        margin: 0 1rem;
    }

    .price-card-header {
        padding: 1.5rem;
    }

    .price-amount .amount {
        font-size: 2.5rem;
    }

    .price-card-body,
    .price-card-footer {
        padding: 1.5rem;
    }
}

/* Smooth section transitions */
section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Animation classes */
[data-animate] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Ensure sections are visible by default on mobile */
@media (max-width: 768px) {
    section {
        opacity: 1 !important;
        transform: none !important;
    }
    
[data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* Gallery items animation delays */
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Feature cards animation delays */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Adjust animation delays for gallery and features */
[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="150"] { transition-delay: 0.15s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="250"] { transition-delay: 0.25s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="350"] { transition-delay: 0.35s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }
[data-animate-delay="450"] { transition-delay: 0.45s; }
[data-animate-delay="500"] { transition-delay: 0.5s; }

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

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

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Interactive elements with smoother transitions */
.btn,
.gallery-item,
.feature-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img,
.feature-image {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lightbox transitions */
.lightbox {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-content {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1101;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.lightbox-close:hover {
    background: #ff896b;
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1101;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 30px;
    height: 30px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff896b;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Enhanced hover effects */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff896b;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card {
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Section headings */
section h2 {
    color: #000000e6;
}

/* Contact info */
.contact-info p {
    color: #707070;
}

/* Footer social icons - make them specific to footer */
.footer .social-link {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.footer .social-link:hover {
    background-color: #ff896b;
    color: white;
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
    height: 100%;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown > a::after {
    content: '▼';
    font-size: 0.8em;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #000000e6;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f7fafc;
    color: #ff896b;
}

/* Mobile dropdown styles */
.mobile-menu-content .nav-dropdown > a {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-content .nav-dropdown > a::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mobile-menu-content .nav-dropdown > a.active::after {
    transform: rotate(180deg);
}

.mobile-menu-content .dropdown-content {
    display: block;
    position: static;
    box-shadow: none;
    background: #f7fafc;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-menu-content .dropdown-content.active {
    max-height: 300px;
    opacity: 1;
}

.mobile-menu-content .dropdown-content a {
    padding-left: 2rem;
    transform: translateY(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-menu-content .dropdown-content.active a {
    transform: translateY(0);
    opacity: 1;
}

/* Add transition delays for each link */
.mobile-menu-content .dropdown-content a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-content .dropdown-content a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-content .dropdown-content a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-content .dropdown-content a:nth-child(4) {
    transition-delay: 0.25s;
}

/* Availability section */
.availability {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.availability h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #000000e6;
}

.availability-content {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-container {
    padding: 1rem;
}

.calendar-container iframe {
    border-radius: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .availability {
        padding: 1rem;
        margin: 2rem auto;
    }

    .availability h2 {
        margin-bottom: 2rem;
    }

    .calendar-container {
        padding: 0.5rem;
    }

    .calendar-container iframe {
        height: 800px;
    }
}

.form-message-success {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: #e6f9f0;
    color: #1a7f5a;
    border: 1.5px solid #1a7f5a;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 8px rgba(26, 127, 90, 0.07);
    transition: all 0.3s;
}

.form-message-error {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: #fff0ee;
    color: #ff896b;
    border: 1.5px solid #ff896b;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 137, 107, 0.07);
    transition: all 0.3s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1101;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

.back-to-top.hide {
    display: none !important;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.breadcrumbs {
  font-size: 0.95rem;
  color: #888;
  margin: 1.5rem 0 1.5rem 0;
  padding-left: 1rem;
  display: flex;
  justify-content: center;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin: 0 0.5rem;
  color: #bbb;
}
.breadcrumbs a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #ff896b;
  text-decoration: underline;
}

/* Welcome section */
.welcome {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text {
    padding-right: 2rem;
}

.welcome-text h2 {
    font-size: 2.5rem;
    color: #000000e6;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    color: #707070;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.welcome-text .btn {
    margin-top: 1rem;
}

.welcome-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.welcome-image:hover img {
    transform: scale(1.05);
}

/* Highlights section */
.highlights {
    padding: 4rem 1rem;
    margin: 4rem 0;
    position: relative;
}

.highlights-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000000e6;
    margin-bottom: 3rem;
}

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

.highlight-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 137, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background-color: rgba(255, 137, 107, 0.2);
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff896b;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon svg {
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: #000000e6;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #707070;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Quick Info section */
.quick-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.quick-info-content {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-info-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-info-card:hover {
    transform: translateY(-5px);
}

.quick-info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff896b;
}

.quick-info-card h3 {
    font-size: 1.25rem;
    color: #000000e6;
    margin-bottom: 0.5rem;
}

.quick-info-card p {
    color: #707070;
    font-size: 1.1rem;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .highlights-content {
        padding: 0;
    }

    .highlights h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-text {
        padding-right: 0;
        text-align: center;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .quick-info-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-text h2,
    .highlights h2 {
        font-size: 1.75rem;
    }

    .welcome-text p,
    .highlight-card p {
        font-size: 1rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }
}

/* Outdoor Seating section */
.outdoor-seating {
    padding: 4rem 1rem;
    margin: 4rem 0;
    position: relative;
}

.outdoor-seating h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000000e6;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.outdoor-seating-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: 0 1rem;
}

.outdoor-seating-text {
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.outdoor-seating-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.outdoor-seating-text p {
    color: #707070;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.outdoor-seating-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.outdoor-seating-text ul li {
    color: #707070;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.outdoor-seating-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ff896b;
    border-radius: 50%;
}

.outdoor-seating-images {
    position: relative;
}

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

.image-grid .image-item:first-child {
    grid-column: 1 / -1;
}

.image-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

    .outdoor-seating-text {
        order: 2;
    }

    .outdoor-seating-images {
        order: 1;
    }
}

@media (max-width: 768px) {
    .outdoor-seating {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .outdoor-seating h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .outdoor-seating-text {
        padding: 1.5rem;
    }

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

    .image-item {
        aspect-ratio: 16/9;
    }

    .outdoor-seating-grid {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .outdoor-seating h2 {
        font-size: 1.75rem;
    }

    .outdoor-seating-text p,
    .outdoor-seating-text ul li {
        font-size: 1rem;
    }
} 