/* ==========================================================================
   Design Global Settings
   ========================================================================== */
:root {
    --bg-dark-emerald: #101513;
    --gold-accent: #c0a980;
    --gold-hover: #a8946e;
    --text-muted: #777777;
    --text-dark: #222222;
    --bg-light-cream: #faf9f6;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #444444;
    font-size: 14px;
    line-height: 1.7;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Titles */
.title-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.25;
    color: var(--text-dark);
    margin-top: 5px;
}

.small-badge {
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 5px;
}

.lead-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.cursive-signature {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: #555555;
    margin-top: 15px;
}

/* Helper spacing utilities */
.section-padding {
    padding: 90px 0;
}
.margin-top-20 { margin-top: 20px; }
.margin-top-40 { margin-top: 40px; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-30 { margin-bottom: 30px; }
.margin-bottom-40 { margin-bottom: 40px; }
.text-gold { color: var(--gold-accent) !important; }
.text-white { color: #ffffff !important; }

/* Custom elements alignment */
.alignment-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold-accent);
    color: #ffffff;
    border: 1px solid var(--gold-accent);
    border-radius: 0;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 13px 24px;
    transition: all 0.3s ease;
}
.btn-gold:hover, .btn-gold:focus {
    background-color: var(--gold-hover);
    color: #ffffff;
    border-color: var(--gold-hover);
}

/* ==========================================================================
   Split Responsive Navbar & Header
   ========================================================================== */
.site-header {
    position: relative;
}

.navbar-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 0;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Links structure left */
.navbar-custom .navbar-nav > li > a {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    padding: 15px;
}
.navbar-custom .navbar-nav > li > a:hover {
    color: var(--gold-accent);
}

/* Logo block centered */
.navbar-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}
.navbar-brand-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}
.navbar-brand-custom .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
}

/* Action block right */
.navbar-right-box {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}
.phone-info {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1px;
}
.btn-book {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 8px 18px;
    background: transparent;
    transition: all 0.3s;
}
.btn-book:hover {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    color: #ffffff;
}

/* Hero Frame */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 95vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content-box {
    padding-top: 100px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 400;
}
.hero-subtitle {
    font-size: 15px;
    color: #e5e5e5;
    letter-spacing: 1.5px;
}

/* ==========================================================================
   Booking Bar Layout
   ========================================================================== */
.booking-section {
    position: relative;
    z-index: 99;
    margin-top: -60px;
}
.booking-bar {
    background-color: #2b3127; /* Muted deep army green as in template */
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.booking-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 15px;
}
.booking-col {
    flex: 1;
    min-width: 150px;
}
.booking-col-btn {
    flex: 1;
    min-width: 180px;
}
.booking-bar label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 8px;
}
.booking-bar .form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #ffffff;
    height: 46px;
    box-shadow: none !important;
}
.input-with-icon {
    position: relative;
}
.input-with-icon i {
    position: absolute;
    right: 15px;
    top: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
.select-custom {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
}

/* ==========================================================================
   Welcome / Slider Blocks
   ========================================================================== */
.section-badge-icon {
    margin-bottom: 20px;
}
.slider-wrapper {
    position: relative;
    padding: 0 40px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    color: #b5b5b5;
    transition: color 0.3s;
}
.slider-arrow:hover {
    color: var(--text-dark);
}
.prev-arrow { left: 0; }
.next-arrow { right: 0; }

.gallery-card {
    overflow: hidden;
}
.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
   Video Banner Frame
   ========================================================================== */
.video-banner-section {
    background-size: cover;
    background-position: center;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-trigger-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #ffffff;
    color: var(--text-dark);
    display: inline-block;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.play-trigger-btn:hover {
    transform: scale(1.08);
    color: var(--gold-accent);
}

/* ==========================================================================
   Accommodations Cards
   ========================================================================== */
.suite-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.3s;
}
.suite-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.suite-img-box {
    position: relative;
    overflow: hidden;
}
.suite-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 10px;
}
.suite-badge.dark-badge {
    background: #111111;
    color: #ffffff;
}
.suite-content {
    padding: 25px;
}
.suite-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
}
.suite-meta {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
}
.suite-meta span {
    font-size: 11px;
    color: var(--text-muted);
}
.suite-meta i {
    color: var(--gold-accent);
    margin-right: 4px;
}
.suite-link {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.suite-link i {
    font-size: 8px;
    margin-left: 3px;
}

/* Indicator dots */
.pagination-dots .dot {
    width: 7px;
    height: 7px;
    background-color: #dcdcdc;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.pagination-dots .dot.active {
    background-color: var(--gold-accent);
}

/* ==========================================================================
   Testimonial Segment
   ========================================================================== */
.testimonials-dark {
    padding: 100px 0;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}
.guest-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.5;
    border: none;
    margin-bottom: 25px;
    color: #ffffff;
}
.quote-author {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--gold-accent);
    margin-bottom: 12px;
}
.quote-stars {
    color: var(--gold-accent);
    font-size: 11px;
}

/* ==========================================================================
   Services Layout
   ========================================================================== */
