* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(15, 15, 15, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: #ff3e3e;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff3e3e;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&q=80&w=1471');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    background: #ff3e3e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #d32f2f;
    transform: translateY(-3px);
}

/* Social Section */
.social-section {
    padding: 100px 8%;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.social-card {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border: 1px solid #333;
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-card:hover {
    border-color: #ff3e3e;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 100px 8%;
    background: #161616;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 1.1rem;
}

.info-item i {
    color: #ff3e3e;
    margin-right: 15px;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: #666;
}