/* style.css */

:root {
    --color-orange: #FF6F00;
    --color-magenta: #FF00FF;
    --color-violet: #8A2BE2;
    --color-blue: #00BFFF;
    --color-dark: #1a1a2e; /* Dark background */
    --color-light: #e0e0e0; /* Light text/elements */
    --color-text-dark: #cccccc; /* For text on dark background */
    --color-text-light: #333333; /* For text on light background */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-dark);
}

a {
    color: var(--color-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-blue);
}

/* Header - Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.navbar .logo {
    font-family: 'Oxanium', sans-serif; /* For 'Néo' part */
    font-size: 1.8em;
    font-weight: bold;
    background: linear-gradient(to right, var(--color-orange), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.5); /* Subtle glow */
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-blue), var(--color-violet));
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Oxanium', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--color-orange), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-orange), var(--color-magenta));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.6);
}

.secondary-cta {
    background: linear-gradient(45deg, var(--color-blue), var(--color-violet));
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.secondary-cta:hover {
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.6);
}


/* Main sections */
main {
    padding: 60px 0;
    text-align: center;
}

section {
    margin-bottom: 80px;
    padding: 0 20px;
}

section h2 {
    font-family: 'Oxanium', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--color-light);
    background: linear-gradient(to right, var(--color-violet), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Services Overview */
.services-overview {
    background-color: #21213a; /* Slightly lighter dark background */
    padding: 80px 0;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #2b2b4d;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 300px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    background-color: #3a3a5e;
}

.card h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--color-orange);
}

.card p {
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.card a {
    color: var(--color-blue);
    font-weight: bold;
}

/* Portfolio Highlight */
.portfolio-highlight {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.portfolio-item {
    background-color: #2b2b4d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-item p {
    padding: 15px;
    font-weight: bold;
    color: var(--color-light);
}

/* Why Us section */
.why-us {
    background-color: #21213a;
    padding: 80px 0;
}

.why-us .points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.why-us .points p {
    background-color: #2b2b4d;
    padding: 15px 25px;
    border-radius: 30px;
    color: var(--color-light);
    font-weight: bold;
    border: 1px solid var(--color-violet);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us .points p::before {
    content: '🚀'; /* Or custom SVG icon */
}


/* Footer */
footer {
    background-color: #0d0d1a;
    color: var(--color-text-dark);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links a, .footer-links a {
    color: var(--color-text-dark);
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover, .footer-links a:hover {
    color: var(--color-orange);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .navbar ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar ul li {
        margin: 5px 15px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .service-cards, .portfolio-grid {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 350px;
    }
}