/* Main content layout */
.main-content {
    max-width: 100%;
    margin: 0 auto;
}


/* Hero Section */
.hero-section {
    padding-top: 80px;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%; /* Adjust vertical position */
    max-height: 100vh;
}

@media (min-width: 1800px) {
    .hero-section {
        padding: 0 calc((100% - 1800px) / 2);
    }

    .hero-image {
        width: 1200px;
        margin: 0 auto;
    }
}

@media (min-width: 1600px) {
    .hero-image {
        height: 900px;
    }

    .hero-image img {
        object-position: center 30%;
    }
}

@media (max-width: 992px) {
    .hero-image {
        height: 400px;
    }
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slide-dot.active {
    background-color: white;
    transform: scale(1.2);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Featured Section */
.featured-section {
    margin-bottom: 3rem;
    padding: 2rem 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;

    padding: 1rem 0;
    font-weight: bold;
}

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

.featured-grid {
    max-width: 900px;
    margin: 0 auto;
}

.featured-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: stretch;
    position: relative;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.restaurant-name {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.featured-item img {
    width: 50%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #fff, #f9f7f4);
}

.featured-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.price small {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Store Information Section */
.store-info-section {
    padding: 30px;
    background-color: var(--background-color);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.store-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.store-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-content: center;
}

.store-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--white-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    width: 650px;
}

.store-image-container {
    flex: 0 0 300px;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.store-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    font-family: "League Gothic", sans-serif;
    line-height: 1;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.store-info-label {
    min-width: 30px;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.store-info-label i {
    font-size: 1.2rem;
}

.store-info-value {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.store-info-value:hover {
    color: var(--primary-color);
}

.store-info-value.location-link {
    background: none;
    padding: 0;
    color: var(--text-color);
    text-align: left;
    display: block;
}

.store-info-value.location-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.google-map-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.google-map-link:hover {
    opacity: 0.8;
}

.store-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-color);
}

.hours-row {
    line-height: 1.4;
}

@media (max-width: 1400px) {
    .store-info-section {
        padding: 40px;
    }

    .store-row {
        gap: 40px;
    }

    .store-card {
        width: 580px;
        padding: 30px;
    }

}

@media (max-width: 1200px) {
    .store-row {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }

    .store-card {
        width: 650px;
    }

}

@media (max-width: 960px) {
    .store-info-section {
        padding: 30px 20px;
    }

    .store-card {
        width: 100%;
        max-width: 600px;
        padding: 25px;
        gap: 20px;
    }


    .store-name {
        font-size: 2rem;
    }

    .store-info-item {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .store-card {
        flex-direction: column;
        padding: 20px;
    }


    .store-content {
        width: 100%;
        gap: 20px;
    }

    .store-info-label {
        min-width: 70px;
        font-size: 0.9rem;
    }

    .store-info-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .store-info-section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .store-row {
        gap: 20px;
    }

    .store-card {
        padding: 15px;
        border-radius: 20px;
    }

    .store-name {
        font-size: 1.8rem;
    }
}

/* COVID-19 Measures Section */
.covid-section {
    margin-bottom: 4rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.covid-banner {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.covid-banner h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.measure-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.measure-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.measure-item p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Recruitment Section */
.recruitment-section {
    margin-bottom: 4rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.recruitment-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job-details h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.job-details h3:first-child {
    margin-top: 0;
}

.job-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.job-details li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-details li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
}

/* Tagline Section */
.tagline-section {
    background-color: var(--background-color);
    padding: 100px 20px;
}

.tagline-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tagline-line {
    font-size: 3.5rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
    text-transform: none;
}

.tagline-line.left {
    text-align: left;
}

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

.tagline-line.right {
    text-align: right;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--background-color);
    overflow: hidden;
    padding: 30px 0;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: calc((300px + 60px) * 12); /* Image width + margin-right * number of images */
    gap: 40px; /* Increased spacing between images */
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-track img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-track img:hover {
    transform: scale(1.03);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-300px - 60px) * 6)); /* Move by width + gap of one set */
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        padding: 0;
    }

    .hero-slider {
        padding-top: 56.25%; /* Maintain 16:9 aspect ratio */
    }
}

@media (max-width: 1400px) {
    .tagline-line {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-image {
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .featured-item {
        flex-direction: column;
    }

    .featured-item img {
        width: 100%;
        height: 300px;
    }

    .featured-content {
        padding: 2rem;
    }

    .restaurant-name {
        top: 1rem;
        right: 1rem;
    }

    .tagline-line {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .gallery-track {
        width: calc((250px + 40px) * 12);
        gap: 40px;
    }

    .gallery-track img {
        width: 250px;
        height: 250px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc((-250px - 40px) * 6));
        }
    }

    .store-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .store-card {
        padding: 30px;
    }

    .store-name {
        font-size: 2rem;
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {
    .main-content {
        padding: 0;
    }
    
    .store-image-container {
        width: 100%;
        height: fit-content;
    }

    .store-image {
        margin-bottom: 20px;
        height: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .featured-content h3 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .featured-item img {
        height: 250px;
    }

    .hero-slider {
        padding-top: 56.25%; /* Maintain 16:9 aspect ratio */
        border-radius: 8px; /* Slightly smaller border radius for mobile */
    }

    .store-info-section,
    .featured-section,
    .covid-section,
    .recruitment-section {
        padding: 0 20px;
    }

    .tagline-section {
        padding: 60px 20px;
    }

    .tagline-line {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        line-height: 1.6;
    }
    
    .tagline-container {
        gap: 1rem;
    }

    .gallery-track {
        width: calc((200px + 30px) * 12);
        gap: 30px;
    }

    .gallery-track img {
        width: 200px;
        height: 200px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc((-200px - 30px) * 6));
        }
    }
}

@media (max-width: 480px) {
    .featured-content {
        padding: 1.5rem;
    }

    .featured-item img {
        height: 200px;
    }

    .price {
        font-size: 1.3rem;
    }

    .store-info-section {
        padding: 40px 15px;
    }

    .store-card {
        padding: 20px;
    }

    .store-name {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .store-info-item {
        gap: 15px;
    }

    .store-info-label {
        min-width: 70px;
        font-size: 0.9rem;
    }

    .store-info-value {
        font-size: 0.9rem;
    }
}

/* Menu Categories Section */
.menu-categories {
    background-color: var(--background-color);
    padding: 30px 10px;
    margin-top: -30px;
}

.menu-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    background: var(--white-color);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    padding: 20px;
    text-decoration: none;
}

.menu-category-title {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-category-title-text {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: "League Gothic", sans-serif;
    text-decoration: none;
    margin-bottom: 4px;
}

.menu-category-subtitle-text {
    color: var(--subtext-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive design for menu categories */
@media (max-width: 768px) {
    .menu-categories {
        padding: 40px 20px;
    }

    .menu-category {
        padding: 30px;
    }

    .menu-category-title-text {
        font-size: 1.3rem;
    }

    .menu-category-subtitle-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 20px;
    }

    .menu-category-title-text {
        font-size: 1rem;
    }

    .menu-category-subtitle-text {
        font-size: 0.9rem;
    }

    .menu-category-title {
        gap: 3px;
    }
}

/* Store info note */
.store-info-section .text-muted {
    text-align: center;
    margin-top: 30px;
    color: var(--muted-color);
    font-size: 1rem;
}

/* Parking Information Styles */
.parking-info-container {
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
}

.parking-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.parking-info-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.parking-info-content {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.parking-info-rates {
    font-size: 0.95rem;
    color: #333;
}

.rate-item {
    margin-bottom: 8px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}

/* Responsive styles for parking info */
@media (max-width: 768px) {
    .parking-info-container {
        padding: 0 15px;
        margin-top: 25px;
    }

    .parking-info {
        padding: 15px;
    }

    .parking-info-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .parking-info-content,
    .parking-info-rates {
        font-size: 0.9rem;
    }

    .rate-item {
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .parking-info-container {
        padding: 0 10px;
        margin-top: 20px;
    }

    .parking-info {
        padding: 12px;
    }

    .parking-info-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .parking-info-content,
    .parking-info-rates {
        font-size: 0.85rem;
    }

    .rate-item {
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .store-info-section .text-muted {
        margin-top: 25px;
        font-size: 0.9rem;
    }
}

/* Parking Link Styles */
.parking-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.parking-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.modal.show {
    opacity: 1;
    display: block;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background-color: #f5f5f5;
    color: #333;
}

/* Parking Info Styles */
.parking-info {
    padding: 25px 0 15px;
}

.parking-info-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
    text-align: center;
}

.parking-info-content {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

.parking-info-content .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.parking-info-rates {
    font-size: 1rem;
    color: #333;
    background: #f8f8f8;
    padding: 20px 25px;
    border-radius: 10px;
}

.rate-item {
    margin-bottom: 12px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate-item:last-child {
    margin-bottom: 0;
}

.rate-item::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Responsive styles for modal and parking info */
@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        width: 92%;
        padding: 25px;
    }

    .parking-info {
        padding: 15px 0;
    }

    .parking-info-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .parking-info-content {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .parking-info-rates {
        padding: 15px 20px;
    }

    .rate-item {
        margin-bottom: 10px;
    }

    .parking-link {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 20% auto;
        padding: 20px;
    }

    .close-modal {
        right: 15px;
        top: 10px;
    }

    .parking-info {
        padding: 10px 0;
    }

    .parking-info-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .parking-info-content {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .parking-info-rates {
        padding: 12px 15px;
    }

    .rate-item {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 30px;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--white-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-container {
    flex: 0 0 400px;
    width: 400px;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive design for about section */
@media (max-width: 1400px) {
    .about-section {
        padding: 30px 20px;
    }
}

@media (max-width: 1200px) {
    .about-card {
        padding: 30px;
        max-width: 900px;
    }

    .about-image-container {
        flex: 0 0 300px;
        width: 300px;
    }
}

@media (max-width: 992px) {
    .about-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .about-image-container {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }

    .about-card {
        padding: 20px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 15px;
    }

    .about-card {
        padding: 15px;
    }

    .about-image-container {
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 0.95rem;
    }
} 