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

:root {
    --primary-red: #D32F2F;
    --dark-red: #B71C1C;
    --accent-orange: #FF6B35;
    --dark-bg: #1A1A1A;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray: #757575;
    --light-gray: #F5F5F5;
    --border: #E0E0E0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: block;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-red);
}

.header-cta {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

/* ================================================ */
/* NOTICE BAR - COMPLETE FIXED VERSION */
/* ================================================ */

.notice-bar {
    background: var(--primary-red);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    height: 44px;
    display: flex;
    align-items: center;
}

.notice-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-marquee 45s linear infinite;
}

.notice-text {
    display: inline-block;
    padding-right: 200px;
}

.notice-text a {
    color: white !important;
    text-decoration: none !important;
}

@keyframes scroll-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.header {
    top: 44px;
}

.hero {
    padding-top: 158px;
}

@media (max-width: 768px) {
    .notice-bar {
        font-size: 12px;
        padding: 8px 0;
        height: 36px;
    }
    
    .notice-content {
        animation: scroll-marquee 40s linear infinite;
    }
    
    .notice-text {
        padding-right: 150px;
    }
    
    .header {
        top: 36px;
    }
    
    .hero {
        padding-top: 146px;
    }
}

@media (max-width: 480px) {
    .notice-bar {
        font-size: 11px;
        height: 34px;
    }
    
    .notice-content {
        animation: scroll-marquee 35s linear infinite;
    }
    
    .notice-text {
        padding-right: 120px;
    }
    
    .header {
        top: 34px;
    }
    
    .hero {
        padding-top: 144px;
    }
}

/* Adjust header and hero */
.header {
    top: 44px;
}

.hero {
    padding-top: 158px;
}

   /* Adjust header and hero */
   .header {
       top: 44px;
   }

   .hero {
       padding-top: 158px;
   }

/* Hero */
.hero {
    margin-top: 70px;
    background: #DC3545;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-white {
    background: white;
    color: var(--primary-red);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-sushi-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    overflow: hidden;
}

.hero-sushi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features */

/* About */
.about {
    padding: 100px 0;
}

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

.about-image-wrapper {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.section-label {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-points {
    margin: 30px 0;
}

.point {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.point-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-text {
    color: #333;
    font-size: 15px;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: #0d0d0d;
    color: white;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-header .section-label {
    color: var(--accent-orange);
}

.menu-header .section-title {
    color: white;
    font-size: 48px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #2a2a2a;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: #444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-card-image {
    width: 100%;
    height: 220px;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-content {
    padding: 30px 25px;
}

.menu-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.menu-card-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
}

/* Reservations */
.reservations {
    padding: 100px 0;
    background: var(--cream);
}

.reservation-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.reservation-wrapper .section-label {
    text-align: center;
}

.reservation-intro {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 50px;
}

.reservation-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.required {
    color: var(--primary-red);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-input.error,
.form-select.error {
    border-color: var(--primary-red);
}

.error-message {
    color: var(--primary-red);
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin: 25px 0;
}

.form-note a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover:not(:disabled) {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.sending {
    display: block;
    background: #FFF3CD;
    color: #856404;
}

.form-status.success {
    display: block;
    background: #D4EDDA;
    color: #155724;
}

.form-status.error {
    display: block;
    background: #F8D7DA;
    color: #721C24;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 35px;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #2a2a2a;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        gap: 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 35px 25px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* ================================================ */
/* WHATSAPP FLOATING CHAT BUTTON                     */
/* ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 10px 22px 10px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon-circle svg {
    width: 22px;
    height: 22px;
}

.whatsapp-text {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        padding: 8px 18px 8px 8px;
        gap: 8px;
    }
    .whatsapp-icon-circle {
        width: 32px;
        height: 32px;
    }
    .whatsapp-icon-circle svg {
        width: 19px;
        height: 19px;
    }
    .whatsapp-text {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .whatsapp-float {
        padding: 7px 14px 7px 7px;
    }
    .whatsapp-text {
        font-size: 13px;
    }
}
