@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700;900&display=swap');

:root {
    --bg-dark: #020c1b;
    --bg-sidebar: #0a192f;
    --gold-primary: #ffcc00;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    --green-success: #39ff14;
    --text-main: #e6f1ff;
    --text-muted: #8892b0;
    --sidebar-width: 260px;
    --card-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

/* Sidebar Layout */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
}

.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    width: calc(100% - var(--sidebar-width));
    padding: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

/* Navigation */
.nav-menu {
    list-style: none;
    flex: 1;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
}

.nav-icon {
    font-size: 1.2rem;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button {
    display: block;
    background: var(--gold-gradient);
    color: #020c1b;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--gold-primary);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h3 {
    color: var(--green-success);
    font-size: 2rem;
    font-weight: 900;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Sections */
.section {
    padding: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
}

.section-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #112240;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: block;
    text-align: center;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-item {
    background: #112240;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--green-success);
}

/* Footer */
.footer {
    background-color: #020c1b;
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold-primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-sidebar);
    padding: 1rem;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 2000;
}

.mobile-nav-item {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
}

.mobile-nav-item.active {
    color: var(--gold-primary);
}

.mobile-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding-bottom: 80px; /* Space for mobile nav */
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero {
        padding: 2rem;
        height: auto;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
