:root {
    --ink: #2B2622;        /* warm near-black */
    --slate: #6B6259;
    --hair: #E8E4DE;
    --mist: #F7F4EF;       /* warm cream */
    --accent: #c07300;     /* brass/gold */
    --deep: #111f11;       /* olive green secondary */
}
:root {
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}


 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    border-bottom: 1px solid #ffffff1a;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    padding: 24px 46px;
    box-sizing: border-box;
    height: 90px;
   background: rgba(43, 38, 34, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1000;
}
.nav_links{
    display: flex;
    gap: 30px;
}
.nav_links a{
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-serif);
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.nav_links a:hover{
     color: var(--accent);
     letter-spacing: 0.4px;
}
.inner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 38, 34, 0.35);
    z-index: 1;
}
.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--mist);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-btn:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.logo img{
    height: 58px;
    border-radius: 14px ;
    width: 110px;
    display: block;
    background: transparent;
}

.inner {
    background-image:
        linear-gradient(rgba(43,38,34,0.2), rgba(43,38,34,0.2)),
        url(images/firstimage.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero_content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
     position: relative;
    z-index: 2;
}

.hero_label {
    color: var(--mist);
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 92px);
    font-family: var(--font-serif);
    color: var(--hair);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.03;
}

.hero h1 em {
    color: var(--accent);
}

/* ---------- ABOUT ---------- */
.hotel_sec {
    padding: 100px 0;
    background: var(--mist);
}

.hotel_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hotel_content img {
    width: 50%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.hotel_info {
    flex: 1;
}

.hotel_label {
    font-family: var(--font-sans);
    text-transform: uppercase;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.hotel_content h2 {
    font-size: 32px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hotel_p {
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--slate);
    font-weight: 400;
    line-height: 1.7;
    max-width: 46ch;
}

/* ---------- ROOMS ---------- */
.rooms_suites {
    min-height: 400px;
    padding: 100px 0;
    background-image:
        linear-gradient(rgba(43,38,34,0.5), rgba(43,38,34,0.5)),
        url(images/blsh.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    box-sizing: border-box;
}

.hero_label {
    color: var(--mist);
    font-size: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: var(--font-serif);
    margin-bottom: 16px;
    margin-left: 12px;
}

.hero h1 {
   font-size: clamp(72px, 12vw, 140px);
    font-family: var(--font-serif);
    color: var(--hair);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.03;
}

.hero h1 em {
    color: var(--accent);
}

/* ---------- ABOUT ---------- */
.hotel_sec {
    padding: 100px 0;
    background: var(--mist);
}

.hotel_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hotel_content img {
    width: 50%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.hotel_info {
    flex: 1;
}

.hotel_label {
    font-family: var(--font-sans);
    text-transform: uppercase;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.hotel_content h2 {
    font-size: 32px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hotel_p {
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--slate);
    font-weight: 400;
    line-height: 1.7;
    max-width: 46ch;
}

/* ---------- ROOMS ---------- */
.rooms_suites {
    min-height: 400px;
    padding: 100px 0;
    background-image:
        linear-gradient(rgba(43,38,34,0.5), rgba(43,38,34,0.5)),
        url(images/cccc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    box-sizing: border-box;
}
.rooms_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 44px;
    position: relative;
    z-index: 2;
    color: var(--mist);
}

.rooms_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rooms_content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 26px;
    font-family: var(--font-serif);
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        
}
.rooms_content li {
    position: relative;
    cursor: pointer;
    width: fit-content;   /* so the underline matches the text width, not the full column */
}

.rooms_content li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.rooms_content li:hover::after {
    width: 100%;
}
.rooms_content .room_btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 20px;
    border: 1px solid var(--hair);
    border-radius: 999px;
    color: var(--slate);
    background-color: var(--hair);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
     
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.rooms_content .room_btn:hover {
    background-color:transparent;
    border-color: var(--accent);
    color: var(--accent);
}
footer {
    padding: 40px 80px;
    background: #201C19;
    
}
.footer_content {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* spread them out */
    max-width: 1200px;
    margin: 0 auto;
    min-height: 200px;
    
}
.footer_p { 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--mist);
    gap: 20px;
    font-size: 16px;
    font-family: var(--font-sans);
    font-weight: 400;
letter-spacing: 1px;
}
.logo_footer img{
      height: 80px;
    border-radius: 14px ;
    width: 130px;
    display: block;
    background: transparent;
}
.footer_links {
display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_links a{
    
    text-decoration: none;
    color: var(--mist);
    font-family: var(--font-sans);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.footer_links a:hover{
   
    color: var(--accent);
}
.copywrite {
    text-align: center;
    color: var(--mist);
    font-size: 13px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.copywrite a{
    font-size: 14px;
    color: var(--accent);
}
.rooms {
    padding: 40px 80px;
    background-color: var(--mist);
 overflow: hidden;
}
.room_content{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rooms_label{
    font-size: 12px;
    margin-bottom: 24px;
    font-family: var(--font-sans);
    letter-spacing: 1.2px;
    color: var(--accent);
    font-weight: 400;
}
.room_content h2{
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--ink);
    font-family: var(--font-sans);
    margin-bottom: 26px;
    font-weight: 400;
}
.rooms_intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 60px;
    font-family: var(--font-sans);
    color: var(--slate);
    max-width: 56ch;
}
.room_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
      
      row-gap: 60px;      /* Space between rows */
    column-gap: 30px;   /* Space between columns */
}
.room_card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}
.room_card h3{
    font-size: 26px;
    margin-top: 6px;
    margin-bottom: 16px;
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.room_spec{
    font-size: 12px;
    color: var(--accent);
    font-family: var(--font-sans);
    letter-spacing: 1.4px;
    font-weight: 300;
    flex-shrink: 0;
    min-width: 120px;
    
}
.room_desc {
    font-size: 14px;
    max-width: 60ch;
    color: var(--slate);
    font-family: var(--font-sans);
    font-weight: 400;
}
.info {
    display: flex;
    gap: 50px;
    align-items:center;
    margin-top:10px;
    box-sizing: border-box;
    max-width: 900px;
    
}
.btn_room_suites{
    text-decoration: none;
     white-space: nowrap;
    flex-shrink: 0;
     margin-left: auto;
    display: inline-flex;
    padding: 10px 16px;
    text-align: center;
    background-color: var(--hair);
    color: var(--accent);
    border: 0.5px solid var(--hair);
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.btn_room_suites:hover{
    border-color: var(--slate);
    color: var(--slate);
    background-color: transparent;
}
.room_ending{
    padding: 80px ;
    background-color: var(--mist);
    border-top: 0.5px solid var(--hair);
    height: 350px;
}
.ending_content{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
}
.ending_content h2{
    font-size: 36px;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1;
}
.end_desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--slate);
    font-weight: 300;
}
.end_btn{
    text-decoration: none;
    padding: 10px 18px;
    background-color: var(--ink);
    color: var(--accent);
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid var(--hair);
    font-family: var(--font-sans);
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease ;
}
.end_btn:hover{
     border-color: var(--ink);
    color: var(--accent);
    background-color: transparent;
}
.experiences{
    padding: 80px 10px;
    background-color: var(--mist);
    
}
.experiences_content{
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    gap: 30px;
    align-items: flex-start;
}
.experiences_lebel{
    font-size: 12px;
    font-family: var(--font-sans);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    font-weight: 400;
}
.experiences_content h2{
    font-size: 42px;
    font-family: var(--font-sans);
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 8px;
}
.exp_desc{
    font-size: 16px;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 40px;
}
.exp_grid{
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.exp_card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 0 0 16px 0;
}
.label_exp {
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    font-family: var(--font-sans);
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    padding-left: 20px;
}
.exp_card h3{
      font-size: 16px;
      font-family: var(--font-sans);
      font-weight: 400;
      color: var(--slate);
      padding-left: 20px;
}
.gallery{
       padding-top: 140px;
       background-color: var(--hair);
       
}
.gallery_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.gallery_label {
    font-size: 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gallery_content h1{
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--ink);
}
.gallery_desc{
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    color: var(--slate);
    max-width: 60ch;
    margin-bottom: 60px;
    
}
.gallery_grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.gallery_card img{
    width: 100%;
    object-fit: cover;
    height: 350px;
    border-radius: 8px;
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
   
}
.contact {
    padding: 180px 0;
    background-color: var(--mist);
   
}
.contact_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    
}
.contact_form {
    flex: 1;
    max-width: 480px;
}
.contact_info{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
    height: 300px;
}
.contact_label {
    font-size: 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}
.contact_info h1{
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1;
}
.contact_desc {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate);
    max-width: 46ch;
}
.field label {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 8px;
}

.field input,
.field textarea {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--slate);
    opacity: 0.6;
}

