/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #141414;
    --gold: #D4AF37;
    --gold-hover: #b5952f;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilities */
.text-center { text-align: center; }
.bg-dark { background-color: var(--primary-bg); }
.bg-charcoal { background-color: var(--secondary-bg); }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.text-muted { color: var(--text-muted); }

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
}
.shadow-img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.title-underline {
    height: 3px;
    width: 60px;
    background-color: var(--gold);
    margin: 10px 0 30px 0;
}
.title-underline.center {
    margin: 10px auto 30px auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: 1px;
}
.section-title {
    font-size: 2.2rem;
    color: #ffffff;
    text-transform: uppercase;
}
.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
}

.btn-gold-outline {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-gold-outline:hover {
    background-color: var(--gold);
    color: #000;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--gold);
}

/* Add this to your navbar section in nickel.css */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px; /* Adds space between the image and the text */
}

.nav-logo {
    height: 45px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-logo:hover {
    transform: scale(1.05);
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    /* Swapped to nickel8.webp for a clean, text-free background */
    background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('../assets/images/nickel8.webp') center/cover;
    border-bottom: 1px solid #333;
}
.hero-content {
    margin-top: 60px;
}
.hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Sections */
.section {
    padding: 100px 0;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.spec-list {
    list-style: none;
}
.spec-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}
.spec-list li strong {
    color: var(--gold);
    margin-right: 10px;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}
.card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}
.card .metric {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* Icon Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.icon-box {
    padding: 30px;
    background-color: #0a0a0a;
    border-top: 3px solid var(--gold);
    border-radius: 6px;
}
.icon-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}
.icon-box p {
    color: var(--text-muted);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.step {
    text-align: center;
    padding: 20px;
}
.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--gold);
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}
.step h4 {
    margin-bottom: 10px;
    color: #fff;
}
.step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 80px 0 40px 0;
    border-top: 1px solid #333;
}
.footer h2 {
    color: var(--gold);
    margin-bottom: 15px;
}
.contact-info {
    margin: 40px 0;
    font-size: 1.2rem;
}
.contact-info p {
    margin-bottom: 10px;
}
.copyright {
    margin-top: 50px;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto;}
    .process-steps { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } 
    .process-steps { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero .subtitle { font-size: 1.2rem; }
}

/* YouTube Verification Button Styling */
.youtube-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px;
    background-color: transparent;
    color: #e50914; /* Premium YouTube Red */
    border: 2px solid #e50914;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.youtube-btn:hover {
    background-color: #e50914;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.play-icon {
    font-size: 1.1rem;
}
