﻿/* RESET */
img {
    max-width: 100%;
    display: block;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://sunrisedreamworldresort.com/Content/event/dinig.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 600px;
    }


/* GALLERY SECTION */
.restaurant-gallery {
    padding: 70px 20px;
    background: #0f0f0f;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* OWL CAROUSEL */
#carousel-rooms .item img {
    border-radius: 12px;
    height: 280px;
    object-fit: cover;
}

/* INFO SECTION */
.restaurant-info {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.restaurant-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.restaurant-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

.restaurant-image img {
    border-radius: 14px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .restaurant-hero-image {
        aspect-ratio: 4 / 5;
    }

    .restaurant-hero-content h1 {
        font-size: 1.6rem;
    }

    .restaurant-hero-content p {
        font-size: 0.95rem;
    }

    #carousel-rooms .item img {
        height: 220px;
    }

    .restaurant-info {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .restaurant-text h3 {
        font-size: 1.5rem;
    }
}
