@font-face {
    font-family: orbitron-medium;
    src: url("orbitron-medium.ttf")
}


:root {
    --bg-color: #0a0e27;
    --bg-secondary: #151b3f;
    --text-primary: #e0e6ed;
    --text-secondary: #a0aec0;
    --accent-primary: #ff6b35;
    --accent-secondary: #00bfff;
    --accent-tertiary: #ff4500;
    --glass-bg: rgba(21, 27, 63, 0.7);
    --glass-border: rgba(255, 255, 255, 0.12);
    --font-heading: 'Outfit', orbitron-medium;
    --font-body: 'Inter', orbitron-medium;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin-top: 240px;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-primary);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-tertiary);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-lg) 0;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-logo-img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--accent-primary);
}

.hero-brand-logo {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.logo span {
    color: var(--accent-primary);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(21, 27, 63, 0.8) 0%, rgba(0, 191, 255, 0.2) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-primary);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    text-shadow: none;
}

/* Content Sections */
.info-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-secondary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
}

.card:hover::before {
    left: 100%;
}

.card img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

/* Footer */
footer {
    background: #020408;
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: var(--spacing-lg);
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Utilities */
.text-highlight {
    color: var(--accent-secondary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-primary);
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

/* Form Styles */
form {
    max-width: 600px;
    margin: var(--spacing-lg) auto;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05) rotate(1deg);
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

table th {
    background: var(--glass-bg);
    color: var(--accent-primary);
    font-weight: 600;
}

table tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 var(--spacing-md);
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: var(--spacing-md) 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--glass-border);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    input,
    textarea {
        padding: 0.8rem;
    }
}