﻿/* ================= Start Body Section CSS ================= */
    img {
        max-width: 100%;
        display: block;
    }
    
    body {
        background: #ffffff;
        color: #111827;
    }

/* ================= END Body Section CSS ================= */

/* ================= Start hero Section CSS ================= */

    .hero-section {
        position: relative;
        min-height: 600px;
        background: url('https://sunrisedreamworldresort.com/Content/event/dinig.jpg') center / cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 640px;
        color: #e5e7eb;
        line-height: 1.7;
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 768px) {
    
        .hero-section {
            min-height: auto;
            padding: 90px 16px 70px;
            text-align: center;
        }
    
        .hero-content {
            max-width: 100%;
        }
    
        .hero-content h1 {
            font-size: 1.9rem;
            line-height: 1.3;
        }
    
        .hero-content p {
            font-size: 1rem;
            max-width: 100%;
            margin: 0 auto;
        }
    }

/* ================= End hero Section CSS ================= */

/* ================= Start GALLERY SECTION CSS ================= */

    .restaurant-scroll-gallery {
        padding: 40px 20px;
        background: #ffffff;
    }
    
    .container {
        max-width: 1200px;
        margin: auto;
    }

    .section-title {
        text-align: center;
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 45px;
        color: #111827;
    }

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: #f97316;
        margin: 12px auto 0;
        border-radius: 4px;
    }

    .scroll-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .scroll-track {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0;
    }

    .scroll-track::-webkit-scrollbar {
        display: none;
    }

    .scroll-track img {
        min-width: 470px; 
        height: 350px; 
        object-fit: cover;
        border-radius: 20px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 16px 40px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .scroll-track img:hover {
        transform: scale(1.05);
    }

    .scroll-btn {
        position: absolute;
        width: 44px;
        height: 44px;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        font-size: 22px;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        z-index: 10;
    }

    .scroll-btn.left {
        left: -22px;
    }

    .scroll-btn.right {
        right: -22px;
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 768px) {
    
        .restaurant-scroll-gallery {
            padding: 40px 14px;
        }
    
        .section-title {
            font-size: 1.8rem;
        }

        .scroll-track img {
            min-width: 330px; 
            height: 260px;
            border-radius: 16px;
        }
    
        .scroll-btn {
            display: none;
        }
    }

/* ================= End GALLERY SECTION CSS ================= */

/* ================= Start Dining Experience CSS ================= */

    .restaurant-gallery {
        padding: 40px 20px;
        background: #ffffff;
    }
    
    .restaurant-info {
        margin-top: 80px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
    }
    
    .restaurant-text h3 {
        font-size: 2.3rem;
        margin-bottom: 18px;
        color: #111827;
        position: relative;
        padding-left: 18px;
    }

    .restaurant-text h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 4px;
        height: 70%;
        background: linear-gradient(to bottom, #f59e0b, #fbbf24);
        border-radius: 4px;
    }

    .restaurant-text p {
        font-size: 1.1rem;
        line-height: 1.85;
        color: #4b5563;
        margin-bottom: 20px;
    }
    
    .restaurant-image img {
        border-radius: 18px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 992px) {
    
        .restaurant-info {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
    
        .restaurant-gallery {
            padding: 40px 14px;
        }
    
        /*#carousel-rooms .item img {
            height: 220px;
        }*/
    
        .restaurant-info {
            margin-top: 50px;
            text-align: center;
        }
    
        .restaurant-text h3 {
            font-size: 1.7rem;
            padding-left: 0;
        }
    
        .restaurant-text h3::before {
            display: none;
        }
    }

    @media (max-width: 480px) {
    
        .hero-content h1 {
            font-size: 1.7rem;
        }
    
        .restaurant-text p {
            font-size: 0.95rem;
        }
    }

/* ================= END Dining Experience CSS ================= */
