:root {
            --primary-color:  #6b2c2c;
             --primary-hover: #8b3c3c;
            --secondary-color: #b97b79;
            --text-light: #b97b79;
        }


        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-color);
            color: #D1AE6C;
            padding: 4.5px 0;
            font-size: 16px; /* solid remove panniten */
        }

        /* Right side links inline */
        .top-bar a {
            color: #D1AE6C;
            text-decoration: none;
            margin-left: 15px;
            display: inline-flex;   /* IMPORTANT */
            align-items: center;
        }

        .top-bar a:hover {
            color: #D1AE6C;
        }

        .top-bar i {
            margin-right: 5px;
        }

        /* 🔽 Mobile Responsive */
        @media (max-width: 576px) {

            /* Email hide */
            .top-bar a[href^="mailto"] {
                display: none;
            }

            /* Phone center */
            .top-bar {
                text-align: center;
            }

            .top-bar a {
                margin-left: 0;
            }
        }


        .navbar {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color) !important;
            font-weight: bold;
        }

       .logo-icon img{
            width: 300;
            height: auto;
        }

         @media (min-width: 300px) {
        .logo-icon img {
            width: 250px;
        }
        }

        .nav-link {
            color: #666 !important;
            margin: 0 15px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-book {
            background: var(--primary-color);
            color: white;
            padding: 8px 25px;
            border-radius: 5px;
            text-transform: uppercase;
            font-size: 14px;
        }

        .btn-book:hover {
            background: var(--secondary-color);
            color: white;
        }
        

        /*about*/
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
        }

        .section-title {
            
            color: var(--secondary-color);
            text-align: center;
            font-size: 24px;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .feature-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .amenities-section {
            padding: 60px 0;
            background: white;
        }

        .amenity-card {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }

        .amenity-card:hover {
            transform: translateY(-10px);
        }

        .amenity-img {
            width: 100%;
            max-width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .amenity-title {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 16px;
        }

        .awards-section {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .awards-title {
            text-align: center;
            color: var(--primary-color);
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 50px;
        }

        .award-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .award-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .award-card:hover {
            transform: translateY(-10px);
        }

        .award-icon {
            font-size: 60px;
            color: gold;
            margin-bottom: 20px;
        }

        .award-label {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 18px;
        }

        /* Services Section */
        
        .brea-ser{
            color: #6b2c2c;
            background: #f5f3f0;
            padding: 40px;
        }
        .services-section {
            
            padding: 80px 0;
            background: white;
        }

         .serv-card{
            padding: 20px;
         }

        .service-card {
            background: white;
            border-radius: 5px;
            padding: 10px 10px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 20px;
           border: 1px dashed #000;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            background: white;
        }

        .service-icon {
            font-size: 50px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .service-title {
            color: var(--secondary-color);
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

         /* Rooms Section */
        .rooms-section {
            padding: 50px 0;
        }

        .room-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            transition: transform 0.3s;
        }

        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .room-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .room-content {
            padding: 30px;
        }

        .room-title {
            color: var(--primary-color);
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .room-description {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .room-amenities {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .amenity-icon {
            color: var(--secondary-color);
            font-size: 20px;
        }

        .room-price {
            text-align: right;
        }

        .hero {
            background: linear-gradient(135deg, #d4c5d0 0%, #b8a8b8 100%);
            padding: 150px 0;
        }

        .booking-card {
            margin-top: -50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .rating {
            color: #ffc107;
        }

        .room-card {
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .room-card:hover {
            transform: translateY(-5px);
        }

        .room-price {
            background: white;
            color: black;
            padding: 15px 15px;
            display: inline-block;
            font-size: 25px;
        }

        .service-item {
            cursor: pointer;
            padding: 20px;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .service-item:hover {
            background: #f5f5f5;
        }

        .service-item.active {
            background: var(--primary-color);
            color: white;
        }

        .service-item.active h5,
        .service-item.active p {
            color: white;
        }

        .service-image {
            height: 400px;
            object-fit: cover;
            border-radius: 5px;
            transition: opacity 0.3s ease;
        }

        .discover-card {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 5px;
        }

        .discover-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .discover-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255,255,255,0.9);
            padding: 10px 20px;
            font-weight: bold;
        }

        .testimonial-card {
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border: none;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
        }

        footer {
            background: #f9f9f9;
        }

        .guest-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 5px 5px;
            z-index: 100;
            display: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .guest-dropdown.active {
            display: block;
        }

        .guest-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .guest-btn:hover {
            background: #f5f5f5;
            border-color: var(--primary-color);
        }

        .fav-btn{
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: white;
        }

        .fav-btn:hover{
           
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .price-label {
            color: var(--primary-color);
            font-size: 15px;
            text-transform: uppercase;
            text-align: center;
        }

        .btn-more-details {
            background: var(--gold-color);
            color: #c99a1d ;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s;
        }

        .btn-more-details:hover {
            background: #c99a1d;
            color: white !important;
            transform: translateX(5px);
        }
        /*contect*/
         /* Hero Map Section */
        .map-section {
            height: 350px;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
        }

        /* Contact Form Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            color: var(--primary-color);
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 50px;
            text-transform: uppercase;
        }

        .form-control,
        .form-select {
            border: 2px solid #ddd;
            background-color: whitesmoke;
            padding: 12px 20px;
            border-radius: 5px;
            margin-bottom: 50px;
            font-size: 15px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
        }

        .form-control::placeholder {
            color: #727070;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-check {
            margin-bottom: 30px;
        }

        .form-check-input {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            border: 2px solid #ddd;
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .form-check-label {
            color: var(--secondary-color);
            font-size: 15px;
        }

        .btn-submit {
            background: var(--primary-color);
            color: white;
            padding: 12px 40px;
            border: none;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: #6d3410;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        
        /* Blog Section */
        .blog-section {
            padding: 80px 20px;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .blog-header h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #6b2c2c;
            margin-bottom: 16px;
        }

        .blog-header p {
            font-size: 1.125rem;
            color: #b97b79;
            max-width: 600px;
            margin: 0 auto;
        }

        .articles-grid {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .article-card {
            flex: 1 1 calc(33.333% - 20px);
            min-width: 320px;
            max-width: 380px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .article-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .article-card:hover .article-image {
            transform: scale(1.05);
        }

        .article-image-container {
            overflow: hidden;
            background: #e0e0e0;
        }

        .article-content {
            padding: 24px;
        }


        .article-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .article-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .d-flex1 {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        .d-flex1 img {
            width: 55px;
            height: 55px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid #e5e5e5;
        }

        .ms-3 {
            margin-left: 12px;
        }

        .ms-3 h5 {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }

        .ms-3 span {
            font-size: 13px;
            color: #777;
        }

        



/*footer*/
        footer {
            background: transparent;
            border-top: 3px solid #6b2c2c;
            border-bottom: 3px solid #6b2c2c;
            color:var(--primary-color) !important;
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color:var(--primary-color) !important;
        }

        .footer-text {
            color:var(--secondary-color);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .footer-link {
            color:var(--secondary-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: var(--secondary-color);
        }

         /* Container */
        .copyright {
            display: flex;             
            align-items: center;     
            gap: 10px;                 
            font-weight: 500;          
            font-size: 14px;
            color: var(--primary-color);
        }

        /* Link styling */
        .copyright-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 700;          
            text-transform: uppercase; 

        }

        .copyright-link:hover{
        text-decoration: underline;
        }

        .contact-info {
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

    
/*scrol button*/
        
     #topBtn {
  position: fixed;
  bottom: 40px;
  right: 20px;          /* 👉 RIGHT side */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #000;
  color: #ffffff;
  background: #b97b79;
  font-size: 25px;
  cursor: pointer;
  display: none;       /* start-la hide */
  z-index: 999;
}

/* WhatsApp Orb */
.wa-orb {
    position: fixed;
    left: 30px;
    bottom: 5%;
    width: 80px;
    height: 80px;
    z-index: 9999;
    text-decoration: none;
    animation: waJump 1.8s infinite ease-in-out;
}

/* Outer breathing ring */
.wa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.6), transparent 60%);
    animation: breathe 3s infinite ease-in-out;
}

/* Core orb */
.wa-core {
    position: absolute;
    inset: 12px;
    background: linear-gradient(145deg, #25D366, #075E54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow:
        inset 0 0 15px rgba(255,255,255,0.3),
        0 0 30px rgba(37,211,102,0.7);
}

/* Label */
.wa-label {
    position: absolute;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

/* Desktop hover show */
.wa-orb:hover .wa-label {
    opacity: 1;
}

/* Jump animation */
@keyframes waJump {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-10px) rotate(-6deg); }
    50%  { transform: translateY(0) rotate(6deg); }
    75%  { transform: translateY(-6px) rotate(-3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Breathing ring */
@keyframes breathe {
    0%   { transform: scale(1); opacity: 0.6; }
    50%  { transform: scale(1.25); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* 📱 Mobile Fix */
@media (max-width: 480px) {

    .wa-orb {
        right: 13px;
        left: auto;
        bottom: 80px;
        width: 63px;
        height: 63px;
    }

    .wa-core {
        inset: 10px;
        font-size: 26px;
    }

    /* Auto pop message (WhatsApp style) */
    .wa-label {
        display: block;
        opacity: 0;
        left: auto;
        right: 75px;
        font-size: 12px;
        padding: 6px 10px;
        animation: labelPop 6s infinite;
    }
}

/* Mobile popup animation */
@keyframes labelPop {
    0%, 70% { opacity: 0; }
    75%, 90% { opacity: 1; }
    100% { opacity: 0; }
}



