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

:root {
    --brown: #3E2723;
    --brown-dark: #2C1A12;
    --blue: #1565C0;
    --blue-dark: #0D47A1;
    --blue-light: #1E88E5;
    --orange: #E65100;
    --orange-light: #FF8F00;
    --yellow: #FFB300;
    --cream: #FFF8E1;
    --cream-dark: #F5E6C8;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #222;
    background: var(--cream);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(44, 26, 18, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--orange);
}

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

.nav-logo img {
    height: 52px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
    border-radius: 5px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    background: var(--orange);
    color: var(--white);
}

.nav-links a.reserve-btn {
    background: var(--orange);
    color: var(--white);
}

.nav-links a.reserve-btn:hover {
    background: var(--orange-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--cream);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--brown-dark) 0%, #3a2218 45%, var(--blue-dark) 100%);
    overflow: hidden;
}

#waveCanvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    display: block;
    z-index: 1;
}

.hero-scene {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 7rem 2rem 13rem;
}

.wheel-wrap {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

#shipWheel {
    width: auto;
    height: auto;
    opacity: 0.80; /* fully visible */
    object-fit: contain; /* optional */
    filter: drop-shadow(0 0 40px rgba(255,179,0,0.15));
    transform-origin: center center;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    width: 100%;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
    display: block;
    color: var(--yellow);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,248,225,0.75);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.2rem;
}

.hero-tagline span {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,248,225,0.9);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.hero-tagline span:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(230,81,0,0.35);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,81,0,0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--brown);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: var(--yellow);
}

.stars .half-star {
    fill: rgba(255,179,0,0.4);
}

.hero-rating span {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 600;
}

section {
    padding: 5rem 2rem;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--brown);
}

.section-header .underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    margin: 0.8rem auto 1rem;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.about {
    background: var(--cream);
}

.about-text {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

.about-text strong {
    color: var(--brown);
}

.about-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.about-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.icon-circle img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.icon-circle svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.icon-circle--more {
    background: linear-gradient(135deg, var(--brown), var(--brown-dark));
}

.about-card:hover .icon-circle {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.about-card p {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.6;
}

.menu-section {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 5rem 2rem;
    text-align: center;
}

.menu-inner {
    max-width: 640px;
    margin: 0 auto;
}

.menu-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.menu-inner p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hours {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    position: relative;
    overflow: hidden;
}

.hours .section-header h2 {
    color: var(--cream);
}

.hours .section-header p {
    color: rgba(255,255,255,0.6);
}

.hours-wrap {
    max-width: 540px;
    margin: 0 auto;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s ease;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table tr:hover {
    background: rgba(255,255,255,0.05);
}

.hours-table td {
    padding: 1.1rem 1.5rem;
    font-size: 0.98rem;
    color: var(--cream);
}

.hours-table td:first-child {
    font-weight: 700;
    color: var(--yellow);
}

.hours-table td:last-child {
    text-align: right;
}

.reserve {
    background: var(--cream);
    text-align: center;
}

.reserve-notice {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    background: #fff3e0;
    border: 2px solid var(--orange);
    border-radius: 8px;
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.reserve-notice svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.reserve-notice p {
    font-size: 0.95rem;
    color: var(--brown);
    line-height: 1.6;
}

.reserve-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.reserve-call p {
    font-size: 1.05rem;
    color: #555;
}

.phone-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 1;
    transition: color 0.25s ease;
}

.phone-link:hover {
    color: var(--orange);
}

.location {
    background: var(--white);
}

.location-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    transform: scale(1.06);
}

.info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--brown);
    margin-bottom: 0.2rem;
}

.info-item p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
}

.info-item a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.info-item a:hover {
    color: var(--orange);
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 380px;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

footer {
    background: var(--brown-dark);
    padding: 4rem 2rem 0;
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--yellow);
    margin-bottom: 1.1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.9;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding: 1.3rem 2rem;
    color: rgba(255,255,255,0.28);
    font-size: 0.8rem;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .wheel-wrap {
        width: 1700px;
        height: 1700px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 62%;
        height: 100vh;
        background: var(--brown-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.4rem;
        transition: right 0.35s ease;
        border-left: 2px solid var(--orange);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-scene {
        padding-bottom: 16rem;
    }

    .wheel-wrap {
        width: 340px;
        height: 340px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

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

    .menu-inner h2 {
        font-size: 1.9rem;
    }

    .hours-table td {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .reserve-notice {
        flex-direction: column;
        text-align: center;
    }

    .phone-link {
        font-size: 2.1rem;
    }

    .location-map {
        min-height: 280px;
    }

    .location-map iframe {
        min-height: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .wheel-wrap {
        width: 260px;
        height: 260px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

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

    .phone-link {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .hero-rating {
        flex-direction: column;
        gap: 0.3rem;
    }
}
