```css
/* =========================================
   GRACEDAY INN - LUXURY HOTEL CSS
========================================= */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cabin', sans-serif;
    background: linear-gradient(135deg, #fdf8f2, #f6eee3);
    color: #222;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* ======================================
   HEADER SECTION
====================================== */

.header-section {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 15px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Make header slimmer */
.menu-item {
    padding: 2px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;   /* was 100px */
    width: auto;
}

/* Navigation container */
.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 65px;
}

/* Main menu */
.mainmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainmenu ul li {
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.mainmenu ul li a {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    line-height: 65px;     /* vertically centers menu items */
}

.mainmenu ul li a:hover {
    color: #c89b3c;
}

/* Dropdown */
.submenu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 220px;
    background: #fff;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .3s;
}

.submenu li {
    display: block !important;
    margin: 0 !important;
}

.submenu li a {
    display: block;
    line-height: normal;
    padding: 10px 20px;
}

.menu-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search form */
.header-search-form {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.header-search-form button {
    background: none;
    border: none;
    color: #c89b3c;
    font-size: 18px;
    cursor: pointer;
}

.header-search-form input {
    width: 170px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 13px;
}

.mt-3 {
    margin-top: 0 !important;
}
/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 991px) {

    .nav-menu {
        display: block;
    }

    .header-search-form {
        margin-top: 15px;
        margin-left: 0;
    }

    .header-search-form input {
        width: 100%;
    }

    .mainmenu ul li {
        margin-left: 12px;
    }

    .logo img {
        max-height: 50px;
    }
}

@media (max-width: 767px) {

    .menu-item {
        padding: 5px 0;
    }

    .logo img {
        max-height: 45px;
    }

    .mainmenu ul li a {
        font-size: 13px;
    }

    .header-search-form input {
        height: 35px;
        font-size: 12px;
    }
}


/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    padding: 190px 0 120px; /* top right/left bottom */
    background: linear-gradient(
        rgba(20,20,20,0.55),
        rgba(20,20,20,0.55)
    ),
    url('../img/tryptych.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-text h1 {
    font-size: 72px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text p {
    color: #f5f5f5;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 35px;
}

.primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c89b3c, #e7be67);
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(200,155,60,0.3);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #b5872d, #d9aa4b);
}

/* =========================================
   BOOKING FORM
========================================= */

.booking-form {
    background: rgba(255,255,255,0.96);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.booking-form h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-left: 15px;
    margin-bottom: 15px;
}

.booking-form button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #1f1f1f, #333);
    color: #fff;
    font-weight: 700;
}

.booking-form button:hover {
    background: linear-gradient(135deg, #c89b3c, #d9aa4b);
}

/* =========================================
   SECTION TITLES
========================================= */

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title span {
    color: #c89b3c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    margin-top: 12px;
}

/* =========================================
   ABOUT SECTION
========================================= */

.aboutus-section {
    padding: 100px 0;
}

.about-text p {
    font-size: 17px;
    line-height: 32px;
    color: #666;
}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section,
.about-icon-services {
    padding: 90px 0;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 22px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.service-item i {
    font-size: 48px;
    color: #c89b3c;
    margin-bottom: 20px;
    display: inline-block;
}

.service-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.service-item p {
    color: #666;
    line-height: 28px;
}

/* =========================================
   ROOMS SECTION
========================================= */

.hp-room-section,
.rooms-section {
    padding: 70px 0;
}

/* Main room card */
.room-item,
.hp-room-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    margin-bottom: 22px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

/* Hover */
.room-item:hover,
.hp-room-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

/* Smaller images */
.room-item img,
.hp-room-item img {
    width: 100%;
    height: 165px;   /* reduced from 200px */
    object-fit: cover;
}

/* Smaller text area */
.ri-text,
.hr-text {
    padding: 14px 15px;
}

/* Room titles */
.ri-text h4,
.hr-text h3 {
    font-size: 18px;   /* reduced from 24px */
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

/* Price */
.ri-text h3,
.hr-text h2 {
    color: #c89b3c;
    margin-bottom: 12px;
    font-size: 20px;   /* reduced */
}

/* Smaller "/Night" text */
.ri-text h3 span,
.hr-text h2 span {
    font-size: 12px;
}

/* Table */
.ri-text table {
    width: 100%;
    margin-bottom: 8px;
}

.ri-text table td {
    padding: 3px 0;
    color: #666;
    font-size: 12px;   /* smaller */
    line-height: 1.4;
}

/* Left labels */
.ri-text .r-o {
    font-weight: 700;
    color: #222;
    width: 72px;
    font-size: 12px;
}

/* Smaller button */
.room-item .primary-btn,
.hp-room-item .primary-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 30px;
    margin-top: 10px;
}

/* Better spacing between boxes */
.rooms-section .row > div,
.hp-room-section .row > div {
    padding-left: 12px;
    padding-right: 12px;
}

/* Optional: slightly narrower room cards */
.col-lg-4 .room-item {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile optimization */
@media only screen and (max-width: 767px) {

    .room-item img,
    .hp-room-item img {
        height: 150px;
    }

    .ri-text h4,
    .hr-text h3 {
        font-size: 16px;
    }

    .ri-text h3,
    .hr-text h2 {
        font-size: 18px;
    }

    .ri-text table td {
        font-size: 11px;
    }
}
/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-section {
    padding: 90px 0;
    background: #fff;
}

.ts-item {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.ts-item p {
    font-size: 18px;
    line-height: 32px;
    color: #555;
    margin-bottom: 20px;
}

.ts-item h5 {
    color: #c89b3c;
}

/* =========================================
   FOOTER
========================================= */

.footer-section {
    background: #111;
    color: #bbb;
    padding: 70px 0 30px;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: #bbb;
}

.footer-section a:hover {
    color: #c89b3c;
}

.footer-section h6 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.fa-social a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #222;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin-right: 8px;
}

.fa-social a:hover {
    background: #c89b3c;
}

/* =========================================
   GALLERY
========================================= */

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-item.large-item {
    height: 625px;
}

.gi-text {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.gi-text h3 {
    color: #fff;
    font-size: 28px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media only screen and (max-width: 991px) {

    .mainmenu ul {
        text-align: center;
        margin-top: 20px;
    }

    .mainmenu ul li {
        margin: 0 12px;
    }

    .hero-text h1 {
        font-size: 52px;
    }

    .booking-form {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {

    .hero-section {
        padding: 90px 0;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .service-item,
    .room-item {
        margin-bottom: 25px;
    }
}
/* =================================
   CONTACT PAGE
================================= */

.contact-section {
    padding: 100px 0;
    background: #faf8f4;
}

/* Contact Info */

.contact-text p {
    color: #666;
    line-height: 28px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    padding: 22px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 24px;
    color: #c89b3c;
    min-width: 30px;
}

.contact-card h5 {
    margin-bottom: 5px;
    color: #222;
    font-weight: 700;
}

.contact-card p {
    margin-bottom: 0;
}

/* Form Container */

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Labels */

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

/* Django Inputs */

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #c89b3c;
    box-shadow: 0 0 10px rgba(200,155,60,0.2);
    outline: none;
}

/* Button */

.contact-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        #c89b3c,
        #e7be67
    );
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200,155,60,0.35);
}

/* Compact footer: thinner and four stacked rows */
.footer-section.footer-thin.footer-dark {
    padding: 14px 0;
    background: #111;
    font-size: 14px;
    color: #fff;
}
.footer-section.footer-thin.footer-dark .footer-col {
    padding: 6px 12px;
}
.footer-section.footer-thin.footer-dark .about-col .logo img {
    max-height: 40px;
}
.footer-section.footer-thin.footer-dark .ft-about p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #ddd;
}
.footer-section.footer-thin.footer-dark .fa-social a { color: #fff; margin-right: 8px; }
.footer-section.footer-thin.footer-dark .ft-contact h6,
.footer-section.footer-thin.footer-dark .ft-newslatter h6 {
    color: #fff; font-weight:700; margin-bottom:6px;
}
.footer-section.footer-thin.footer-dark .ft-contact ul {
    list-style: none; padding: 0; margin: 6px 0 0; color: #ddd; font-size:13px;
}
.footer-section.footer-thin.footer-dark .ft-newslatter p { margin:6px 0 8px; color:#ddd; font-size:13px }
.footer-section.footer-thin.footer-dark .fn-form input { padding:8px 10px; border-radius:6px; border:1px solid #333; background:#222; color:#fff; margin-right:8px }
.footer-section.footer-thin.footer-dark .fn-form button { background:transparent; border:1px solid #333; color:#fff; padding:8px 10px; border-radius:6px }
.footer-section.footer-thin.footer-dark .footer-links ul { list-style:none; padding:0; margin:0; }
.footer-section.footer-thin.footer-dark .footer-links ul li { margin-bottom:6px }
.footer-section.footer-thin.footer-dark .footer-links ul li a { color:#ddd; text-decoration:none; font-size:13px }
.footer-section.footer-thin.footer-dark .co-text { font-size:13px; color:#999 }
@media (max-width: 991px) {
    .footer-section.footer-thin.footer-dark .footer-col { width:50%; float:left }
}
@media (max-width: 575px) {
    .footer-section.footer-thin.footer-dark .footer-col { width:100%; float:none }
    .footer-section.footer-thin.footer-dark .co-text { text-align:center }
}

/* footer bottom copyright row */
.footer-section .footer-bottom {
    padding: 8px 0 6px;
    background: transparent;
}
.footer-section.footer-thin.footer-dark .footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

/* =====================================
   MOBILE MENU BUTTON
===================================== */

/* Hide menu icon by default */
.slicknav_menu {
    display: none;
}

/* Show only on tablets and phones */
@media only screen and (max-width: 991px) {

    /* Hide desktop menu */
    .mainmenu {
        display: none;
    }

    /* Show hamburger icon */
    .slicknav_menu {
        display: block;
        background: transparent;
    }

}
/* =====================================
   MOBILE MENU TEXT COLOR
===================================== */
@media only screen and (max-width: 991px) {

    /* Mobile menu background */
    .slicknav_menu {
        background: #ffffff !important;
    }

    /* Main menu links */
    .slicknav_nav a {
        color: #000 !important;
        font-size: 15px;
        font-weight: 600;
    }

    /* Hover effect */
    .slicknav_nav a:hover {
        color: #c89b3c !important;
        background: transparent !important;
    }

    /* Dropdown items */
    .slicknav_nav ul li a {
        color: #000 !important;
    }

    /* Menu icon */
    .slicknav_btn {
        background: transparent !important;
    }

    /* Hamburger bars */
    .slicknav_icon-bar {
        background-color: #000 !important;
    }
}
/* =========================
   MOBILE MENU STYLING
========================= */
@media only screen and (max-width: 991px) {

    /* "MENU" text */
    .slicknav_menutxt {
        color: #000 !important;
        font-weight: 600;
        font-size: 16px;
    }

    /* Hamburger icon lines */
    .slicknav_icon-bar {
        background-color: #000 !important;
    }

    /* Menu links */
    .slicknav_nav li a {
        color: #000 !important;
    }

    /* Hover color */
    .slicknav_nav li a:hover {
        color: #c89b3c !important;
        background: transparent !important;
    }

    /* White background for mobile menu */
    .slicknav_menu {
        background: #fff !important;
    }
}
/* Remove bottom search popup */
.search-model {
    display: none !important;
}
/* Hide search bar everywhere by default */
.mobile-search{
    display:none;
}

/* Show search only in mobile menu */
@media only screen and (max-width: 991px){

    .mobile-search{
        display:block;
        margin-top:15px;
        padding-top:15px;
        border-top:1px solid #ddd;
    }

    .mobile-search .header-search-form{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .mobile-search input{
        width:100%;
        height:40px;
        border:1px solid #ddd;
        border-radius:30px;
        padding:0 15px;
        color:#000;
    }

    .mobile-search button{
        width:40px;
        height:40px;
        border:none;
        border-radius:50%;
        background:#c89b3c;
        color:#fff;
    }
}

/* ==========================================
   PORTAL ROOM TABLE
========================================== */

.room-row{
    cursor:pointer;
    transition:all .25s ease;
}

.room-row:hover{
    background:#f8f9fa;
    transform:scale(1.003);
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.room-row td{
    vertical-align:middle;
}