/*
Theme Name: River Side Resort Investor Theme
Theme URI: https://riversideresortsyl.com
Author: Custom Development
Description: High-end corporate gold and navy investor theme for River Side Hotel and Resort Sylhet.
Version: 12.0.0
Text Domain: riverside-resort
*/

:root {
    --hero-yellow: #FFCB05;
    --brand-gold: #D4AF37;
    --midnight-navy: #000033;
    --solid-black: #000000;
    --pure-white: #FFFFFF;
    --light-bg: #F4F6FA;
    --text-dark: #1A1A1A;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--midnight-navy);
    line-height: 1.25;
}

/* TOP BAR */
.top-bar {
    background-color: var(--solid-black);
    color: #FFFFFF;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 2px solid var(--hero-yellow);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info i {
    color: var(--hero-yellow);
    margin-right: 8px;
}

/* HEADER */
.main-header {
    background-color: var(--pure-white);
    border-bottom: 3px solid var(--midnight-navy);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--midnight-navy);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-gold);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    text-decoration: none;
    color: var(--solid-black);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list a:hover {
    color: var(--hero-yellow);
}

.header-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-label {
    font-size: 11px;
    color: var(--solid-black);
    margin-bottom: 4px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--midnight-navy);
    color: #FFFFFF;
    font-size: 12px;
    text-decoration: none;
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--midnight-navy);
}

/* FLOATING HERO SECTION */
.hero-section-floating {
    position: relative;
    padding: 80px 20px 60px 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 480px;
}

.hero-title-yellow {
    color: var(--hero-yellow) !important;
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95);
    margin-bottom: 8px;
}

.hero-subtitle-white {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95);
}

.hero-tagline-floating {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    max-width: 850px;
    margin: 40px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.95);
}

.hero-buttons-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

/* BUTTONS */
.btn {
    display: inline-block !important;
    width: auto !important;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-navy {
    background: var(--midnight-navy);
    color: #FFFFFF;
    border: 2px solid var(--hero-yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-navy:hover {
    background: var(--hero-yellow);
    color: var(--solid-black);
}

/* HIGHLIGHTS SECTION */
.highlights-standalone-section {
    background-color: var(--midnight-navy);
    padding: 50px 20px;
    color: #FFFFFF;
}

.section-title-center {
    text-align: center;
    color: var(--hero-yellow);
    font-size: 26px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.highlights-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.highlight-card-simple {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 3px solid var(--hero-yellow);
    padding: 22px 15px;
    text-align: center;
    border-radius: 4px;
}

.highlight-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--hero-yellow);
    font-family: 'Playfair Display', serif;
}

.highlight-text {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 5px;
}

/* LAYOUT & GRIDS */
.section-padding {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--midnight-navy);
}

.img-clear-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.grid-2-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.img-frame-equal {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.img-frame-equal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.closing-cta-section {
    background: var(--midnight-navy);
    color: #FFFFFF;
    padding: 50px 30px;
    border-radius: 4px;
    text-align: center;
    margin-top: 40px;
    border-top: 4px solid var(--hero-yellow);
}

.closing-cta-section h2 {
    color: var(--hero-yellow);
    margin-bottom: 12px;
}

.closing-cta-section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #E0E0E0;
}

/* FOOTER STYLES (Strict Match to image_92a5b9.png) */
.site-footer {
    background-color: #000033 !important;
    color: #FFFFFF !important;
    font-size: 14px;
    margin-top: 60px;
    border-top: 4px solid #FFCB00;
}

.footer-top {
    padding: 60px 20px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
}

.footer-logo {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.footer-logo span {
    display: block;
    font-size: 14px;
    color: #FFCB00 !important;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #E0E0E0 !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social-row {
    display: flex;
    gap: 14px !important;
    align-items: center;
}

.footer-social-row a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #FFCB00 !important;
    color: #000033 !important;
    font-size: 16px;
    text-decoration: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-social-row a:hover {
    background-color: #FFFFFF !important;
    color: #000033 !important;
}

.investor-box-frame {
    border: 1px solid #B8962E;
    padding: 35px 25px;
    text-align: center;
    background-color: rgba(0, 0, 51, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.investor-serif-text {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 25px;
    max-width: 380px;
}

.btn-yellow-solid {
    display: inline-block;
    background-color: #FFCB00 !important;
    color: #000033 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 24px;
    text-decoration: none !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-yellow-solid:hover {
    background-color: #FFFFFF !important;
    color: #000033 !important;
}

.footer-menu-title {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid #FFCB00;
    padding-bottom: 6px;
    display: inline-block;
}

.footer-menu-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu-list li {
    list-style-type: none !important;
    margin-bottom: 10px !important;
}

.footer-menu-list a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-menu-list a:hover {
    color: #FFCB00 !important;
}

.footer-bottom {
    background-color: #000022;
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #8888AA;
    text-align: center;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block !important;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #FFFFFF !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        padding: 20px;
        z-index: 9999;
    }

    .main-nav.active {
        display: block !important;
    }

    .nav-list {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
    }

    .header-socials {
        display: none;
    }

    .hero-title-yellow {
        font-size: 32px;
    }

    .hero-subtitle-white {
        font-size: 18px;
    }

    .grid-2, .grid-2-equal, .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .btn {
        width: 100% !important;
        text-align: center;
    }
}