/* ================================================
   Index Page Styles (matched to cafeyu.xyz/index.html)
   ================================================ */

.hero {
    background: url('../img/floor.jpg') center/cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    letter-spacing: 0.3em;
    font-weight: 300;
    color: #fff;
}

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

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.menu-section {
    background: #f9f9f9;
}

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

.menu-list {
    font-size: 18px;
}

.menu-item {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.menu-notes {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

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

.menu-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.rental-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 2;
}

.rental-price {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0;
}

.plan-button {
    display: inline-block;
    border: 2px solid #000;
    padding: 10px 30px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
    margin: 20px 0;
}

.plan-button:hover {
    background: #000;
    color: #fff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 50px 0;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.rental-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.feature-box {
    display: flex;
    gap: 20px;
}

.feature-box img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.feature-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .menu-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 32px;
        color: #fff;
    }

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

    .rental-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        flex-direction: column;
    }
}

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

    .hero-title {
        font-size: 24px;
        color: #fff;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .menu-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rental-features {
        gap: 15px;
    }

    .feature-text h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-text p {
        font-size: 13px;
    }
}
