
/* =========================================
   THE CONTROL PANEL 
   Change these variables to customize the site!
   ========================================= */
:root {
    /* COLORS */
    --bg-color: #0f1014;           /* Very dark grey/black background */
    --surface-color: #1b1e26;      /* Slightly lighter for cards/sections */
    --text-main: #e0e0e0;          /* Main text color (off-white) */
    --text-muted: #a0a0a0;         /* Secondary text color */
    
    /* ACCENT COLOR (The "Surprise" Cyan) */
    --accent: #00f2ff;             /* Electric Cyan */
    --accent-glow: rgba(0, 242, 255, 0.4); /* The glowing effect */

    /* IMAGES (High quality Unsplash images) */
    /* Hero Background Image */
    --hero-bg: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    /* About Section Image */
    --about-img: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop');
}

/* =========================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* UTILITIES */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-darker { background-color: var(--surface-color); }
.center-text { text-align: center; }
.accent-text { color: var(--accent); }

/* TITLES */
h1, h2, h3 { color: white; line-height: 1.2; margin-bottom: 15px; }
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; margin-bottom: 30px; }

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-small {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

.btn-small {
    padding: 8px 20px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.9rem;
}

.btn-small:hover {
    background-color: var(--accent);
    color: black;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    background-color: rgba(15, 16, 20, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn-small):hover { color: var(--accent); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 90vh;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content { max-width: 800px; }
.hero-content p { font-size: 1.2rem; color: #ddd; margin-bottom: 30px; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-image: var(--about-img);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 10px 10px 0px var(--accent);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { color: white; }
.card p { color: var(--text-muted); }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
}

.contact-form label { display: block; margin-bottom: 8px; color: white; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #0f1014;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.full-width { width: 100%; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a { margin-left: 20px; font-size: 0.9rem; }
.socials a:hover { color: var(--accent); }

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for template */
    h1 { font-size: 2.2rem; }
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; }
    .img-placeholder { height: 300px; }
}