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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
    letter-spacing: 0.05em;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
    letter-spacing: 0.05em;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-list a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    position: relative;
}

.menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.menu-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-list a.active::after {
    transform: scaleX(1);
}

.menu-list a:hover {
    color: var(--accent-color);
}

.language-buttons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(44, 62, 80, 0.1);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/1f_front.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        2px 2px 8px rgba(0, 0, 0, 0.9),
        -2px -2px 8px rgba(0, 0, 0, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 100px 20px;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse>* {
    direction: ltr;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-content img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn i {
    margin-right: 0.5rem;
}

/* Specific Sections */
.section-hotel {
    background: var(--white);
}

.section-emc {
    background: var(--light-bg);
}

.section-shop {
    background: var(--white);
}

.section-cafe {
    background: var(--light-bg);
}

.cafe-image {
    margin-top: 2rem;
}

.cafe-image img {
    width: 100%;
    border-radius: 8px;
}

.section-experience {
    background: var(--white);
}

/* Reserve Section */
.section-reserve {
    background: var(--light-bg);
    text-align: center;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.booking-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-icon {
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 10px;
}

.card-icon img {
    max-height: 100%;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-card p {
    margin-bottom: 1rem;
    min-height: 80px;
}

.rating {
    color: #f39c12;
    margin: 1rem 0;
}

.rating i {
    margin-right: 2px;
}

.rating p {
    margin-top: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Direct Booking Section */
.direct-booking-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0 4rem 0;
    position: relative;
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.3);
    overflow: hidden;
}

.direct-booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.direct-booking-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #3498db;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.direct-booking-badge i {
    margin-right: 6px;
}

.direct-booking-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.direct-booking-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.direct-booking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direct-booking-features span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.direct-booking-features i {
    color: #66bb6a;
    font-size: 1.1rem;
}

.btn-calendar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #3498db;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.btn-calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
}

.btn-calendar i {
    font-size: 1.2rem;
}

.other-platforms-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 3rem 0 2rem 0;
    font-weight: 400;
    position: relative;
}

.other-platforms-title::before,
.other-platforms-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.other-platforms-title::before {
    left: 0;
}

.other-platforms-title::after {
    right: 0;
}

@media (max-width: 968px) {
    .direct-booking-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .direct-booking-features {
        justify-content: center;
    }

    .direct-booking-cta {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .direct-booking-section {
        padding: 2rem 1.5rem;
    }

    .direct-booking-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .direct-booking-text p {
        font-size: 1.1rem;
    }

    .btn-calendar {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .direct-booking-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .other-platforms-title::before,
    .other-platforms-title::after {
        width: 20%;
    }
}

/* Message Section */
.section-message {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.founder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.4);
    transition: transform 0.3s ease;
}

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

.founder-content {
    text-align: left;
}

.section-message h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-message h2::after {
    left: 0;
    transform: none;
}

.founder-name {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.founder-name span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive for founder section */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        gap: 2rem;
    }

    .founder-image img {
        width: 220px;
        height: 220px;
    }

    .founder-content {
        text-align: center;
    }

    .section-message h2 {
        text-align: center;
    }

    .section-message h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


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

.site-footer .container {
    padding-left: 0;
    padding-right: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 100%;
    margin: 0;
}

.footer-section {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 0;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: var(--accent-color);
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background: #2980b9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    .menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .menu-list.active {
        display: flex;
    }

    .section-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .booking-cards {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 20px;
    }

    .highlight-image {
        flex: none;
        width: 100%;
        min-height: 250px;
        height: 250px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-rooms {
        padding-left: 0;
        padding-right: 0;
    }

    .section-rooms .container {
        padding: 0;
    }

    .section-rooms .section-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .location-content {
        padding: 2rem 20px;
    }
}

/* New Hotel Page Styles */
/* Page Hero */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hotel-hero {
    background-image: url('../images/hotel_top.jpg');
}

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

.page-hero .hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    /* Assuming you might add this font, or fallback to serif */
}

.page-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.text-center {
    text-align: center;
}

/* Concept Section */
.concept-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2.2;
    color: #444;
}

.concept-content p {
    margin-bottom: 2rem;
}

/* Highlights Section */
.section-highlights {
    padding-left: 0;
    padding-right: 0;
}

