:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    /* --accent-color: #00a07a;
    --text-bg-rgb: 0, 160, 122; */
    --accent-color: #00ffcc;
    --text-bg-rgb: 0, 255, 204;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Philosopher', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    /* text-transform: lowercase; */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-color);
    border-radius: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}


/* Main Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 100px;
    height: 50px;
}

@keyframes floatAnimation1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatAnimation2 {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(6px);
    }

    75% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatAnimation3 {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating1 {
    animation: floatAnimation1 3s ease-in-out infinite;
}

.floating2 {
    animation: floatAnimation2 4s ease-in-out infinite;
}

.floating3 {
    animation: floatAnimation3 5s ease-in-out infinite;
}

footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    height: auto;
}

.socials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.socials li {
    list-style: none;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: cover;
    justify-content: center;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}


@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/** 
*   Brand 
*/

.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-link:hover,
.brand-link:focus {
    text-decoration: none;
    color: inherit;
}


.brand span {
    display: inline-block;
    font-size: 5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(var(--brand-rgb), 0.5);
    transition: transform 0.3s ease;
    animation: glowPulse 2s ease-in-out infinite;
}

.brand span:nth-child(1) {
    animation-delay: 0s;
}

.brand span:nth-child(2) {
    animation-delay: 0.2s;
}

.brand span:nth-child(3) {
    animation-delay: 0.4s;
}


@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow:
            0 0 5px rgba(var(--text-bg-rgb), 0.5),
            0 0 10px rgba(var(--text-bg-rgb), 0.3);
    }

    50% {
        transform: scale(1.05);
        text-shadow:
            0 0 20px rgba(var(--text-bg-rgb), 0.8),
            0 0 30px rgba(var(--text-bg-rgb), 0.5);
    }
}

/* End Brand */

/* Feature Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}