:root {
    --primary-color: #e63946; /* Adjust this to match the exact red from logo.png */
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Opening Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) 1.8s forwards;
}

.intro-text {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0;
    animation: textReveal 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(-100%);
    }
}

@keyframes textReveal {
    0% { opacity: 0; letter-spacing: 0px; filter: blur(10px); transform: scale(0.9); }
    30% { opacity: 1; filter: blur(0px); transform: scale(1); }
    80% { opacity: 1; letter-spacing: 10px; }
    100% { opacity: 0; letter-spacing: 15px; transform: scale(1.1); }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    height: 50px; /* Adjust based on logo aspect ratio */
    /* filter: brightness(0) invert(1); Removed to show original colors */
}

.contact-link a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-link a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #2a2a2a 0%, #121212 100%);
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #999);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 300;
}

.btn-scroll {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* About Section */
.about {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 5px;
    flex: 1 1 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 3px solid var(--primary-color);
}

.icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h2 {
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Quote Section */
.quote-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-muted);
    border-left: 5px solid var(--primary-color);
    max-width: 800px;
    margin: 50px auto;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.email-link {
    display: inline-block;
    margin: 30px 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    padding: 15px 30px;
    transition: all 0.3s;
}

.email-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 20px;
    color: #555;
    font-size: 0.8rem;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .intro-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .card {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .quote-section {
        font-size: 1.2rem;
        padding: 40px 20px;
        margin: 30px 20px;
    }

    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }
}
