:root {
    --primary-color: #6a0dad;
    --secondary-color: #333;
    --text-color: #f4f4f4;
    --bg-color: #161625;
    --container-width: 80%;
}

body {
    font-family: "Halant", serif;
    font-weight: 400;
    font-size: 24px;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

header {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 1.5rem 0;
    transition: background-color 0.4s ease-out, padding 0.4s ease-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(106, 13, 173, 0.5) 0%, rgba(106, 13, 173, 0) 50%);
    opacity: 0;
    z-index: -1;
}

.hero-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #4c0a7a;
}

.feature-section {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    width: var(--container-width);
    margin: 0 auto;
    gap: 2rem;
}

.feature-content {
    max-width: 50%;
    background-color: #1a1a2e;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid hsla(0, 0%, 100%, 0.500);
    box-shadow: 0px 0px 500px rgba(106, 13, 173, 0.500);
    transition: transform 0.3s ease-in-out;
}

.feature-content:hover {
    transform: scale(1.02);
}

.feature-left {
    justify-content: flex-start;
}

.feature-right {
    justify-content: flex-end;
}

.feature-right .feature-content {
    text-align: right;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: rgba(18, 18, 18, 0.8);
    
}

/* Animations */
.fly-in {
    opacity: 0;
    animation: flyIn 1s forwards;
    animation-delay: 1s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 2s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.slide-in {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 1s forwards;
}

.fly-in-on-scroll {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fly-in-on-scroll.feature-left {
    transform: translateX(-100%);
}

.fly-in-on-scroll.feature-right {
    transform: translateX(100%);
}

.fly-in-on-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flyIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.visible {
    opacity: 1;
    transform: none;
}
.mission {
    background-color: #161625;
    padding: 4rem 0;
    text-align: center;
}

.mission-statement {
    width: var(--container-width);
    margin: 0 auto;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}h1, h2, h3 {
  font-family: "Epilogue", sans-serif;
}.gradient-text {
  background: linear-gradient(to right, #00b2d7, #ffa334, #b973ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}header.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.feature-item, .cta-button {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #4c0a7a;
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(106, 13, 173, 0.3);
}
