/* ═══════════════════════════════════════════════════════
   SRJ HOTELS — SHARED DESIGN SYSTEM
   Used by: index.html · red-rose.html · crown-and-smoke.html
   Theme: Gold (#c9a84c) + Crimson (#8b1a2e) on deep black
═══════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════ */
:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5ecce;
    --gold-dark: #8b6914;
    --crimson: #8b1a2e;
    --crimson-lt: #b82040;
    --crimson-dk: #5c0e1c;
    --rose: #c9304e;
    --deep: #080507;
    --dark: #110910;
    --card: #180d16;
    --card-lt: #20101e;
    --text: #f2e8df;
    --text-dim: #e2cbbd;
    --text-muted: #e2d0c5;
    --border: rgba(201, 168, 76, 0.12);
    --border-rose: rgba(139, 26, 46, 0.28);
    --font-display: "Cinzel", serif;
    --font-serif: "Playfair Display", serif;
    --font-body: "Cormorant Garamond", serif;
    --font-wide: "Bebas Neue", sans-serif;
}

html.light {
    --deep: #f7f1e3;
    --dark: #ede3ce;
    --card: #fdfaf4;
    --card-lt: #f5ede0;
    --text: #1c1008;
    --text-dim: #7a5540;
    --text-muted: #a07060;
    --border: rgba(139, 26, 46, 0.12);
    --border-rose: rgba(139, 26, 46, 0.22);
}
html.light body {
    background: var(--deep);
    background-image:
        radial-gradient(
            ellipse 120% 60% at 50% 0%,
            rgba(201, 168, 76, 0.06) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 80% 80% at 100% 100%,
            rgba(139, 26, 46, 0.04) 0%,
            transparent 60%
        );
}
html.light nav {
    background: rgba(247, 241, 227, 0.97) !important;
    border-bottom: 1px solid rgba(139, 26, 46, 0.1);
}
html.light nav.scrolled {
    box-shadow: 0 2px 28px rgba(139, 26, 46, 0.08) !important;
}
html.light .nav-link {
    /* color: var(--text-dim) !important; */
    color: #ffffff !important;
}
html.light .nav-link:hover {
    color: var(--crimson) !important;
}
html.light .nav-logo {
    color: var(--crimson) !important;
}
html.light .mobile-menu {
    background: rgba(247, 241, 227, 0.99) !important;
}
html.light .mobile-menu a {
    color: var(--text) !important;
}
html.light footer {
    background: #160a0e !important;
}
html.light .footer-col a {
    color: rgba(240, 230, 211, 0.65) !important;
}
html.light .footer-col a:hover {
    color: var(--gold-light) !important;
}
html.light #theme-btn,
html.light #theme-toggle,
html.light #theme-toggle-mobile {
    border-color: rgba(139, 26, 46, 0.35) !important;
    color: var(--crimson) !important;
}

/* ══════════════════════════════════ RESET ══════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--deep);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
    opacity: 0.3;
}

/* ══════════════════════════════════ NAV ══════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: linear-gradient(to bottom, rgba(8, 5, 7, 0.96), transparent);
    transition:
        background 0.4s,
        box-shadow 0.4s;
}
nav.scrolled {
    background: rgba(8, 5, 7, 0.97) !important;
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.55);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: color 0.3s;
}
.nav-logo .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 5px;
    color: var(--crimson-lt);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: -2px;
}
.nav-logo:hover {
    color: var(--gold-light);
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2.6rem;
    list-style: none;
}
.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 1rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#theme-btn,
#theme-toggle {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
#theme-btn:hover,
#theme-toggle:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
}

.nav-cta,
.nav-book {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--deep);
    background: var(--gold);
    padding: 0.5rem 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid var(--gold);
    font-weight: 800;
}
.nav-cta:hover,
.nav-book:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
}

/* ══════════════════════════════════ FOOTER ══════════════════════════════════ */
footer {
    background: #0c0508;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 2.5rem 2.5rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}
.footer-tagline {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}
.footer-parent {
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 0.5rem;
    display: block;
}
.footer-col h4 {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.55rem;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-accent {
    color: #ffffff;
    font-style: italic;
}

.footer-accent a {
    color: #ffffff;
    font-style: italic;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-accent a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--text-dim);
    transition: all 0.3s;
}
.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════ SECTION UTILS ══════════════════════════════════ */
section {
    position: relative;
    z-index: 2;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.section-alt {
    background: var(--dark);
}

.section-label {
    font-size: 0.62rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--crimson-lt);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--crimson-lt);
}
.section-label.gold-label {
    color: var(--gold);
}
.section-label.gold-label::before {
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
}
.section-title em {
    color: var(--gold);
    font-weight: 400;
}

.srj-line {
    width: 50px;
    height: 1px;
    margin: 1.4rem 0;
    background: linear-gradient(to right, var(--crimson), var(--gold));
    opacity: 0.7;
}

/* ══════════════════════════════════ BUTTONS ══════════════════════════════════ */
.btn-primary {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--crimson);
    color: var(--gold-pale);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--crimson);
    display: inline-block;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--crimson-lt);
    border-color: var(--crimson-lt);
}