.section-highlights .container {
    padding-left: 0;
    padding-right: 0;
}

.section-highlights .section-header {
    padding-left: 20px;
    padding-right: 20px;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 100%;
    margin: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.highlight-item.reverse {
    flex-direction: row-reverse;
}

.highlight-image {
    flex: 1;
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.highlight-text {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}

.highlight-number {
    font-size: 4rem;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.highlight-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.highlight-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .section-highlights .section-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .highlight-item {
        flex-direction: column;
        gap: 2rem;
    }

    .highlight-item.reverse {
        flex-direction: column;
    }

    .highlight-image {
        flex: none;
        width: 100%;
        min-height: 300px;
        height: 300px;
    }

    .highlight-image img {
        height: 300px;
        border-radius: 0;
    }

    .highlight-text {
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Media & SNS Section */
.media-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sns-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.topic {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.topic h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.topic p {
    font-size: 0.95rem;
    color: #555;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
    margin: 0;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: #f0f0f0;
    font-family: serif;
}

.stars {
    color: #d4af37;
    /* Gold color */
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.review-card cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-card p {
    font-style: italic;
    color: #555;
}

/* Google Review Specific Styles */
.review-card.google-review {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-source {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.review-time {
    font-size: 0.8rem;
    color: #999;
}

/* Reviews CTA Button */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    background: #ffffff;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.btn-secondary i {
    font-size: 1.2em;
}


/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.room-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.room-details {
    padding: 2rem;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.room-specs li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.room-specs i {
    color: var(--accent-color);
    width: 25px;
    margin-right: 0.8rem;
    margin-top: 4px;
}

/* Location Section */
.section-location {
    padding-left: 0;
    padding-right: 0;
}

.section-location .container {
    padding-left: 0;
    padding-right: 0;
}

.section-location .section-header {
    padding-left: 20px;
    padding-right: 20px;
}

.location-content {
    max-width: 100%;
    margin: 0;
    background: #fff;
    padding: 3rem 40px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.access-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start hidden, animation will reveal */
    animation-delay: 0.2s;
    /* Slight delay */
}

/* Ensure hero is always visible */
.page-hero {
    opacity: 1;
    animation: none;
}

/* Coffee Page Styles */
.cafe-hero {
    background-image: url('../images/cafe.webp');
}

.bg-light {
    background-color: var(--light-bg);
}

/* Menu Section */
.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-category h3 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.category-desc {
    margin-bottom: 2rem;
    color: #666;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
}

.menu-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Scenes Section */
.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.scene-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.scene-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.scene-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.scene-card .time {
    display: block;
    font-weight: bold;
    color: #888;
    margin-bottom: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Info Section */
.info-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.info-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.info-list strong {
    display: inline-block;
    width: 100px;
    color: var(--primary-color);
}

/* Restaurant Page Styles */
.restaurant-hero {
    background-image: url('../images/restaurant_hero.jpg');
}

/* Course Section */
.course-desc {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.course-menu {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.course-menu h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
    color: var(--primary-color);
}

.course-item {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.course-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.course-cat {
    flex: 0 0 150px;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
}

.course-detail {
    flex: 1;
}

.course-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.course-detail p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Pairing Section */
.pairing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pairing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

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

.pairing-card.premium {
    border-color: var(--accent-color);
}

.pairing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mt-4 {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .course-item {
        flex-direction: column;
    }

    .course-cat {
        margin-bottom: 0.5rem;
    }
}

/* Highlight Image Slider Styles */
.highlight-slider {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 400px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
}

.slider-wrapper:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn i {
    color: var(--primary-color);
    font-size: 1rem;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.3);
    border-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlight-slider {
        min-height: 300px;
    }

    .slider-wrapper,
    .slider-slides,
    .slider-slide {
        height: 300px;
    }

    .slider-slide img {
        height: 300px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
    }

    .slider-btn i {
        font-size: 0.9rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-indicators {
        bottom: 15px;
    }

    .slider-indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .highlight-slider {
        min-height: 250px;
    }

    .slider-wrapper,
    .slider-slides,
    .slider-slide {
        height: 250px;
    }

    .slider-slide img {
        height: 250px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
        opacity: 0.8;
    }

    .slider-wrapper:hover .slider-btn {
        opacity: 0.9;
    }
}
