/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    background-color: black;
    color: #F5F5F5;
    font-size: 12px;
    max-width: 1200px;
    width: 95%;
    font-family: 'Comic Neue', sans-serif;
    padding-bottom: 75px;
    margin: 0 auto;
}
h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #F9CC7F;
}
h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #F9CC7F;
}
h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #F9CC7F;
}

/* Navbar */
#navbar-custom {
    background-color: black;
}
.navbar-brand img {
    animation: signalPulse 3s ease-in-out infinite;
}
@keyframes signalPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 255, 200, 0.0));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 12px rgba(0, 255, 200, 0.6));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 255, 200, 0.0));
    }
}
#navbar-custom .nav-link {
    text-decoration: none;
    color: #F9CC7F;
    height: 1rem;
}
#navbar-custom .nav-link:hover {
    color: #00B45F;
}

/* Sections */
section {
    padding: 2rem 1.5rem;
}
section h2 {
    margin-bottom: 2rem;
}

/* Hero */
#hero {
    margin-top: 9rem;
}
#hero p {
    font-size: 1.1rem;
}

/* Problem, Process & Trust */
.card-border {
    border: 2px solid rgba(0, 255, 200, 0.6);
    background-color: #111; 
}

/* Pricing */
#pricing {
    background-color: #1a1a1a;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
    border-radius: 5px;
    max-width: 600px;
    margin-bottom: 3rem;
}


/* Call to Action */
#cta {
    background-color: #111; 
    color: #fff;
    text-align: center;
    padding: 2rem 1.5rem;
}
#cta .p {
    font-size: 1.5rem;
}
.about-link a {
    color: #F9CC7F;
    text-decoration: underline;
}
.about-link a:hover {
    color: rgba(0, 255, 200, 0.6);
    text-decoration: none;
}

/* Buttons */
.btn-primary {
    background-color: rgba(0, 255, 200, 0.6);
    border: none;
    font-size: 1rem;
}
.btn-primary:hover {
    background-color: #F9CC7F;
    color: black;
}

/* About */
#about {
    background-color: #1a1a1a;
    padding: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
}
#about h1 {
    margin-top: 1rem;
    color: rgba(0, 255, 200, 0.6);
}


/* Contact */
#contact {
    background-color: #110A14;
    padding-top: 1rem;
    padding-bottom: 2rem;
    max-width: 800px;
}
#contact h1 {
    margin-top: 1rem;
    color: rgba(0, 255, 200, 0.6);
}
.email-link a {
    color: #F9CC7F;
    text-decoration: underline;
}
.email-link a:hover {
    color: rgba(0, 255, 200, 0.6);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: black;
    color: #F9CC7F;
    bottom: 0;
    width: 100%;
    text-align: center;
    position: sticky;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0;
}
.copyright {
    font-size: 1rem;
    align-items: center;
}
.footer img {
    height: auto;
    width: 50px;
    display: block;
    margin: 0;
}
.footer-text {
    font-size: 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    #hero {
        margin-top: 3rem;
    }
}