:root {
    --bg-dark: #121212;
    --card-bg: #1e1e1e;
    --fire-red: #ff3b30;
    --fire-orange: #ff9500;
    --fire-yellow: #ffcc00;
    --text-light: #f5f5f7;
    --text-muted: #a0a0a0;
    --accent: #2c2c2e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--card-bg);
    border-bottom: 2px solid #333;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
}

.logo span {
    color: var(--fire-orange);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--fire-orange);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.95)), url('https://images.unsplash.com/photo-1542382257-80dedb725088?auto=format&fit=crop&w=1500&q=80') center/cover;
}

.hero-content {
    max-width: 800px;
}

/* Bold Multicolor Title */
.multicolor-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange), var(--fire-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background-color: var(--fire-red);
    color: white;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Features / Cards */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    gap: 20px;
    background-color: #161618;
}

.feature-card, .card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    border-top: 4px solid var(--fire-orange);
}

.feature-card h3, .card h3 {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Common Layout Containers */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--fire-yellow);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Gallery & Upload */
.upload-section {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.upload-section form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.upload-section input[type="file"], .upload-section input[type="text"] {
    padding: 10px;
    background: var(--bg-dark);
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    flex: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 10px;
}

.mock-img {
    height: 180px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-muted);
}

.gallery-item p {
    padding: 10px;
    font-size: 0.9rem;
}

/* Resource List & Contact Form */
.resource-list {
    list-style: none;
}

.resource-list li {
    background: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--fire-yellow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg);
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #333;
}