﻿/* ================= Start Body CSS ================= */

    body {
        overflow-x: hidden;
        background: #ffffff;
        color: #333;
    }

/* ================= End Body CSS ================= */

/* ================= Start hero Section CSS ================= */

    .hero-section {
        position: relative;
        min-height: 600px;
        background: url('https://sunrisedreamworldresort.com/Content/rooms/SPA01117.webp') 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 INFO BAR CSS ================= */

    .info-bar {
        width: 100%;
        background: #f7f4ef;
        border-bottom: 1px solid #e5e7eb;
        padding: 24px 0;
    }
    
    .info-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px; 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        text-align: center;
    }

    .info-item {
        width: 100%;
    }

    .info-item h6 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: #111827;
    }

    .info-item p {
        margin: 4px 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4b5563;
    }

    .info-item a {
        color: #4b5563;
        text-decoration: none;
        word-break: break-word; 
    }

/* =========== MOBILE FIX ============ */

    @media (max-width: 768px) {
    
        .info-bar {
            padding: 20px 0;
        }
    
        .info-container {
            grid-template-columns: 1fr; 
            gap: 16px;
        }
    
        .info-item {
            background: #ffffff;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 6px 14px rgba(0,0,0,0.05);
        }
    
        .info-item h6 {
            font-size: 0.95rem;
        }
    
        .info-item p,
        .info-item a {
            font-size: 0.9rem;
        }
    }

/* ================= End INFO BAR CSS ================= */

/* ================= Start ROOM OVERVIEW CSS ================= */

    .overview-section {
        padding: 60px 0;
        background: #ffffff;
    }
    
    .overview-grid {
        max-width: 1200px;
        margin: 0 auto 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .overview-content h3 {
        font-size: 2.2rem;
        color: #111827;
        margin-bottom: 20px;
    }
    
    .overview-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4b5563;
        margin-bottom: 18px;
    }
    
    .overview-image {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .overview-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .image-overlay {
        position: absolute;
        bottom: 18px;
        left: 18px;
        background: rgba(0,0,0,0.55);
        color: #ffffff;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .overview-features {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .feature-card {
        background: #f9fafb;
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #e5e7eb;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .feature-card h4 {
        font-size: 1.2rem;
        color: #111827;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #4b5563;
        line-height: 1.6;
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 768px) {
    
        .overview-section {
            padding: 40px 0;
        }
    
        .overview-grid {
            display: block; 
            text-align: center;
            margin-bottom: 40px;
        }
    
        .overview-content {
            margin-bottom: 24px;
            padding: 0 10px;
        }
    
        .overview-content h3 {
            font-size: 1.6rem;
        }
    
        .overview-content p {
            font-size: 0.95rem;
            line-height: 1.6;
        }
    
        .overview-image {
            border-radius: 14px;
        }
    
        .overview-image img {
            height: 220px;
            object-fit: cover;
        }
    
        .image-overlay {
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            padding: 6px 14px;
        }
    
        .overview-features {
            grid-template-columns: 1fr; 
            gap: 18px;
            padding: 0 10px;
        }
    
        .feature-card {
            padding: 22px;
        }
    
        .feature-card h4 {
            font-size: 1.1rem;
        }
        
        .feature-card p {
            font-size: 0.9rem;
        }
    }
    
/* ================= End ROOM OVERVIEW CSS ================= */

/* ================= Start ROOM FACILITIES CSS ================= */

    .facilities-section {
        padding: 40px 0;
        background: #f9fafb;
    }

    .facilities-section h3 {
        font-size: 2rem;
        color: #111827;
        margin-bottom: 32px;
        text-align: center;
        font-weight: 600;
    }

    .facilities-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .facilities-grid ul {
        list-style: none;
        padding: 28px;
        margin: 0;
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    }

    .facilities-grid ul li {
        display: block; 
        width: 100%;
        padding: 12px 0 12px 30px;
        position: relative;
        font-size: 1rem;
        color: #374151;
        border-bottom: 1px solid #e5e7eb;
        line-height: 1.6;
        white-space: normal;
    }

    .facilities-grid ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 12px;
        color: #16a34a;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .facilities-grid ul li:last-child {
        border-bottom: none;
    }

    .facilities-grid ul:hover {
        border-color: #d1d5db;
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 768px) {
    
        .facilities-section {
            padding: 30px 0;
        }
    
        .facilities-section h3 {
            font-size: 1.6rem;
            margin-bottom: 24px;
        }
    
        .facilities-grid {
            grid-template-columns: 1fr; 
            gap: 20px;
            padding: 0 12px;
        }
    
        .facilities-grid ul {
            padding: 20px;
        }
    
        .facilities-grid ul li {
            font-size: 0.95rem;
            padding: 10px 0 10px 26px;
        }
    
        .facilities-grid ul li::before {
            top: 10px;
        }
    }

/* ================= End ROOM FACILITIES CSS ================= */

