/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #020a12;
    color: #fff;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
.cinzel-font { font-family: 'Cinzel', serif; }
.gold-text { 
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   2. BUTTONS
   ========================================= */
.btn-gold {
    background: linear-gradient(45deg, #b08d4b, #d4af37);
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    display: inline-block;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(197, 160, 89, 0.5); background: #fff; }

.btn-outline {
    border: 1px solid #c5a059;
    color: #c5a059;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}
.btn-outline:hover { background: #c5a059; color: #000; }

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 10, 18, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
    height: 100px;
}
.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
    transition: 0.3s;
}

/* Nav Links (Desktop) */
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: #ccc; position: relative; }
.nav-links a:hover { color: #c5a059; }
.nav-links a::after { content: ''; display: block; width: 0; height: 2px; background: #c5a059; transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }

/* Mobile Only Button & Hamburger */
.mobile-only-btn { display: none; background: #c5a059; color: #000 !important; padding: 10px 20px; border-radius: 5px; margin-top: 20px; font-weight: bold; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.hamburger { display: none; cursor: pointer; color: #c5a059; font-size: 1.8rem; }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(11, 29, 51, 0.8) 0%, #020a12 100%), url('../images/gold-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 20px;
}
.hero h1 { font-size: 4rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 4px; line-height: 1.2; text-shadow: 0 5px 15px rgba(0,0,0,0.8); }
.hero p { font-size: 1.3rem; color: #ddd; max-width: 800px; margin-bottom: 40px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.cta-buttons { display: flex; gap: 20px; }

/* =========================================
   5. PREMIUM ASSETS (The New Section)
   ========================================= */
.assets-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.asset-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 15px;
    width: 350px; /* Fixed width prevents it from being too wide */
    padding: 20px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.asset-card:hover {
    transform: translateY(-10px);
    border-color: #c5a059;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.asset-image-box {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.asset-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.asset-card:hover .asset-image-box img { transform: scale(1.1); }

.asset-card h3 { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: 1px; }
.asset-card p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }


/* =========================================
   6. TICKER & OTHER SECTIONS
   ========================================= */
.ticker-wrap { width: 100%; background: #000; border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 12px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 2; }
.ticker-item { display: inline-block; padding-left: 100%; animation: ticker 25s linear infinite; color: #c5a059; font-weight: bold; letter-spacing: 2px; font-size: 0.9rem; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

.section { padding: 100px 10%; text-align: center; }
.section-title { font-size: 2.5rem; color: #c5a059; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 3px; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: #c5a059; margin: 10px auto 0; }
.about-text { font-size: 1.15rem; color: #bbb; line-height: 2; max-width: 900px; margin: 0 auto; text-align: justify; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.feature-card { background: rgba(255, 255, 255, 0.03); padding: 40px 30px; border: 1px solid rgba(197, 160, 89, 0.2); border-radius: 15px; transition: 0.4s; }
.feature-card:hover { transform: translateY(-10px); border-color: #c5a059; background: rgba(197, 160, 89, 0.05); }
.feature-icon { font-size: 3rem; color: #c5a059; margin-bottom: 25px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: #fff; text-transform: uppercase; }
.feature-card p { font-size: 1rem; color: #999; }

/* =========================================
   7. FOOTER
   ========================================= */
footer { background: #050f19; border-top: 1px solid #c5a059; padding: 80px 10% 30px 10%; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 60px; margin-bottom: 50px; text-align: left; }
.footer-col h4 { color: #c5a059; margin-bottom: 25px; font-size: 1.2rem; letter-spacing: 1px; border-left: 4px solid #c5a059; padding-left: 15px; text-transform: uppercase; }
.footer-col p { color: #aaa; margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; }
.footer-col a { color: #aaa; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: #c5a059; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; color: #555; font-size: 0.85rem; letter-spacing: 1px; }

/* =========================================
   8. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    
    /* Header & Navigation */
    header { padding: 10px 20px; height: 80px; }
    .logo img { height: 60px; }
    .hamburger { display: block; }
    .desktop-btn { display: none; }
    .mobile-only-btn { display: inline-block; }

    /* Side Drawer Menu */
    .nav-links {
        position: fixed;
        right: -100%; top: 80px; height: calc(100vh - 80px); width: 100%;
        background-color: rgba(2, 10, 18, 0.98);
        flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 60px;
        transition: 0.4s ease-in-out; border-top: 1px solid rgba(197, 160, 89, 0.2);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; margin: 15px 0; opacity: 0; transform: translateY(20px); transition: 0.5s; }
    .nav-links.active a { opacity: 1; transform: translateY(0); }

    /* Hero */
    .hero h1 { font-size: 2.2rem; letter-spacing: 2px; }
    .hero p { font-size: 1rem; padding: 0 10px; }
    .cta-buttons { flex-direction: column; width: 100%; padding: 0 40px; }
    .btn-gold, .btn-outline { width: 100%; text-align: center; }

    /* Assets Grid on Mobile */
    .assets-grid { gap: 30px; }
    .asset-card { width: 100%; max-width: 350px; }

    /* General */
    .section { padding: 60px 20px; }
    .section-title { font-size: 1.8rem; }
    .about-text { 
        text-align: justify; 
        text-justify: inter-word;
        padding: 0 15px; /* Adds a little space on sides so text doesn't hit the screen edge */
    }
    .footer-col h4 { border-left: none; border-bottom: 2px solid #c5a059; display: inline-block; padding-left: 0; padding-bottom: 5px; }
}