/* Global Styles */
:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #ffffff;
    --red: #ff2e63;
    --yellow: #f9d923;
    --orange: #ff9f1c;
    --card-bg: rgba(30, 30, 30, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-dark: rgba(10, 10, 10, 0.4);
    --gradient-light: rgba(10, 10, 10, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0;
}

header h1 a.logo {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

header h1 a.logo:hover {
    color: var(--accent-color);
}

header h1 a.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

header h1 a.logo:hover::after {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

/* Main Content Styles */
main {
    min-height: 100vh;
    padding-top: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--gradient-dark) 0%, var(--gradient-light) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
    object-position: center 30%; /* Adjust to show face better on desktop */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    margin: 0 auto;
    text-align: center;
    /* Adjust text position to avoid face area */
    transform: translateY(90%); /* Move text up slightly to avoid face overlap */
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

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

/* Featured Content */
.featured-content {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: var(--accent-color);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.content-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 60px 45px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.content-card:hover::before {
    transform: translateX(100%);
}

.content-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.content-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--accent-color);
}

.content-card p {
    margin-bottom: 35px;
    opacity: 0.85;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer Styles */
footer {
    background-color: rgba(5, 5, 5, 0.98);
    border-top: 1px solid var(--border-color);
    padding: 100px 0 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-links {
    margin-bottom: 50px;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 25px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 0;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

footer p {
    opacity: 0.7;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Visitor Counter */
.visitor-counter {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
    color: var(--text-color);
}

.counter-label {
    color: var(--accent-color);
    margin-right: 5px;
}

.counter-number {
    color: var(--accent-color);
    font-weight: 700;
}

/* Page Specific Styles */
.page-header {
    padding: 250px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--gradient-dark) 0%, var(--gradient-light) 100%);
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85; /* Make image more visible */
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-content {
    padding: 120px 0;
}

.page-content-inner {
    max-width: 850px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2.3rem;
    margin: 80px 0 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--accent-color);
}

.page-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.9;
    opacity: 0.9;
}

.page-content ul {
    list-style-type: none;
    padding: 0;
    margin: 50px 0;
}

.page-content ul li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.15rem;
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.page-content ul li:hover {
    padding-left: 45px;
}

.page-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.page-content ul li:hover:before {
    background-color: var(--yellow);
    transform: scale(1.2);
}

/* Contact Form */
.contact-form {
    margin-top: 60px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: 'Roboto Mono', monospace;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(40, 40, 40, 0.7);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Responsive Design - Premium Mobile Optimization */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .content-grid {
        gap: 40px;
    }
    
    .content-card {
        padding: 50px 35px;
    }
    
    .page-header h1 {
        font-size: 3.5rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    
    .page-header p {
        font-size: 1.2rem;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Activation */
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 100px);
        background-color: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        z-index: 999;
        border-left: 1px solid var(--border-color);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 40px 0;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 15px 0;
        padding: 0 40px;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 25px;
    }
    
    header .container {
        padding: 20px 25px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        background-attachment: scroll; /* Performance improvement on mobile */
        height: 100vh;
    }
    
    .hero-image {
        object-position: center 30%; /* Adjust for better face positioning on mobile */
    }
    
    .hero-content {
        padding: 0 25px;
        transform: translateY(50%); /* Adjust text position for mobile */
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .btn {
        width: 100%;
        padding: 18px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .featured-content {
        padding: 100px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-card {
        padding: 45px 30px;
    }
    
    .content-card h3 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 200px 0 100px;
        background-attachment: scroll; /* Performance improvement on mobile */
    }
    
    .page-header h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }
    
    .page-header p {
        font-size: 1.2rem;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    
    .page-content {
        padding: 80px 0;
    }
    
    .page-content h2 {
        font-size: 2rem;
        margin: 60px 0 30px;
    }
    
    .page-content p {
        font-size: 1.1rem;
    }
    
    .page-content ul li {
        padding-left: 30px;
        font-size: 1.1rem;
    }
    
    footer {
        padding: 80px 0 40px;
    }
    
    .social-links a {
        margin: 0 15px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 35px 25px;
    }
    
    .content-card h3 {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 2.3rem;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    
    .page-header p {
        font-size: 1.1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .page-content h2 {
        font-size: 1.8rem;
    }
    
    .social-links {
        margin-bottom: 40px;
    }
    
    .social-links a {
        margin: 0 12px;
        font-size: 1.05rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .container {
        padding: 0 20px;
    }
    
    header .container {
        padding: 15px 20px;
    }
    
    header h1 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 15px 0;
        font-size: 0.85rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .page-header p {
        font-size: 1rem;
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    }
}"/* Force rebuild */"  