/* ================= Start ROOM cards CSS ================= */

    .room-cards {
        padding: 80px 20px;
        background: #ffffff;
    }

    .room-card {
        max-width: 1200px;
        margin: 0 auto 60px;
        background: #ffffff;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        overflow: hidden;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .room-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

    .room-image {
        width: 100%;
        height: 100%;
        min-height: 400px;
        object-fit: cover;
        display: block;
    }

    .room-content {
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .room-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        color: #111827;
        margin-bottom: 18px;
        border-bottom: 3px solid #667eea;
        display: inline-block;
        padding-bottom: 8px;
    }

    .room-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 28px;
        color: #4b5563;
    }

    .room-card.reverse {
        direction: rtl;
    }

    .room-card.reverse > * {
        direction: ltr;
    }

    .btn-book {
        display: inline-block;
        padding: 14px 36px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: #ffffff !important;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        max-width: 180px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(102,126,234,0.35);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-book:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(102,126,234,0.5);
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 992px) {
    
        .room-content {
            padding: 36px;
        }
    
        .room-content h2 {
            font-size: 1.7rem;
        }
        
        .room-content p {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
    
        .room-cards {
            padding: 40px 12px;
        }
    
        .room-card {
            grid-template-columns: 1fr; 
            margin-bottom: 30px;
            border-radius: 14px;
        }
    
        .room-card.reverse {
            direction: ltr;
        }
    
        .room-card.reverse > * {
            direction: ltr;
        }
    
        .room-image {
            height: 260px;
            min-height: auto;
        }
    
        .room-content {
            padding: 24px;
            text-align: left;
        }
    
        .room-content h2 {
            font-size: 1.5rem;
            padding-bottom: 6px;
            border-bottom-width: 2px;
        }
    
        .room-content p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }
    
        .btn-book {
            padding: 12px 28px;
            font-size: 0.95rem;
            max-width: 160px;
        }
    }
    
    @media (max-width: 480px) {
    
        .room-content h2 {
            font-size: 1.35rem;
        }
    
        .room-image {
            height: 220px;
        }
    
        .btn-book {
            width: 100%;
            max-width: 100%;
        }
    }

/* ================= End ROOM cards CSS ================= */


/* ================= Start Last Section CSS ================= */

    .bathroom-section {
        padding: 20px 20px;
        background: linear-gradient(180deg, #f9fafb, #ffffff);
    }

    .section-title {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 90px;
    }

    .section-title h2 {
        font-size: 2.6rem;
        color: #111827;
        margin-bottom: 14px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #6b7280;
        line-height: 1.7;
    }

    .section-title .title-border {
        display: block;
        width: 110px;
        height: 4px;
        margin: 0 auto 20px;
        background: linear-gradient(to right, #f59e0b, #fbbf24);
        border-radius: 6px;
    }

    .bathroom-grid {
        max-width: 1200px;
        margin: 0 auto 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .bathroom-grid.reverse {
        direction: rtl;
    }

    .bathroom-grid.reverse > * {
        direction: ltr;
    }

    .bathroom-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .bathroom-images img,
    .bathroom-content img.extra-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 18px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 14px 35px rgba(0,0,0,0.12);
        transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    .bathroom-images img:hover,
    .bathroom-content img.extra-image:hover {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 24px 50px rgba(0,0,0,0.18);
    }

    .bathroom-content h3 {
        font-size: 2.1rem;
        margin-bottom: 20px;
        color: #111827;
        line-height: 1.35;
        position: relative;
        padding-left: 22px;
    }

    .bathroom-content h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 4px;
        height: 70%;
        background: linear-gradient(to bottom, #f59e0b, #fbbf24);
        border-radius: 4px;
    }

    .bathroom-content p {
        font-size: 1.15rem;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 30px;
    }

    .bathroom-content img.extra-image {
        margin-top: 10px;
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 992px) {
    
        .bathroom-grid {
            gap: 40px;
        }
    
        .section-title h2 {
            font-size: 2.2rem;
        }
    
        .bathroom-content h3 {
            font-size: 1.8rem;
        }
    
        .bathroom-content p {
            font-size: 1.05rem;
        }
    }

    @media (max-width: 768px) {
    
        .bathroom-section {
            padding: 20px 14px;
        }
    
        .section-title {
            margin-bottom: 60px;
        }
    
        .section-title h2 {
            font-size: 1.9rem;
        }
    
        .section-title p {
            font-size: 1rem;
        }
    
        .bathroom-grid {
            grid-template-columns: 1fr;
            gap: 35px;
            margin-bottom: 70px;
        }
    
        .bathroom-grid.reverse {
            direction: ltr;
        }
    
        .bathroom-images {
            gap: 16px;
        }
    
        .bathroom-images img,
        .bathroom-content img.extra-image {
            height: 220px;
            border-radius: 14px;
        }
    
        .bathroom-content h3 {
            font-size: 1.6rem;
            padding-left: 16px;
        }
    
        .bathroom-content p {
            font-size: 0.98rem;
            line-height: 1.75;
        }
    }
    
    @media (max-width: 480px) {
    
        .section-title h2 {
            font-size: 1.6rem;
        }
    
        .bathroom-content h3 {
            font-size: 1.45rem;
        }
    
        .bathroom-images img,
        .bathroom-content img.extra-image {
            height: 190px;
        }
    }

/* ================= End Last Section CSS ================= */