body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 600;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: auto;
}

.subheadline {
    font-size: 1.5rem;
    margin-top: 20px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 40px;
}

.btn-primary {
    background-color: #c9a227;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    border-radius: 4px;
}

.btn-secondary {
    border: 2px solid #c9a227;
    color: #c9a227;
    padding: 15px 30px;
    text-decoration: none;
    margin: 10px;
    border-radius: 4px;
}

.section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.section.dark {
    background-color: #141414;
}

.image-section {
    padding: 80px 20px;
}

.image-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.image-text img {
    width: 400px;
    border-radius: 8px;
}

.image-text.reverse {
    flex-direction: row-reverse;
}

.blog-preview {
    display: flex;
    justify-content: center;
}

.blog-card {
    background-color: #1a1a1a;
    padding: 30px;
    text-decoration: none;
    color: white;
    border: 1px solid #222;
    width: 300px;
}

.cta {
    background-color: #111;
}

footer {
    text-align: center;
    padding: 30px;
    background-color: #000;
    font-size: 0.9rem;
    opacity: 0.6;
}

.blog-container {
    max-width: 900px;
    margin: auto;
    padding: 80px 20px;
}

.blog-container h1 {
    margin-bottom: 20px;
}
/* ---------- BLOG HERO ---------- */

.blog-hero {
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(180deg, #0d0d0d, #151515);
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.blog-hero p {
    opacity: 0.7;
}

/* ---------- BLOG GRID ---------- */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-item {
    background-color: #1a1a1a;
    padding: 40px;
    text-decoration: none;
    color: white;
    border: 1px solid #222;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold Hover Glow */
.blog-item:hover {
    border-color: #c9a227;
    box-shadow: 0 0 25px rgba(201,162,39,0.4);
    transform: translateY(-6px);
}

/* ---------- SMOOTH SCROLL ---------- */

html {
    scroll-behavior: smooth;
}

/* ---------- PAGE FADE IN ---------- */

.fade-in {
    animation: fadePage 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadePage {
    to {
        opacity: 1;
    }
}

/* ---------- SCROLL REVEAL ---------- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
