/* --- GLOBAL RESET & VARIABLES --- */
:root {
    --primary-color: #ff0050; /* Neon Red/Pink */
    --secondary-color: #00f2ea; /* Neon Cyan */
    --bg-dark: #0a0a0a; /* Deep Black Background */
    --text-light: #ffffff;
    --text-grey: #b3b3b3;
    --font-heading: 'Orbitron', sans-serif; /* Sci-fi font */
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, var(--bg-dark) 100%);
}

h1, h2, h3, .logo { font-family: var(--font-heading); letter-spacing: 1px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: center;
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 5%; position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 30px rgba(255, 0, 80, 0.2);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; max-width: 1200px;
}

.logo { 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--text-light); 
    text-transform: uppercase; 
}

.logo span { 
    color: var(--primary-color); 
    text-shadow: 0 0 10px var(--primary-color); 
}

.nav-links { display: flex; gap: 2rem; }

/* UPDATED NAV LINKS STYLE */
.nav-links li a {
    font-family: var(--font-heading); /* Orbitron Font */
    font-size: 0.9rem; 
    font-weight: 500; 
    text-transform: uppercase; /* Makes it look techy */
    letter-spacing: 1px;
    color: var(--text-light);
    transition: all 0.3s ease; 
    position: relative;
}

/* Hover Effect: Neon Glow */
.nav-links li a:hover { 
    color: var(--primary-color); 
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

/* Underline Animation on Hover */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 10% 0 10%;
    position: relative; overflow: hidden;
}
.hero-container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; width: 100%; gap: 4rem;
}
.hero-content { flex: 1; max-width: 600px; z-index: 1; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.2; }
.highlight { color: var(--primary-color); text-shadow: 0 0 15px var(--primary-color); }
.hero-content h2 {
    font-size: 2rem; color: var(--secondary-color); margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
}
.hero-content h3 { font-size: 1.5rem; font-weight: 300; color: var(--text-grey); margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.1rem; color: var(--text-grey); margin-bottom: 2.5rem; max-width: 500px; }

/* CIRCULAR HERO IMAGE */
.hero-image { flex: 0 0 auto; display: flex; justify-content: center; }

.hero-image img {
    width: 350px;
    height: 350px;
    object-fit: cover; 
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(255, 0, 80, 0.4), inset 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 0, 80, 0.7);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block; padding: 0.8rem 2rem; border-radius: 4px;
    font-family: var(--font-heading); font-weight: 700; text-transform: uppercase;
    transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary {
    background-color: var(--primary-color); color: var(--text-light);
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.4); margin-right: 1rem;
}
.btn-primary:hover {
    background-color: transparent; border-color: var(--primary-color);
    color: var(--primary-color); box-shadow: 0 0 25px rgba(255, 0, 80, 0.7);
}
.btn-secondary {
    background-color: transparent; border: 2px solid var(--secondary-color);
    color: var(--secondary-color); box-shadow: 0 0 15px rgba(0, 242, 234, 0.2);
}
.btn-secondary:hover {
    background-color: var(--secondary-color); color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(0, 242, 234, 0.6);
}

/* --- CARDS SECTION --- */
.content-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; max-width: 1200px; margin: 4rem auto; padding: 0 20px;
}
.card {
    background: #111; border: 1px solid #222; text-decoration: none; color: white;
    transition: all 0.3s ease; border-radius: 8px; overflow: hidden;
}
.card:hover {
    transform: translateY(-8px); border-color: #ff0050;
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.15);
}
.card-image { height: 180px; width: 100%; overflow: hidden; background: #000; }
.card-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.3s; }
.card:hover img { opacity: 1; transform: scale(1.05); }
.card-text { padding: 1.5rem; }
.card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: #fff; }
.card p { color: #888; font-size: 0.9rem; }
.arrow { display: block; margin-top: 1rem; color: #ff0050; font-size: 0.8rem; font-weight: bold; }

/* --- FOOTER --- */
footer {
    background: #050505; padding: 2rem 0; text-align: center; border-top: 1px solid #222;
}
.social-links a {
    font-size: 1.5rem; margin: 0 1rem; color: var(--text-grey); transition: 0.3s;
}
.social-links a:hover { color: var(--primary-color); text-shadow: 0 0 10px var(--primary-color); }
footer p { color: var(--text-grey); font-size: 0.9rem; margin-top: 1rem; }

/* --- MOBILE --- */
@media (max-width: 960px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-image img { width: 280px; height: 280px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero { height: auto; padding: 100px 5% 4rem 5%; text-align: center; }
    .hero-container { flex-direction: column-reverse; gap: 2rem; }
    .hero-image img { width: 250px; height: 250px; }
    .btn { display: block; width: 100%; margin: 0.5rem 0; text-align: center; }
}
