
:root {

    --gold: #d4af37;

    --gold-bright: #f59e0b;

    --dark-bg: #030712;

    --overlay-dark: rgba(3, 7, 18, 0.55);

    --text-white: #ffffff;

    --text-muted: #cbd5e1;

}



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



body {

    font-family: 'Inter', -apple-system, sans-serif;

    background-color: var(--dark-bg);

    color: var(--text-white);

    overflow: hidden; /* Screen focus for hero slideshow */

    height: 100vh;

}



/* NAVBAR HEADER */

.navbar {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    padding: 24px 40px;

    background: linear-gradient(to bottom, rgba(3,7,18,0.9) 0%, rgba(3,7,18,0) 100%);

}



.nav-container {

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.brand {

    display: flex;

    align-items: center;

    gap: 10px;

}



.gold-star {

    color: var(--gold);

    font-size: 1.2rem;

}



.brand-name {

    font-family: 'Cinzel', serif;

    font-weight: 700;

    font-size: 1.15rem;

    letter-spacing: 2px;

    color: var(--text-white);

}



.nav-links {

    display: flex;

    align-items: center;

    gap: 32px;

}



.nav-links a {

    color: #e2e8f0;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: color 0.3s ease;

}



.nav-links a:hover {

    color: var(--gold);

}



.nav-btn-gold {

    border: 1px solid var(--gold);

    padding: 8px 18px;

    border-radius: 4px;

    color: var(--gold) !important;

}



.nav-btn-gold:hover {

    background: var(--gold);

    color: #000000 !important;

}



.mobile-menu-btn {

    display: none;

    background: none;

    border: none;

    color: #ffffff;

    font-size: 1.8rem;

    cursor: pointer;

}



/* FULLSCREEN SLIDESHOW */

.hero-slideshow {

    position: relative;

    width: 100vw;

    height: 100vh;

}



.slide {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    opacity: 0;

    transition: opacity 1.2s ease-in-out, transform 8s ease-out;

    transform: scale(1.04);

}



.slide.active {

    opacity: 1;

    transform: scale(1);

}



.slide-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at center, rgba(3,7,18,0.3) 0%, rgba(3,7,18,0.75) 100%);

}



.slide-content {

    position: absolute;

    bottom: 180px;

    left: 8%;

    max-width: 680px;

    z-index: 10;

    animation: fadeInUp 1s ease forwards;

}



.slide-tag {

    display: inline-block;

    color: var(--gold);

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;

}



.slide-content h1 {

    font-family: 'Cinzel', serif;

    font-size: 3rem;

    line-height: 1.15;

    margin-bottom: 14px;

    text-shadow: 0 4px 15px rgba(0,0,0,0.8);

}



.slide-content p {

    font-size: 1.1rem;

    color: var(--text-muted);

    line-height: 1.6;

    text-shadow: 0 2px 8px rgba(0,0,0,0.8);

}



/* SLIDESHOW CONTROLS */

.slideshow-controls {

    position: absolute;

    bottom: 120px;

    left: 8%;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 20px;

}



.slide-arrow {

    background: rgba(255,255,255,0.1);

    border: 1px solid rgba(255,255,255,0.2);

    color: #ffffff;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.2s ease;

}



.slide-arrow:hover {

    background: var(--gold);

    color: #000;

}



.indicators {

    display: flex;

    gap: 8px;

}



.dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,0.3);

    cursor: pointer;

    transition: all 0.3s ease;

}



.dot.active {

    background: var(--gold);

    width: 28px;

    border-radius: 6px;

}



/* BOTTOM BAR */

.bottom-action-bar {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    background: rgba(3, 7, 18, 0.92);

    backdrop-filter: blur(10px);

    border-top: 1px solid rgba(255,255,255,0.1);

    padding: 16px 8%;

    z-index: 30;

}



.action-flex {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

}



.badge-item {

    font-size: 0.85rem;

    color: var(--text-muted);

}



.gold-text {

    color: var(--gold);

    font-weight: 700;

}



.open-portal-btn {

    background: var(--gold);

    color: #000000;

    border: none;

    padding: 10px 22px;

    font-weight: 700;

    font-size: 0.88rem;

    border-radius: 4px;

    cursor: pointer;

    transition: background 0.2s ease;

}



.open-portal-btn:hover {

    background: var(--gold-bright);

}



/* MODALS FOR DETAILED PAGES */

.modal-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    background: rgba(3, 7, 18, 0.88);

    backdrop-filter: blur(12px);

    z-index: 200;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;

}



.modal-overlay.open {

    opacity: 1;

    pointer-events: auto;

}



.modal-content {

    background: #0f172a;

    border: 1px solid #1e293b;

    border-top: 4px solid var(--gold);

    padding: 40px;

    border-radius: 8px;

    width: 90%;

    max-width: 750px;

    position: relative;

    box-shadow: 0 20px 50px rgba(0,0,0,0.8);

}



.close-btn {

    position: absolute;

    top: 20px;

    right: 24px;

    background: none;

    border: none;

    color: var(--text-muted);

    font-size: 2rem;

    cursor: pointer;

}



.close-btn:hover { color: #ffffff; }



.modal-tag {

    color: var(--gold);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 2px;

}



.modal-content h2 {

    font-family: 'Cinzel', serif;

    font-size: 1.8rem;

    margin-top: 6px;

}



.gold-line {

    width: 50px;

    height: 2px;

    background: var(--gold);

    margin: 12px 0 24px;

}



.info-card {

    background: rgba(3, 7, 18, 0.6);

    padding: 16px;

    border-radius: 6px;

    border: 1px solid #1e293b;

    margin-bottom: 14px;

}



.info-card h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 4px; }

.info-card p { color: var(--text-muted); font-size: 0.9rem; }



.spec-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 12px;

}



.spec-box {

    background: rgba(3, 7, 18, 0.6);

    padding: 12px;

    border: 1px solid #1e293b;

    border-radius: 6px;

}



.spec-box .lbl { display: block; font-size: 0.72rem; color: var(--gold); font-weight: 700; }

.spec-box .val { font-size: 0.9rem; color: #ffffff; font-weight: 600; }



.modal-form .form-row {

    display: flex;

    gap: 12px;

    margin-bottom: 12px;

}



.modal-form input, .modal-form textarea {

    width: 100%;

    padding: 12px;

    background: #030712;

    border: 1px solid #1e293b;

    color: #ffffff;

    border-radius: 4px;

    font-family: inherit;

}



.submit-gold-btn {

    width: 100%;

    padding: 14px;

    background: var(--gold);

    color: #000;

    border: none;

    font-weight: 700;

    cursor: pointer;

    margin-top: 12px;

    border-radius: 4px;

}



.submit-gold-btn:hover { background: var(--gold-bright); }



@keyframes fadeInUp {

    from { opacity: 0; transform: translateY(20px); }

    to { opacity: 1; transform: translateY(0); }

}



@media (max-width: 768px) {

    .nav-links { display: none; }

    .mobile-menu-btn { display: block; }

    .slide-content h1 { font-size: 2rem; }

    .slide-content p { font-size: 0.95rem; }

    .modal-form .form-row { flex-direction: column; }

}