.contact_btn {
    background: var(--ink);
    color: var(--mist);
    border: 1px solid var(--ink);
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact_btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--mist);
}
@media (max-width: 768px) {

    /* rows become columns */
    .hotel_content,
    .contact_content,
    .rooms_content,
    .footer_content,
    .info {
        flex-direction: column;
        align-items: flex-start;
    }

    /* nav */
    .nav_links {
        display: none;
    }

    /* SECTIONS — vertical breathing room, 24px sides */
    .hotel_sec,
    .rooms_suites,
    .experiences,
    .rooms,
    .gallery,
    .contact {
        padding: 72px 24px;
    }

    /* interior pages clear the fixed nav */
    .rooms,
    .gallery,
    .contact {
        padding-top: 110px;
    }

    /* CONTAINERS — no extra side padding, sections handle it */
    .hotel_content,
    .rooms_content,
    .room_content,
    .experiences_content,
    .contact_content,
    .gallery_content,
    .footer_content {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        gap: 40px;
    }

    /* GRIDS — single column, generous gap */
    .exp_grid,
    .room_grid,
    .gallery_grid {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* CARDS — full width, space between them */
    .exp_card,
    .room_card,
    .gallery_card {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 48px;
    }

    /* IMAGES */
    .exp_card img,
    .room_card img,
    .gallery_card img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 260px;
        margin-bottom: 20px;
    }

    .hotel_content img {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    /* TYPE — smaller, with room to breathe */
    h1 {
        font-size: clamp(40px, 11vw, 56px);
        line-height: 1.05;
    }

    h2 {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    p {
        max-width: 100%;
        line-height: 1.7;
    }

    /* FORM */
    .contact_form,
    .contact_info {
        width: 100%;
        max-width: 100%;
    }

    .field {
        margin-bottom: 20px;
    }

    /* ROOM CARD INFO ROW */
    .info {
        gap: 14px;
        margin-bottom: 8px;
    }

    .btn_room_suites {
        margin-left: 0;
        margin-top: 8px;
    }

    /* FOOTER */
    .footer_content {
        align-items: center;
        text-align: center;
        gap: 32px;
        padding: 48px 0;
    }

    .footer_links {
        gap: 16px;
    }
}