/* Basic reset and layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: 'Hind', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

main {
   display: flex;
   flex-direction: column;
   gap: 4rem;
}

/* Header styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem 6rem;
    background: #fff;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.main-navigation {
    display: flex;
    gap: 26px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
}

.main-navigation a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.main-navigation a:hover {
    opacity: 0.8;
}

.logo {
    width: 100px;
}

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

/* Section styles */
/* section {
    padding: 0 2rem;
 } */

section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Hero section styles */

.hero-wrapper {
    min-height: auto;
    padding: 6rem;
    background-color: #fff;
    width: 100%;
}

.hero-section {
    width: 100%;
    height: 80vh;
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;

}

.main-logo {
/*     max-width: 140px; */
    margin: 0 auto 1.5rem;
}

.main-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.brand-name {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.booking-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.booking-button:hover {
    background-color: #fff;
    color: #000;
}

.social-links {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.social-icon {
    color: #000;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon i {
    font-size: 16px; 
    line-height: 1; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: #000; 
}

.social-icon:hover i {
    color: #fff; 
}

.footer-social-mobile {
    display: none;
    margin-bottom: 1rem;
}

.footer-social-mobile .social-icons {
    display: flex;
    gap: 1.5rem;
}

.footer-social-mobile .social-icon {
    color: #fff;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
}

.footer-social-mobile .social-icon:hover {
    background: #fff;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .footer-social-mobile {
        display: block;
    }
}

.scroll-down {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #000;
    background: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
}

.scroll-down .fa-scissors {
    font-size: 24px;
    margin-bottom: 5px;
    transform: rotate(270deg);
}

.scroll-down p {
    font-size: 12px;
    margin-bottom: 5px;
}

.scroll-down .fa-chevron-down {
    font-size: 16px;
}

.hero-section, .about-image img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

/* Sections */

/* About */
.about-wrapper {
    padding: 0 6rem;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.about-header {
    margin-bottom: 0.5rem;
    text-align: left;
}

.about-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #000;
    width: 2rem;
    margin-left: 0;
    margin-right: auto;
    text-align: center;
}

.about-header h2 {
    font-size: 36px;
    text-align: start;
}

.about-text {
    font-size: 18px;
    line-height: 2;
    max-width: 90%;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* News & events */

.section-news-wrapper {
    background-color: #f9f9f9;
    width: 100%;
    padding: 4rem 0;
}

.section-news {
    padding: 0 6rem;
    width: 100%;
}

.news-header {
    margin-bottom: 4rem;
    text-align: left;
}

.news-header h2 {
    font-size: 36px;
    text-align: left;
    margin: 0;
}

.news-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #000;
    width: 2rem;
    margin-left: 0;
    margin-right: auto;
}

.news-content, .event-content {
    border-top: 2px solid #ccc;
    padding: 2rem 0;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 3rem;
    margin-left: 2rem;
}

.news-item {
    margin-bottom: 2rem;
    margin-left: 4rem;
}

.news-item .date {
    display: block;
    margin-bottom: 0.5rem;
}

.event-content {
    /* border-top: 2px solid #ccc; */
    border-top: none;
    border-bottom: 2px solid #ccc;
    padding: 2rem 0;
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 3rem;
    margin-left: 2rem;
}

.event-item {
    margin-bottom: 3rem;
    margin-left: 4rem;
}

.event-item h4 {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

/* .view-details {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid #000;
    margin-top: 2rem;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
} */

/* Menu */

/* Replace your existing .menu-content rules */
.menu-content {
    display: flex;
    gap: 6rem;
    padding: 0 2rem;
}

/* New container for each column */
.menu-column {
    flex: 1;
}

.section-menu-wrapper {
    background-color: #fff;
    padding: 0;
 }
 
 .section-menu {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
 }

 .section-menu h2 {
    text-align: center;
    font-size: 36px;
}
 
 .menu-header {
    text-align: center;
    margin-bottom: 4rem;
 }
 
 .menu-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #000;
    width: 2rem;
    margin: 0 auto 1rem;
 }
 
 .menu-header h2 {
    font-size: 36px;
 }

 .menu-content {
    column-count: 2;
    column-gap: 6rem;
    padding: 0 2rem;
}
 
/* .menu-category {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 3rem;
} */

.menu-category {
    margin-bottom: 3rem;
}

.menu-category .menu-items {
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s ease;
}

.menu-category.active .menu-items {
    max-height: 1000px; /* Adjust if needed */
}

 .menu-category h3 {
    font-size: 24px;
    text-transform: lowercase;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ccc;
 }

 .menu-category h3 {
    position: relative;
    padding-right: 1.5rem; /* space for the chevron */
}

.menu-category h3::after {
    content: "\25BE"; /* Unicode down arrow */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 1s ease;
}

.menu-category.active h3::after {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 768px) {
    .menu-content {
      display: block;
      column-count: 1;
      column-gap: 0; 
    }
    .menu-column {
      display: contents;
    }
  }
 
 .menu-item {
    margin-bottom: 2.5rem;
 }
 
 .menu-title {
    display: block;
    font-weight: 700;
    margin-bottom: 1.5rem;
 }
 
 .menu-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 0.75rem;
 }

 .menu-detail-row {
    display: flex;
    justify-content: space-between;
 }
 
 .menu-price {
    font-weight: 500;
 }