.vertical-promo-box img {
    width: 100%;
}
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.icon-holder {
    font-size: 22px;
    color: var(--gold-accent);
    margin-top: 4px;
    width: 30px;
}
.text-holder h4 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 8px;
}
.text-holder p {
    font-size: 13px;
    color: var(--text-muted);
}
.landscape-decor img {
    width: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Newsletter Layout
   ========================================================================== */
.newsletter-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}
.newsletter-form-box {
    margin-top: 10px;
}
.input-inline-group {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 10px;
}
.input-inline-group .form-control {
    background: transparent;
    border: none;
    box-shadow: none !important;
    height: 45px;
    color: #ffffff;
    padding-left: 0;
}
.input-inline-group .form-control::placeholder {
    color: rgba(255,255,255,0.45);
}
.btn-subscribe {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding-right: 0;
}
.btn-subscribe i {
    margin-left: 8px;
}
.checkbox-box {
    margin-top: 15px;
}
.checkbox-box label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Footer Structure
   ========================================================================== */
.site-footer {
    background-color: var(--bg-dark-emerald);
    color: #a5a5a5;
    font-size: 13px;
}
.footer-top {
    padding: 70px 0 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer h5 {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 22px;
    margin-top: 0;
}
.site-footer p {
    color: #8a8d8b;
}
.site-footer a {
    color: #8a8d8b;
}
.site-footer a:hover {
    color: var(--gold-accent);
}
.social-row {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.social-row a {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s;
}
.social-row a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    background-color: #0c0f0e;
    padding: 25px 0;
}
.copyright-info {
    font-size: 11px;
    margin: 0;
    color: #666a67;
}
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-bottom-links li {
    display: inline-block;
    margin-left: 20px;
}
.footer-bottom-links li a {
    font-size: 10px;
    letter-spacing: 1px;
    color: #666a67;
}

/* ==========================================================================
   Media Breakpoints Setup
   ========================================================================== */
@media (max-width: 991px) {
    .navbar-logo-container {
        position: relative;
        left: 0;
        transform: none;
        top: 0;
    }
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
        margin-top: 12px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar-custom .navbar-nav {
        margin: 15px 0;
    }
    .navbar-right-box {
        margin-top: 15px;
        display: block;
    }
    .phone-info {
        display: block;
        margin-bottom: 10px;
    }
    .booking-row {
        flex-direction: column;
        align-items: stretch;
    }
    .booking-col {
        width: 100%;
    }
    .hero-title {
        font-size: 44px;
    }
    .title-serif {
        font-size: 30px;
    }
    .alignment-row {
        align-items: flex-start;
    }
    .social-row {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .xs-text-left {
        text-align: left !important;
    }
    .xs-text-center {
        text-align: center !important;
    }
    .footer-bottom-links {
        margin-top: 15px;
    }
    .footer-bottom-links li {
        margin: 0 10px;
    }
}
.room-full-slider{
    padding-top: 80px !important;
    padding-bottom: unset !important;
}
#eb_search_form, #submit_booking_form{
    background-color: #c0a980;
}
.single-eagle_rooms .navbar-custom{
    background-color: #000;
}

.page-id-42 .entry-header, .page-id-40 .entry-header, .page-id-38 .entry-header{
    position: absolute;
    background-image: url('../images/img-74-3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    z-index: -1;
    height: 300px;
    margin-bottom: 50px;
    top: 0;
}
.page-id-42 .entry-header:before, .page-id-40 .entry-header:before, .page-id-38 .entry-header:before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #00000052;
    content: "";
}
.page-id-42 .entry-header .entry-title, .page-id-40 .entry-header .entry-title, .page-id-38 .entry-header .entry-title{
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 170px;
}
.eb-checkout-page, .eb-search-page, .checkout-details{
    margin-top: 350px;
    padding-left: 100px;
    padding-right: 100px;
    color: #000;
}
.eb-page .checkout-payment-tabs{
    margin-top: 0;
    margin-right: 100px;
    margin-left: 100px;
}
.eb-page-header{
    background-repeat: no-repeat !important;
    background-position: center !important;
    min-height: 300px;
    background: url('../images/img-74-3.jpg') !important;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
}
.eb-page-header:before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #00000052;
    content: "";
}  
.eb-page-header .title{
    margin-top: 120px;
    position: relative;
}
.eb-archive-rooms{
    margin-top: 300px;
}
.eb-alert.eb-alert-error{
    margin-top: 300px;
}
.mob-nav{
    display: none;
}
.backface{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000c2;
    z-index: 9999;
    top: 0;
    left: -100%;
}
.sidenav{
    position: absolute;
    width: 70%;
    height: 100%;
    background-color: #fff;
    left: -100%;
    transition: ease-in-out 0.3s;
}
.sidenav ul li{
    border-bottom: 1px solid #33333330;
    line-height: 2.8;
}
.sidenav ul li a{
    color: #262626;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding-left: 10px;
    display: block;
}
.sidenav .close{
    position: absolute;
    right: -32px;
    background-color: #006262;
    opacity: 1;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    top: 0;
}
.terms{
    margin-top:300px;
    color:#000;
}
.terms p{
    font-size:16px;
    font-weight:normal;
    color:#333;
}
@media screen and (max-width:450px){
    .navbar{
        display: none;
    }
    .mob-nav{
        position: absolute;
        display: block;
        z-index: 99;
    }
    .mob-nav button{
        float: left;
        border: 1px solid #fff;
    }
    .mob-nav .logo-text{
        font-size: 20px;
        font-weight: bold;
        display: inline-block;
        margin-top: 10px;
        color: #fff;
    }
    .hero-section{
        height: 45vh;
        min-height: auto;
    }
    .room-full-slider{
        padding-top: 0 !important;
    }
    .eb-checkout-page, .eb-search-page, .checkout-details{
        padding-left: 30px;
        padding-right: 30px;
    }
    .eb-page .checkout-payment-tabs {
        margin-top: 30px;
        margin-right: 30px;
        margin-left: 30px;
    }
}