@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* * {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
  } */

:root {
    --gold: #D4AF37;
    --gold-light: #E8C874;
    --dark: #1A1A1A;
    --light: #F8F6F2;
    --gray: #8C8C8C;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body{
    background-color: #fafafa !important;   /* clean canvas, matches the booking pages */
}

/* Hero call-to-action button */
.btn-book {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    transition: all 0.3s ease;
}
.btn-book:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.32);
}

@media (max-width: 768px) {
    .hero {
      height: 70vh; /* or a smaller fixed height */
      background-position: center; /* you might prefer center for mobile */
    }
  }

.hero {
    height: 100vh;
    background: 
     linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
     url('../images/hall.jpg') no-repeat top center;
    background-size: cover;
  }

.rooms{
    width: 100%;
    height: 100%;
    margin-top: 40px;
    padding: 40px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/rooms_back.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.rooms-body {
    display: flex;
    flex-direction: row;
    padding: 1rem;
    gap: 1.5rem;
    align-items: flex-start;
    color: #fff
}

.rooms-body img {
    width: 100%;
    height: 100%;
    max-width: 50%; 
    object-fit: contain;
}

.rooms-body-text {
    flex: 1;
    text-align: left;
}

.rooms button{
    padding: 0.7rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rooms button:hover {
    background-color: var(--gold);
    color: var(--dark) !important;
    transform: translateY(-2px);
}

.big-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    line-height: 1.15;
}

@media (max-width: 1200px){
    .rooms {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .rooms {
        background-attachment: scroll;
    }
    .rooms-body {
    flex-direction: column;
    text-align: center;
    }

    .rooms-body img {
        max-width: 100%;
        }
}

.part_item_directory {
    display: block;
    position: relative;
    color: #fff
}

.part_item_directory .wrp_item_content {
    background-color: rgb(18 23 34 / 50%);
    padding: 2.25rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: height .3s;
    transition: height .3s;
    height: 6.25rem;
}

.part_item_directory .wrp_item_content {
    right: 0;
    position: absolute;
    bottom: 0;
    left: 0
}

.part_item_directory img {
    max-width: 100%;
    height: auto;
    display: block;
  }

 a:hover.part_item_directory .wrp_item_content {
    height: 100%
}

.aboutPage{
    margin-top: 4rem;
}

.aboutPage .card-img{
    width: 100px;
    height: 100px;
    background-color: var(--gold-soft, #f3e9cf);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.aboutPage .card-img img{
    width: 50%;
    height: 50%;
}

.booking-section {
    background: linear-gradient(rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.3)), url('../images/gallery/Registan.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 5%;
    border-radius: 20px;
    margin: 50px 5%;
    text-align: center;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.booking-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.card{
    overflow: hidden;
}

.card:hover img{
    transform: scale(1.1);
    transition: 0.5s;
}

.contact-form {
    background-color: #ffffff; /* White background for the form area */
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
  }
  .contact-info {
    padding: 2rem;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }

  .contact-info iframe{
    width: 100%;
  }

  #contact .my-5 {
    margin-top: 8rem !important;
    margin-bottom: 3rem !important;
}



@media screen and (min-width: 1440px){
    header nav .items{
        margin-left: 11rem;
    }
}

@media screen and (max-width: 768px){
    header .mainNav{
        justify-content: space-between;
    }
    header .items{
        position: absolute;
        top: 57px;
        width: 100%;
        background-color: #E8F4FF;
        left: 0px;
    }
    header .items ul{
        display: flex;
        text-align: center;
        flex-direction: column !important;
        gap: 15px !important;
    }

    header nav > :last-child{
        position: absolute;
        top: 16.4rem;
        left: -6px;
        width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
        justify-content: center;
        margin-left: 10px;
        align-items: center;
        background-color: #E8F4FF;
    }

    .aboutPage .card-set{
        flex-direction: column;
        gap: 5rem;
    }

    .aboutPage .card{
        width: 100% !important;
    }

    .aboutPage   .about-p{
        width: 90% !important;
    }
}

@media (max-width: 1024px) {
    #nav_ul {
        gap: 1rem !important;
    }
    
    .aboutPage .card-set{
        flex-direction: column;
        gap: 5rem;
        align-items: center;
    }

    .aboutPage .card{
        width: 90% !important;
    }
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero {
    animation: fadeIn 0.8s ease-out;
}