/* General Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000000 !important; /* Pure Black Background */
    color: #ffffff !important; /* Crisp White Text */
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #000000 !important;
    border-bottom: 2px solid #ffcc00; /* Gold Underline */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links a {
    color: #ffffff !important; /* Forces Links to White */
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #ffcc00 !important; /* Turns gold when you hover */
}

/* Hero Section with Watermark */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Fixyachips watermark.png');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    border-bottom: 5px solid #ffcc00;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ffffff !important;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.4rem;
    color: #ffcc00 !important; /* Bold Gold for the Slogan */
    font-weight: bold;
    margin-bottom: 25px;
}

/* The "Waitlist" Button */
.cta-btn {
    background-color: #ffcc00 !important;
    color: #000000 !important; /* Black text on Gold button */
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}

/* Philosophy Section (The Reading Part) */
.content-section {
    padding: 80px 10%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #000000 !important;
}

/* FIXING THE HEADERS HERE */
.content-section h2, 
.content-section h3, 
h2, 
h3 {
    color: #ffcc00 !important; /* FORCED GOLD HEADERS */
    margin-bottom: 20px;
    margin-top: 30px;
    text-transform: uppercase;
}

.content-section p {
    color: #e0e0e0 !important; /* Bright Silver/White for easy reading */
    margin-bottom: 20px;
}

.content-section ul li {
    color: #ffffff !important;
    margin-bottom: 10px;
    list-style-type: none;
}

.content-section ul li::before {
    content: "• ";
    color: #ffcc00 !important; /* Gold Bullet Points */
    font-weight: bold;
}
