*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0c0c0c;
    color: #ffffff;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #333;
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: #ffc107;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 600;
    font-size: 18px;
}

.brand-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f5c842;
}

.navbar {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 14px;
}

.navbar a {
    position: relative;
    padding-bottom: 4px;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.25s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.btn-small {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #ffcc00;
    font-weight: 500;
}

/* Hero */

.hero {
    position: relative;
    min-height: 82vh;
    background-image: url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.35), transparent 55%),
                linear-gradient(to bottom right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
    gap: 32px;
    padding: 72px 16px 56px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-text p {
    max-width: 520px;
    color: #f8f8f8;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.hero-meta {
    font-size: 13px;
    color: #f5c842;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ffcc00, #ffb300);
    color: #111;
}

.btn-outline {
    background: transparent;
    border: 1px solid #666;
    color: #f8f8f8;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-outline:hover {
    border-color: #ffcc00;
}

/* Hero card */

.hero-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 18px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.hero-card h2 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #ffea80;
}

.hero-card-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-card-text {
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.hero-list {
    list-style: none;
    font-size: 13px;
    display: grid;
    gap: 4px;
}

.hero-list li::before {
    content: "•";
    color: #ffcc00;
    margin-right: 6px;
}

/* Sections */

.section {
    padding: 72px 0;
    background: #0c0c0c;
}

.section-alt {
    background: #111111;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f5c842;
    margin-bottom: 6px;
}

.section-heading h2 {
    font-size: 26px;
    margin-bottom: 6px;
}

.section-heading p {
    max-width: 560px;
    margin: 0 auto;
    color: #cccccc;
}

/* Split layout */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
    gap: 32px;
    align-items: center;
}

.split-text p {
    color: #d9d9d9;
    margin-bottom: 12px;
}

.split-text h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.split-media .image-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* Menu */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.menu-card {
    background: #171717;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #252525;
    display: flex;
    flex-direction: column;
}

.menu-image {
    height: 180px;
    object-fit: cover;
}

.menu-body {
    padding: 14px 14px 16px;
}

.menu-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.menu-body p {
    font-size: 14px;
    color: #d0d0d0;
}

.menu-price {
    margin-top: 8px;
    font-weight: 500;
    color: #ffcc00;
}

.only-text {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-list {
    list-style: none;
    margin: 8px 0 10px;
    padding-left: 0;
}

.menu-list li {
    font-size: 14px;
}

.menu-list li::before {
    content: "•";
    color: #ffcc00;
    margin-right: 6px;
}

.menu-note {
    font-size: 12px;
    color: #aaaaaa;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 16px;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #262626;
}

.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Visit section */

.visit-section .map-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #262626;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
    min-height: 260px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.visit-note {
    font-size: 13px;
    color: #cccccc;
    margin-top: 8px;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    gap: 30px;
    align-items: flex-start;
}

.contact-form {
    background: #171717;
    border-radius: 18px;
    padding: 20px 18px;
    border: 1px solid #262626;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

label {
    font-size: 13px;
}

input,
textarea {
    background: #111111;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 8px 10px;
    color: #ffffff;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #ffcc00;
}

textarea {
    resize: vertical;
}

.form-small {
    font-size: 11px;
    color: #aaaaaa;
    margin-top: 6px;
}

.contact-side h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.hours-list {
    list-style: none;
    font-size: 14px;
    margin-bottom: 16px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.social-links a {
    font-size: 14px;
    color: #ffcc00;
}

/* Footer */

.site-footer {
    background: #050505;
    border-top: 1px solid #1f1f1f;
    padding: 18px 0 22px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #bbbbbb;
}

.footer-powered {
    color: #777777;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .split,
    .menu-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-item.tall {
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .navbar {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
        text-align: center;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-inner {
        padding-top: 56px;
    }

    .section {
        padding: 56px 0;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-meta a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
}

.hero-meta a:hover {
    text-decoration: underline;
}


/* Instagram button */
.btn-instagram {
    border-color: #ffcc00;
    color: #ffcc00;
    font-weight: 500;
    white-space: nowrap;
}

.btn-instagram:hover {
    background: #ffcc00;
    color: #111111;
}
