/* Fonts */
@font-face {
    font-family: 'Girock';
    src: url('font/Girock.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .section-title, .menu-tab, .navbar a, button {
    font-family: 'Girock', sans-serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background-color: #282828;
    border-radius: 30px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: padding 0.3s ease;
}

.nav-left, .nav-right {
    display: flex;
    gap: 35px;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: opacity 0.3s ease;
    position: relative;
}

.navbar a:hover {
    opacity: 0.7;
}

.nav-center {
    flex: 0;
}

.main-logo {
    height: 60px;
    width: auto;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    background-color: #f5f5f5;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #282828;
}

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

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: #282828;
    color: white;
    text-align: center;
}

.about-logo {
    width: 250px;
    height: auto;
    margin: 0 auto 60px;
}

.brand-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.85;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Titles */
.section-title {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 4px;
    color: #282828;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #777;
}

/* Menu Section */
.menu-section {
    padding: 120px 0;
    background-color: #f5f5f5;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #282828;
    color: #282828;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.menu-tab:hover, .menu-tab.active {
    background-color: #282828;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Center items when 3 or fewer */
.menu-grid:has(.menu-item:nth-child(1):nth-last-child(-n+3)) {
    justify-content: center;
}

.menu-grid .menu-item {
    width: 100%;
    max-width: 350px;
    justify-self: stretch;
}

.menu-item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.menu-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.menu-item-content {
    padding: 25px;
}

.menu-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #282828;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.menu-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
}

.menu-item .price {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #282828;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Order Section */
.order-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.delivery-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.delivery-card:hover {
    transform: scale(1.05);
}

.delivery-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.social-follow {
    text-align: center;
    margin-top: 100px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-follow h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #282828;
}

.social-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: #282828;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Girock', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.instagram-btn svg {
    fill: white;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background-color: #f5f5f5;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.review-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: block;
    font-size: 14px;
    color: #282828;
    font-weight: bold;
    text-align: right;
}

/* Location Section */
.location-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #282828;
}

.info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.info-card a {
    color: #282828;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    opacity: 0.7;
}

.directions-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #282828;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-align: center;
}

.directions-btn:hover {
    transform: scale(1.05);
}

.map-wrapper {
    width: 100%;
    height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
}

.contact-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-wrapper .section-title {
    text-align: left;
    font-size: 48px;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #282828;
}

.submit-btn {
    padding: 15px 40px;
    background-color: #282828;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #999;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col ul li {
    color: #999;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-left, .nav-right {
        gap: 20px;
    }

    .navbar a {
        font-size: 13px;
    }

    .main-logo {
        height: 50px;
    }

    .section-title {
        font-size: 42px;
    }

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

    .contact-form-wrapper .section-title {
        text-align: center;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-mascot {
        order: 1;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .mascot {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        position: fixed;
        top: 10px;
        width: 96%;
        padding: 15px 20px;
        border-radius: 20px;
    }

    .nav-left, .nav-right {
        gap: 12px;
    }

    .navbar a {
        font-size: 11px;
    }

    .main-logo {
        height: 40px;
    }

    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .scroll-indicator p {
        font-size: 14px;
    }

    /* Section spacing */
    .about-section,
    .menu-section,
    .order-section,
    .reviews-section,
    .location-section,
    .contact-section {
        padding: 80px 0;
    }

    /* Titles */
    .section-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* About */
    .about-logo {
        width: 160px;
        margin-bottom: 40px;
    }

    .brand-description {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Menu */
    .menu-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }

    .menu-tab {
        padding: 10px 20px;
        font-size: 12px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu-grid .menu-item {
        max-width: 100%;
    }

    .menu-item img {
        height: 250px;
    }

    .menu-item-content {
        padding: 20px;
    }

    .menu-item h3 {
        font-size: 17px;
    }

    .menu-item p {
        font-size: 13px;
    }

    .menu-item .price {
        font-size: 18px;
    }

    /* Delivery */
    .delivery-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .delivery-card img {
        width: 80px;
        height: 80px;
    }

    .social-follow {
        margin-top: 60px;
    }

    .social-follow h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .social-description {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .instagram-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .instagram-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-card {
        padding: 30px;
    }

    .stars {
        font-size: 20px;
    }

    .review-card p {
        font-size: 15px;
    }

    /* Location */
    .location-grid {
        gap: 40px;
    }

    .map-wrapper {
        height: 350px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 15px;
    }

    .directions-btn {
        width: 100%;
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        gap: 40px;
    }

    .contact-mascot {
        display: none;
    }

    .contact-form-wrapper .section-title {
        text-align: center;
        font-size: 32px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        gap: 30px 25px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 12px;
        width: 110px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-col ul li,
    .footer-col p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding-top: 30px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 11px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .navbar {
        top: 8px;
        width: 94%;
        padding: 12px 15px;
        border-radius: 15px;
    }

    .navbar a {
        font-size: 10px;
    }

    .nav-left, .nav-right {
        gap: 8px;
    }

    .main-logo {
        height: 35px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .about-logo {
        width: 140px;
    }

    .brand-description {
        font-size: 15px;
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 10px;
    }

    .menu-item img {
        height: 200px;
    }

    .delivery-platforms {
        gap: 15px;
    }

    .delivery-card img {
        width: 70px;
        height: 70px;
    }

    .social-follow h3 {
        font-size: 20px;
    }

    .social-description {
        font-size: 13px;
        padding: 0 5px;
    }

    .instagram-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .instagram-btn svg {
        width: 20px;
        height: 20px;
    }

    .contact-form-wrapper .section-title {
        font-size: 28px;
    }

    .submit-btn {
        padding: 12px 35px;
        font-size: 15px;
    }
}