/* Staff */

.section-staff-wrapper {
    /* background-color: #f9f9f9; */
    padding: 0;
}

.section-staff {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-staff .staff-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #000;
    width: 2rem;
    margin: 0 auto 1rem;
}

.section-staff h2 {
    font-size: 36px;
    text-align: center;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 6rem;
    row-gap: 12rem; 
    padding: 0 2rem;
}

.staff-member {
    position: relative;
    margin-bottom: 4rem;
}

.staff-image {
    width: 100%;
    position: relative;
}

.staff-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.staff-info {
    position: absolute;
    top: 100%;
    right: -5rem;
    background: white;
    padding: 1.75rem;
    width: 100%;
    margin-top: -4rem;
    border-top: 2px solid #9C9C9C;
}

.staff-member h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.staff-member h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 1rem;
    font-weight: normal;
}

.staff-info h3 {
    font-size: 18px;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.staff-info h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 1rem;
}

.staff-member img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.staff-details {
    list-style: none;
    padding: 0;
    margin-bottom: 0.75rem;
}

.staff-details li {
    font-size: 13px;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.staff-message {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Style gallery */

.section-style-wrapper {
    background: #fff;
    padding: 4rem 0;
}

.section-style {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-style .style-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-style .style-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #000;
    width: 2rem;
    margin: 0 auto 1rem;
}

.section-style h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 1rem;
}

.style-header .instagram-icon {
    text-align: center;
    /* margin-top: 1rem; */
}

.style-header .instagram-icon a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.style-header .instagram-icon a:hover {
    opacity: 0.5;
}

.style-header .instagram-icon i {
    font-size: 36px;
}

.style-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Instagram Feed Customization */
.style-grid #sbi_images {
    padding: 0 !important;
}

#sb_instagram {
    padding-bottom: 0 !important;
}

#sb_instagram.sbi_width_resp {
    width: 100% !important;
}

/* Override Smash Balloon default spacing */
#sb_instagram .sbi_photo {
    height: 0 !important;
    padding-bottom: 100% !important; /* Makes images square */
}

#sb_instagram .sbi_photo_wrap {
    background: #f8f8f8;
}

#sb_instagram .sbi_item {
    transition: opacity 0.3s ease;
}

#sb_instagram .sbi_item:hover {
    opacity: 0.9;
}

/* Access */

.section-access-wrapper {
    background-color: #fff;
    padding: 4rem 0;
}

.section-access {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 4rem;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 400px; /* Fixed width for info column */
    gap: 2rem;
    align-items: start;
}

.map-section {
    position: relative;
    height: 100%;
}

.map-section iframe {
    width: 100%;
    height: 550px;
    border: 1px solid #e0e0e0;
}