.btn-gold {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--deep);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    display: inline-block;
    cursor: pointer;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-outline {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    color: var(--text);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(242, 232, 223, 0.3);
    display: inline-block;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-rose-outline {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--rose);
    color: #fff;
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--rose);
    display: inline-block;
    cursor: pointer;
}
.btn-rose-outline:hover {
    background: transparent;
    color: var(--rose);
}

/* ══════════════════════════════════ REVEALS ══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s,
        transform 0.75s;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.r1 {
    transition-delay: 0.1s;
}
.r2 {
    transition-delay: 0.2s;
}
.r3 {
    transition-delay: 0.3s;
}
.r4 {
    transition-delay: 0.4s;
}

/* ══════════════════════════════════ KEYFRAMES ══════════════════════════════════ */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes ring-pulse {
    0%,
    100% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.22;
        transform: translate(-50%, -50%) scale(1.04);
    }
}
@keyframes bounce-cue {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

/* ══════════════════════════════════ STRIP ══════════════════════════════════ */
.strip-bar {
    background: var(--crimson-dk);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.strip-inner {
    display: flex;
    gap: 4rem;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.7);
    animation: scroll-strip 32s linear infinite;
}
.strip-dot {
    color: var(--gold);
    font-size: 0.45rem;
}
@keyframes scroll-strip {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════ STATS BAR ══════════════════════════════════ */
.stats-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid var(--border);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* ══════════════════════════════════ TESTIMONIALS ══════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.testimonial-card {
    background: var(--card);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.28);
}
.t-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.t-text {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.t-author {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.t-brand {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ══════════════════════════════════ CONTACT BLOCKS ══════════════════════════════════ */
.contact-info-list {
    display: flex;
    flex-direction: column;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child {
    border-top: 1px solid var(--border);
}
.c-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.c-label {
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--crimson-lt);
    margin-bottom: 0.3rem;
}
.c-value {
    font-size: 1rem;
    color: var(--text);
}
.c-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.c-value a:hover {
    color: var(--gold);
}

/* ══════════════════════════════════ FORMS ══════════════════════════════════ */
.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--dark);
    border: 1px solid rgba(201, 168, 76, 0.12);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
}
.form-input:focus {
    border-color: var(--gold);
}
.form-input::placeholder {
    color: var(--text-muted);
}
select.form-input {
    cursor: pointer;
}
select.form-input option {
    background: #180d16;
    color: var(--text);
}
textarea.form-input {
    resize: vertical;
    min-height: 100px;
}
.form-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ══════════════════════════════════ RESPONSIVE ══════════════════════════════════ */
@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }
    .nav-center,
    .nav-book,
    .nav-cta,
    #theme-btn,
    #theme-toggle {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 199;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }
    .mobile-menu a {
        font-size: 1.5rem;
        color: var(--text);
        text-decoration: none;
        letter-spacing: 3px;
        font-family: var(--font-serif);
        transition: color 0.3s;
    }
    .mobile-menu a:hover {
        color: var(--gold);
    }
    .mobile-theme-btn {
        background: transparent;
        border: 1px solid rgba(201, 168, 76, 0.4);
        color: var(--gold);
        padding: 0.5rem 1.6rem;
        border-radius: 20px;
        font-family: var(--font-body);
        font-size: 1rem;
        letter-spacing: 2px;
        cursor: pointer;
        margin-top: 1rem;
        transition: all 0.3s;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* GRID */
.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

/* CARD */
.brand-card {
    position: relative;
    padding: 4rem 3rem;
    border: 1px solid rgba(201, 168, 76, 0.18);
    background: linear-gradient(160deg, #141414, #0c0c0c);
}

/* LOGO */
.brand-logo {
    margin-bottom: 2rem;
}

.brand-logo-svg {
    width: 64px;
    height: 64px;
    opacity: 0.9;
}

/* NUMBER */
.brand-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.4rem;
    font-family: var(--font-display);
    color: rgba(201, 168, 76, 0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.5rem;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 99;
        background: rgba(10, 6, 8, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }
    .mobile-menu a {
        font-size: 1.5rem;
        color: var(--text);
        text-decoration: none;
        letter-spacing: 3px;
        font-family: "Playfair Display", serif;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-visual {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ambience-strip {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 560px) {
    .brand-card {
        padding: 2.5rem 2rem;
    }

    .brand-logo-svg {
        width: 52px;
        height: 52px;
    }

    .brand-num {
        font-size: 1.8rem;
    }
}

.nav-logo {
    height: 120px;
    width: 120px;
}

/* ── FLOATING WHATSAPP ── */
.float-wa {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 150;
    width: 50px;
    height: 50px;
    /* background: #415749; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.float-wa:hover {
    transform: scale(1.1);
}


.form-error{
    color:#ff6b6b;
    font-size:.85rem;
    margin-top:6px;
}

.section-padding {
    padding: 6rem 0;
}



.about-logo {
  width: 200px; /* default size */
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .about-logo {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .about-logo {
    width: 120px;
  }
}


.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    list-style: none;
}