:root {
    --maru-red: #b5121b;
    --maru-black: #0d0d0d;
    --maru-wood: #cfa87b;
    --cream: #f6f2eb;
    --text-dark: #1e1a19;
    --text-muted: #6b6460;
    --card: #ffffff;
    --border: #e7e1d8;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Manrope', 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--maru-red);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--maru-red);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 1000;
    color: #fff;
    background: var(--maru-red);
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
}

/* Navbar */
.navbar {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    transition: var(--transition);
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.brand-name {
    display: block;
    color: #fff;
    font-size: 1.05rem;
}

.brand-subtitle {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.08em;
}

.brand-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.brand-logo-lg {
    height: 64px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    padding: 8px 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--maru-red);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 9px 18px;
    border-radius: 10px;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(120deg, rgba(11,11,11,0.85), rgba(181,18,27,0.75)), url('../images/hero-bg.jpg') center/cover fixed;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(207,168,123,0.15), transparent 30%),
                radial-gradient(circle at 80% 60%, rgba(181,18,27,0.2), transparent 35%);
}

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

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

.hero-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 0.9rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95rem;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
}

.hero-card {
    background: rgba(13,13,13,0.75);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 20px;
    color: #fff;
}

.hero-card-list li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

/* Story */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

.story-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(13,13,13,0.85);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.pill-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pill-card i {
    color: var(--maru-red);
    font-size: 1.3rem;
    margin-top: 4px;
}

/* Menu */
.nav-pills .nav-link {
    color: var(--text-dark);
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 6px;
    font-weight: 700;
    border: 1px solid var(--border);
}

.nav-pills .nav-link.active {
    background: var(--maru-red);
    color: #fff;
    border-color: var(--maru-red);
    box-shadow: 0 8px 24px rgba(181,18,27,0.25);
}

.tab-content {
    min-height: 360px;
}

.menu-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
    border-color: rgba(181,18,27,0.35);
}

.badge.price {
    background: rgba(181,18,27,0.12);
    color: var(--maru-red);
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(13,13,13,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Experience */
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.feature-card i {
    color: var(--maru-red);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13,13,13,0.06);
    font-weight: 600;
}

/* Reviews */
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--maru-red), #ff644f);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.stars i {
    color: #f5b400;
    margin-right: 2px;
}

/* Visit */
.info-list {
    display: grid;
    gap: 14px;
    margin: 20px 0;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item i {
    color: var(--maru-red);
    font-size: 1.1rem;
    margin-top: 2px;
}

.map-container iframe {
    border-radius: 14px;
}

/* Reserve */
.reserve-section {
    background: radial-gradient(circle at 20% 20%, rgba(207,168,123,0.18), rgba(13,13,13,0)),
                linear-gradient(120deg, #1a0506, #250708 60%, #2f090c);
}

.reserve-section .card {
    border-radius: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--maru-red);
    box-shadow: 0 0 0 0.2rem rgba(181,18,27,0.2);
}

.invalid-feedback {
    display: none;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
    display: block;
}

/* Footer */
.footer {
    background: var(--maru-black);
    color: #fff;
    padding: 60px 0 30px;
}

.footer h6,
.footer h5 {
    color: #fff;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--maru-red);
}

.footer .link-light {
    color: rgba(255,255,255,0.8);
}

.footer .link-light:hover {
    color: #fff;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--maru-red), #8a0d15);
    border: none;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(181,18,27,0.35);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    border-radius: 12px;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

.btn-outline-dark {
    border-radius: 12px;
}

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--maru-red);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #8a0d15;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(26px);} to { opacity: 1; transform: translateY(0);} }

.animate-fade-in { animation: fadeIn 0.8s ease; }
.animate-fade-in-delay { animation: fadeIn 0.8s ease 0.2s backwards; }
.animate-fade-in-delay-2 { animation: fadeIn 0.8s ease 0.4s backwards; }

section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section#home {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
    }
    .navbar-nav .nav-link {
        margin: 6px 0;
    }
    .hero-section {
        background-attachment: scroll;
    }
    .hero-card {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .section-title { font-size: 2rem; }
    .hero-points span { width: 100%; }
    .hero-section { min-height: 90vh; }
    .section-padding { padding: 60px 0; }
    .navbar { padding: 10px 0; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #8b7355;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/hero-bg.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #c19d2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section#home {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image-wrapper img {
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.why-choose-list i {
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Menu Section */
.nav-pills .nav-link {
    color: var(--text-dark);
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-pills .nav-link:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-pane.active {
    opacity: 1;
}

.menu-card {
    border: none;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    will-change: transform;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-card .badge {
    font-size: 1rem;
    padding: 8px 15px;
    background: var(--primary-color);
}

/* Gallery Section */
.carousel-img {
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-caption {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ffffff;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Contact Section */
.contact-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info .text-muted {
    margin-bottom: 0;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.invalid-feedback {
    display: none;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
    display: block;
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-img {
        height: 300px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto !important;
        width: 100%;
        max-width: 250px;
    }
}
