/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 15 2026 | 15:11:53 */
<style>
        /* --- Container & Layout --- */
        .nd-elegant-rooms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 15px;
            font-family: 'Roboto', sans-serif;
        }

        .custom-room-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 80px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .custom-room-row:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 112, 62, 0.15);
        }

        /* --- Image Column --- */
        .room-media-col {
            flex: 0 0 55%;
            max-width: 55%;
            position: relative;
            min-height: 400px;
            background: #f9f9f9;
            overflow: hidden;
        }

        .room-media-col img.featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .custom-room-row:hover .room-media-col img.featured-img {
            transform: scale(1.03);
        }

        /* --- Content Column --- */
        .room-content-col {
            flex: 0 0 45%;
            max-width: 45%;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
        }

        /* --- Typography --- */
        .room-title {
            font-family: 'Trajan Pro', serif !important;
            font-size: 32px;
            color: #00703e;
            margin-bottom: 20px;
            margin-top: 0;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .room-title a { color: #00703e; text-decoration: none; }

        /* Meta Icons */
        .room-meta-wrapper {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .room-meta-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #5c5c5c;
            font-weight: 500;
        }

        .room-meta-item img {
            margin-right: 10px;
            width: 25px; 
            height: auto;
            opacity: 0.6;
        }

        .room-description {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 35px;
        }

        /* --- Buttons --- */
        .room-actions { display: flex; gap: 15px; flex-wrap: wrap; }

        .room-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none !important;
            border-radius: 4px;
            transition: all 0.3s ease;
            min-width: 160px;
        }

        .room-btn i { margin-left: 8px; font-size: 14px; }

        /* Book Now Button */
        .btn-book-now {
            background-color: #00703e;
            border: 2px solid #00703e;
            color: #ffffff !important; 
        }
        
        .btn-book-now i { color: #ffffff !important; }

        .btn-book-now:hover {
            background-color: #ffffff;
            color: #00703e !important;
        }
        
        .btn-book-now:hover i { color: #00703e !important; }

        /* View Details Button */
        .btn-view-details {
            background-color: transparent;
            border: 2px solid #00703e;
            color: #00703e;
        }
        .btn-view-details:hover {
            background-color: #00703e;
            color: #ffffff;
        }

        /* --- Alternating Layout --- */
        .custom-room-row.alt-layout { flex-direction: row-reverse; }

        /* --- Responsive --- */
        @media (max-width: 991px) {
            .room-media-col, .room-content-col { flex: 0 0 100%; max-width: 100%; }
            .room-media-col { min-height: 250px; }
            .custom-room-row.alt-layout { flex-direction: column; }
            .room-content-col { padding: 30px; }
        }
    </style>