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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Hero Section */
.hero {
    background: url('images/logo.JPG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 50vh;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    padding: 2rem;
}

/* Slideshow Section */
.slideshow-section {
    background: transparent;
    padding: 3rem 0;
}

@media (min-width: 769px) {
    .slideshow-section .container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .slideshow-section .slideshow-container {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .slideshow-section .slide-image {
        border-radius: 12px !important;
    }
}

@media (max-width: 768px) {
    .slideshow-section {
        padding: 0 !important;
    }
}

.slideshow-section .slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
}


.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slideshow-section .placeholder-image {
    height: 400px;
    font-size: 1.8rem;
    background: transparent;
    box-shadow: none;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.google-reviews {
    margin-top: 2rem;
    text-align: center;
    background: transparent;
}

.google-reviews iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #20b2aa;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #fff;
    min-width: 140px;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    background: #f8f9fa;
    color: #20b2aa;
}

.cta-button-secondary {
    background: #fff;
    color: #20b2aa;
    border: 2px solid #fff;
}

.cta-button-secondary:hover,
.cta-button-secondary:focus {
    background: #f8f9fa;
    color: #20b2aa;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Menu Section */
.menu {
    background: #f8f9fa;
}

.menu-image-container {
    text-align: center;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 80vh;
}

.menu-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: top;
}

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

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

.menu-category h3 {
    color: #20b2aa;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #20b2aa;
    padding-bottom: 0.5rem;
}

.category-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
}

.category-header:hover {
    background: rgba(32, 178, 170, 0.1);
}

.category-header.active {
    background: rgba(32, 178, 170, 0.15);
}

.category-toggle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #20b2aa;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.category-header.active .category-toggle {
    transform: rotate(0deg);
}

.menu-items {
    display: grid;
    gap: 1rem;
}

.menu-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.menu-item-description {
    color: #666;
    margin-bottom: 0.5rem;
}

.menu-item-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-vegan {
    background: #e8f5e8;
    color: #2d5a2d;
}

.badge-spicy {
    background: #ffe8e8;
    color: #8b0000;
}

.menu-item-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #20b2aa;
    white-space: nowrap;
}

.allergen-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Slideshow Section */
.slideshow {
    background: #f8f9fa;
    padding: 3rem 0;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    height: auto;
    aspect-ratio: 16/9;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    border-radius: 12px;
}

.placeholder-image {
    width: 100%;
    height: 500px;
    background: #666;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(32, 178, 170, 0.9);
    color: white;
    border: none;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background: rgba(32, 178, 170, 1);
    transform: translateY(-50%) scale(1.1);
}


.dots {
    text-align: center;
    margin-top: 20px;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #20b2aa;
}

/* Hours Section */
.hours {
    background: #fff;
}

.hours-table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-collapse: collapse;
}

.hours-table th,
.hours-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.hours-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #20b2aa;
}

/* Location Section */
.location {
    background: #f8f9fa;
}

.location-content {
    display: grid;
    gap: 2rem;
    background: transparent;
}

.address {
    text-align: center;
}

.address h3 {
    color: #20b2aa;
    margin-bottom: 1rem;
}

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

.address a {
    color: #20b2aa;
    text-decoration: none;
}

.address a:hover,
.address a:focus {
    text-decoration: underline;
    outline: 2px solid #20b2aa;
    outline-offset: 2px;
}

.map-button {
    display: inline-block;
    background: #20b2aa;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.map-button:hover,
.map-button:focus {
    background: #1a9b94;
    color: #fff !important;
    transform: translateY(-2px);
    outline: 2px solid #20b2aa;
    outline-offset: 2px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
}

/* About Section */
.about {
    background: #fff;
}

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

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Privacy Section */
.privacy {
    background: #f8f9fa;
}

.privacy-toggle {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.privacy-toggle:hover {
    color: #20b2aa;
}

.privacy-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}


.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    transition: all 0.3s ease;
}

.privacy-content h3 {
    color: #20b2aa;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-content a {
    color: #20b2aa;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-info h3 {
    color: #20b2aa;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: lightblue;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #20b2aa;
    outline: 2px solid #20b2aa;
    outline-offset: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .hero {
        min-height: 60vh;
        padding: 2rem 0 0 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
    
    .slideshow-section {
        background: transparent;
        padding: 0;
        margin-top: 0;
    }
    
    .slideshow-section .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .slideshow-section .slideshow-container {
        border-radius: 0;
        max-width: 100%;
        margin-top: 0;
    }
    
    .slideshow-section .slide-image {
        border-radius: 0 !important;
    }
    
    .slideshow-container {
        aspect-ratio: 4/3;
        background: #000;
    }
    
    .slideshow-section .placeholder-image {
        height: 250px;
        font-size: 1.2rem;
        background: transparent;
        box-shadow: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-item-price {
        align-self: flex-end;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .location-content {
        grid-template-columns: 1fr;
    }
    
    .menu-image-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slide-image {
        height: 100%;
    }
    
    .placeholder-image {
        height: 300px;
        font-size: 1.5rem;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        padding: 10px;
        font-size: 16px;
    }
    
    .prev {
        left: 5px;
    }
    
    .next {
        right: 5px;
    }
}

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

    .hero {
        padding: 2rem 0;
    }

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

    section {
        padding: 2rem 0;
    }

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

/* Focus Styles */
*:focus {
    outline: 2px solid #20b2aa;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #20b2aa;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Map Placeholder Styles */
.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.map-placeholder.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.map-placeholder:hover {
    border-color: #20b2aa;
    background: #f0fdfa;
}

.map-placeholder-content {
    max-width: 400px;
    padding: 2rem;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.map-consent-button {
    background: #20b2aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.map-consent-button:hover {
    background: #1a9b94;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.map-consent-button:active {
    transform: translateY(0);
}

.privacy-note {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.privacy-note a {
    color: #20b2aa;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

#map-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    background: transparent;
    border: none;
}

@media (max-width: 768px) {
    #map-container {
        box-shadow: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
    }
}

#google-maps-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 8px;
    display: block;
}

/* Mobile Map Styles */
@media (max-width: 768px) {
    .location {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .location .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .location-content {
        gap: 0 !important;
        background: transparent !important;
    }
    
    .address {
        padding: 0 1rem;
        margin-bottom: 2rem;
        background: #f8f9fa;
    }
    
    .google-reviews {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        background: transparent !important;
        position: relative;
        overflow: hidden;
    }
    
    .map-placeholder {
        height: 600px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
    }
    
    #map-container {
        height: 600px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        width: 100% !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative;
        overflow: hidden;
    }
    
    #google-maps-iframe {
        border-radius: 0 !important;
        width: 100% !important;
        height: 600px !important;
        display: block !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .google-reviews iframe {
        border-radius: 0 !important;
        box-shadow: none !important;
        height: 600px !important;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 500px !important;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    
    #map-container {
        height: 500px !important;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }
    
    #google-maps-iframe {
        height: 500px !important;
    }
}
