@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

: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;
        }
        

        .room-detail-flex {
          display: flex;
          align-items: flex-start;
          max-width: 1200px;
          margin: 60px auto;
          gap: 40px;
        }

        .room-section {
          flex: 2 1 0;
          max-width: 1000px;
          background: #d8d5d5;
          padding: 40px 20px;
          font-family: var(--font-primary);
        }

        .sidebar-rooms-outer {
          flex: 1 1 290px;
          min-width: 220px;
          max-width: 330px;
          margin-top: 0;
        }

        #roomImage {
          width: 100%;
          /* fills the container */
          max-width: 1000px;
          /* optional: limits image size */
          height: 500px;
          /* keeps aspect ratio */
          border-radius: 6px;
          /* margin: 15px 0; */
          display: block;
          /* removes inline spacing issues */
          max-height: 500px;
          /* object-fit: contain; */
          /* ensures image fills container without distortion */
          border-radius: 8px;
          margin-bottom: 30px;
          display: block;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          /* subtle shadow */
        }

        #roomPrice {
          font-size: 18px;
          font-weight: bold;
          color: #333;
        }

        #roomFacilities {
          background-color: #ffffff;
          padding: 1.5rem;
          border-radius: 1rem;
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          border: 1px solid #f3f4f6;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 1.5rem 1rem;
          list-style: none;
          /* அந்த dot-ஐ நீக்க */
          flex-wrap: wrap;
          /* இடம் இல்லை என்றால் கீழே வர */
          gap: 15px;
        }

        a#bookNowBtn {
          display: inline-block;
          margin-top: 20px;
          padding: 12px 20px;
          background: #25D366;
          color: #fff;
          text-decoration: none;
          border-radius: 5px;
          font-weight: bold;
        }

        a#bookNowBtn:hover {
          background: #1ebe5d;
        }

        #servicebox {
          background-color: #ffffff;
          padding: 1.5rem;
          border-radius: 1rem;
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          border: 1px solid #f3f4f6;
          /* margin-top: 10px; */
        }

        /* Title styling */
        .room-section h2 {
          font-size: 2rem;
          font-weight: 700;
          color: #1a1a1a;
          margin-bottom: 20px;
        }

        /* Paragraph styling */
        .room-section p {
          font-size: 1rem;
          line-height: 1.8;
          color: #555;
          margin-bottom: 20px;
        }

        /* Optional: add spacing between multiple paragraphs */
        .room-section p+p {
          margin-top: 15px;
        }

        /* Facilities List Design */
        #roomFacilities li {
          background-color: #f8f9fa;
          /* லேசான பின்னணி நிறம் */
          padding: 10px 15px;
          border-radius: 5px;
          display: flex;
          align-items: center;
          gap: 10px;
          /* Icon-க்கும் text-க்கும் இடையில் */
          border: 1px solid #ddd;
        }

        #roomFacilities li i {
          color: #e9ad28;
          /* Icon கலர் (Gold/Orange your theme) */
          font-size: 18px;
        }

        .carousel-container {
          position: relative;
          width: 100%;
          max-width: 1000px;
          margin: auto;
          overflow: hidden;
          border-radius: 10px;
        }

        .carousel-slide img {
          width: 100%;
          height: 450px;
          /* உங்களுக்கு ஏற்ற உயரத்தை வைக்கவும் */
          object-fit: cover;
          display: block;
        }

        /* பட்டன்கள் வடிவமைப்பு */
        .prev-btn,
        .next-btn {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(0, 0, 0, 0.5);
          color: white;
          border: none;
          padding: 15px;
          cursor: pointer;
          font-size: 20px;
          border-radius: 5px;
          transition: 0.3s;
        }

        .prev-btn:hover,
        .next-btn:hover {
          background: rgba(0, 0, 0, 0.8);
        }

        .prev-btn {
          left: 10px;
        }

        .next-btn {
          right: 10px;
        }

        .sidebar .box {
          background: #f8fbff;
          padding: 25px;
          margin-bottom: 30px;
          border-radius: 6px;
        }

        .sidebar h3 {
          margin-bottom: 20px;
          position: relative;
        }

        .sidebar h3::after {
          content: "";
          width: 30px;
          height: 2px;
          background: orange;
          position: absolute;
          left: 0;
          bottom: -8px;
        }

        .services {
          list-style: none;
        }

        .services li {
          padding: 10px 0;
          border-bottom: 1px solid #eaeaea;
          cursor: pointer;
        }

        .services li::before {
          content: "➜";
          color: orange;
          margin-right: 8px;
        }

        /* --- Our Room Sidebar Block Styling --- */
        .sidebar-rooms {
          display: flex;
          flex-direction: column;
          gap: 18px;
        }

        .sidebar-room-link {
          display: flex;
          align-items: flex-end;
          background: #222;
          border-radius: 8px;
          overflow: hidden;
          position: relative;
          height: 90px;
          text-decoration: none;
          margin-bottom: 0;
        }

        .sidebar-room-link img {
          width: 100px;
          height: 90px;
          object-fit: cover;
          flex-shrink: 0;
          border-radius: 8px 0 0 8px;
          transition: transform 0.23s;
        }

        .sidebar-room-link span {
          color: #fff;
          font-weight: 700;
          font-size: 1.18rem;
          margin-left: 16px;
          margin-bottom: 13px;
          letter-spacing: .4px;
          text-shadow: 0 2px 6px #222;
        }

        .sidebar-room-link:hover img {
          transform: scale(1.08);
        }

        @media (max-width: 1000px) {
          .room-detail-flex {
            flex-direction: column;
            gap: 24px;
            padding: 0 3vw;
          }

          .sidebar-rooms-outer {
            max-width: 100%;
            min-width: unset;
            width: 100%;
            margin-top: 40px;
          }

          .sidebar-rooms {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 12px;
          }

          .sidebar-room-link {
            min-width: 140px;
            width: 44vw;
            max-width: 180px;
            height: 75px;
            font-size: .97rem;
          }

          .sidebar-room-link img {
            width: 70px;
            height: 75px;
          }
        }

        @media (max-width: 600px) {
          .room-detail-flex {
            padding: 0 2vw;
            margin: 25px 0;
            gap: 20px;
          }

          .sidebar-room-link {
            width: 100vw;
            max-width: 100vw;
            min-width: 0;
            font-size: 1.03rem;
          }

          .sidebar-room-link img {
            width: 80px;
            height: 75px;
          }

          .carousel-slide img {
            height: 250px;
          }

          #roomFacilities {
            grid-template-columns: 1fr;
          }

          .popup-box {
            width: 90%;
          }
        }

        /* ---- Room Detail Related Images Below Button ---- */
        #room-gallery-rel {
          margin: 28px 0 8px 0;
        }

        .rel-title {
          font-size: 1.09rem;
          font-weight: 600;
          margin-bottom: 13px;
          color: #995a0e;
          letter-spacing: 0.03em;
        }

        .rel-images {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 14px;
          width: 100%;
        }

        .rel-img {
          min-width: 0;
          width: 100%;
          object-fit: cover;
          height: 400px;
          border-radius: 8px;
          border: 1.2px solid #e7e5e2;
          background: #f7f6f6;
          transition: transform 0.23s;
        }

        .rel-img:hover {
          transform: scale(1.05) rotate(-2deg);
          border-color: #b4975a;
        }

        @media (max-width: 900px) {
          .rel-img {
            height: 90px;
            
          }
        }

        @media (max-width: 600px) {
          .rel-images {
            grid-template-columns: repeat(2, 1fr);
            gap: 7px;
          }

          .rel-images img {
            width: 100%;
            display: block;
            object-fit: cover;
          }
        }

        .popup-overlay {
          position: fixed;
          inset: 0;
          background: rgba(0, 0, 0, 0.6);
          display: none;
          align-items: center;
          justify-content: center;
          z-index: 999;
        }

        .popup-box {
          background: #fff;
          padding: 25px;
          width: 320px;
          border-radius: 8px;
        }

        .popup-box h3 {
          margin-bottom: 15px;
        }

        .popup-box label {
          font-size: 14px;
          margin-top: 10px;
          display: block;
        }

        .popup-box input {
          width: 100%;
          padding: 8px;
          margin-top: 5px;
        }

        .popup-actions {
          display: flex;
          gap: 10px;
          margin-top: 20px;
        }

        .popup-actions button {
          flex: 1;
          padding: 10px;
          cursor: pointer;
        }

        .close-btn {
          background: #ccc;
        }

      /*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;
      }


      .brea-ser{
                  color: #6b2c2c;
                  background: #f5f3f0;
                  padding: 40px;
              }

      .services-section {
                  
                  padding: 80px 0;
                  background: white;
              }