.map-link-container {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.map-link {
    display: inline-block;
    padding: 0.75rem 3rem;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    text-decoration: none;
    min-width: 200px;
    text-align: center;
}

.access-info {
    width: 100%;
}

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

.access-header .section-number {
    border-top: 2px solid #000;
    width: 2rem;
    font-weight: 700;
    display: block;
    font-size: 24px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.access-header h2 {
    text-align: start;
    font-size: 36px;
    margin: 0;
}

.info-content {
    border-top: 2px solid #9A9A9A;
    border-bottom: 2px solid #9A9A9A;
    padding: 2rem 0;
}

.postal-code {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.address {
    font-size: 16px;
    margin-bottom: 2rem;
}

.label {
    font-size: 16px;
    margin-bottom: 1rem;
}

.business-hours {
    margin-bottom: 2rem;
}

.business-hours .hours {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.closed-days {
    font-size: 16px;
    margin-bottom: 2rem;
}

.phone {
    font-size: 16px;
}

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

    .map-section iframe {
        height: 300px;
    }
}
/* --- */

.section-menu {
    background-color: #fff;
}

.section-staff {
    background-color: #fff;
}

.section-style {
    background-color: #fff;
}

/* Footer styles */
.site-footer {
    background-color: #4a4a4a;
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Logo section */
.footer-left .logo img {
    max-width: 120px;
    height: auto;
}

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

/* Headings */
.footer-content h3 {
    font-size: 16px;
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Contact section */
.footer-contact .contact-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .contact-item i {
    font-size: 12px;
}

.footer-contact .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* LINE campaign section */
.footer-line h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-line h3 img {
    height: 20px;
    width: auto;
}

.footer-line p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.qr-placeholder {
    width: 96px;
    height: 96px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Store info section */
.footer-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-info .info-item i {
    margin-top: 0.25rem;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    font-size: 20px;
    z-index: 999;
    transition: opacity 0.3s, background 0.3s;
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

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

/* Responsive styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

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

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .site-header {
        padding: 1rem 2rem;
    }

    .section-menu,
    .section-staff,
    .section-style,
    .section-access {
        padding: 0 1rem;
    }

    .hero-wrapper,
    .about-wrapper {
        padding: 2rem;
    }

    .hero-section {
        height: calc(100vh - 4rem);
    }

    .section-news {
        padding: 0 2rem;
    }

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

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

    .about-content {
        order: 1;  /* Put content first */
    }
    
    .about-image {
        order: 2;  /* Put image second */
    }

    .menu-content {
        column-count: 1;
        column-gap: 3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Top level mobile */

    main {
        gap: 2rem;
    }

    /* Header mobile styles */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        position: relative;
        -webkit-tap-highlight-color: transparent; /* Removes tap highlight on iOS */
    }

    .mobile-menu-toggle i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease, transform 0.3s ease;
        font-size: 24px;
        color: #000; /* Explicit color */
        -webkit-text-fill-color: #000; /* Forces color on iOS */
    }

    /* Ensure no color change on touch */
    .mobile-menu-toggle:active i,
    .mobile-menu-toggle:focus i {
        color: #000;
        -webkit-text-fill-color: #000;
    }

    .mobile-menu-toggle .fa-xmark {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    
    .mobile-menu-toggle .fa-bars {
        opacity: 1;
    }
    
    /* Active state animations */
    .mobile-menu-toggle.active .fa-xmark {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0);
    }
    
    .mobile-menu-toggle.active .fa-bars {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(90deg);
    }

/* Style the mobile navigation base state */
@media (max-width: 768px) {
    .main-navigation {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    /* Active state */
    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-navigation a {
        display: block;
        padding: 1rem;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Animate each menu item with a slight delay */
    .main-navigation.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Add staggered delays to each menu item */
    .main-navigation.active a:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.active a:nth-child(2) { transition-delay: 0.2s; }
    .main-navigation.active a:nth-child(3) { transition-delay: 0.3s; }
    .main-navigation.active a:nth-child(4) { transition-delay: 0.4s; }
    .main-navigation.active a:nth-child(5) { transition-delay: 0.5s; }
    .main-navigation.active a:nth-child(6) { transition-delay: 0.6s; }
}

    /* Hero section mobile */
    .hero-wrapper,
    .about-wrapper {
        padding: 1rem;
    }

    .hero-wrapper {
        padding: 2rem;
    }

    .hero-section {
        height: calc(100vh - 2rem);
    }

    .scroll-down {
        width: 100px;
        height: 100px;
        bottom: -50px;
        gap: 4px;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 28px;
    }

    .section-number {
        font-size: 20px;
    }

    /* About section mobile */

    .about-wrapper {
        padding: 32px 16px;
    }

    .section-about {
        padding: 0;
    }

    .about-header h2 {
        margin: 0;
    }

    /* News */

    .section-news {
        padding: 0 1rem;
    }
    
    .news-header h2 {
        font-size: 28px;
    }

    .news-content, .event-content {
        padding: 2rem 0;
    }

    .news-content h3, .event-content h3 {
        margin-bottom: 1.5rem;
        margin-left: 0;
    }

    .event-item, .news-item {
        margin-left: 0;
    }

    /* Staff section mobile */
    .staff-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        padding: 0;
    }

    .staff-member {
        width: 100%;
        margin-bottom: 4rem;
        margin: 0;
    }

    .staff-member img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .staff-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .staff-info {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    /* Menu */

    .menu-content {
        padding: 0;
    }

    /* Style gallery */
    .style-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
    }
    
    .style-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    /* Access section */
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .site-header {
        padding: 1rem;
    }

    .logo {
        width: 80px;
    }

    .hero-wrapper {
        padding: 1rem;
    }

    .main-logo {
/*         max-width: 120px; */
    }

    .booking-button {
        padding: 0.75rem 1.5rem;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
    }

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