:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --gold: #D4AF37;
    --gold-dim: #8a701f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.text-gold {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    height: 80px;
    width: auto;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-nav {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold) !important;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--bg-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    opacity: 0.5;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-main {
    background-color: var(--gold);
    color: var(--bg-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.section-title.center {
    border-left: none;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

.profile-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--gold);
}

/* Services Section (Bento Grid) */
.services-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 20px;
    margin-top: 50px;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Grid Logic */
.bento-item.item-large {
    grid-column: span 2;
}

.bento-item.item-wide {
    grid-column: span 3;
}

.bento-content .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bento-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 0;
    position: relative;
    text-align: center;
}

.team-card:hover {
    border-color: var(--gold);
}

.team-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.card-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.card-header .role {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

/* Added Footer Logo Class */
.footer-logo {
    height: 250px; /* Slightly larger than nav logo */
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 10px;
	margin-top: 64px;
}

.web-link {
    color: var(--text-main) !important;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 20px;
    flex-direction: column;
	margin-top: 64px;

}

.footer-social a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #444;
    border-top: 1px solid #111;
    padding-top: 20px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .profile-grid { grid-template-columns: 1fr; }
    
    /* Mobile grid reset to single column */
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.item-large, .bento-item.item-wide { grid-column: span 1; }
    
    .navbar { padding: 20px; }
    .nav-links { display: none; }
}
/* Add this to your CSS */

.hero-logo {
    height: 250px; /* Adjust height as desired */
    width: auto;
    margin-bottom: 20px; /* Space between logo and "LIVE" */
    display: inline-block;
}

/* Add the new delay for the button */
.delay-3 { 
    animation-delay: 0.9s; 
}