/* ===== HEADER & FOOTER STYLES ===== */

/* ===== HEADER STYLES ===== */
header {
   background: rgba(250, 248, 248, 0.98);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   padding: 15px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   transition: all 0.3s ease;
}

.header-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

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

.logo img {
   height: 50px;
}

.logo-text {
   color: white;
   font-family: 'Orbitron', sans-serif;
   font-weight: 900;
   font-size: 1.8rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.logo-text span {
   color: var(--accent);
   opacity: 1;
}

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

nav a {
   color: white;
   text-decoration: none;
   font-weight: 500;
   font-size: 1rem;
   transition: all 0.3s ease;
   position: relative;
}

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

nav a::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent);
   transition: all 0.3s ease;
}

nav a:hover::after {
   width: 100%;
}

.cta-button {
   background: var(--gradient);
   color: white;
   border: none;
   padding: 12px 25px;
   border-radius: 50px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(255, 77, 121, 0.3);
   margin-left: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* ===== FOOTER STYLES ===== */
footer {
   background: var(--dark);
   color: white;
   padding: 60px 0 30px;
}

.footer-content {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
   margin-bottom: 40px;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.footer-logo {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
}

.footer-logo img {
   height: 40px;
}

.footer-logo-text {
   font-family: 'Orbitron', sans-serif;
   font-weight: 900;
   font-size: 1.5rem;
}

.footer-logo-text span {
   color: var(--accent);
}

.footer-links h4 {
   margin-bottom: 20px;
   color: var(--accent);
}

.footer-links ul {
   list-style: none;
   padding: 0;
}

.footer-links li {
   margin-bottom: 10px;
}

.footer-links a {
   color: #a9a9a9;
   text-decoration: none;
   transition: all 0.3s ease;
}

.footer-links a:hover {
   color: white;
   padding-left: 5px;
}

.social-links {
   display: flex;
   gap: 15px;
   margin-top: 20px;
}

.social-links a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   color: white;
   font-size: 1.2rem;
   text-decoration: none;
   transition: all 0.3s ease;
}

.social-links a:hover {
   background: var(--accent);
   transform: translateY(-3px);
}

.copyright {
   text-align: center;
   padding-top: 30px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: var(--gray);
   font-size: 0.9rem;
   max-width: 1200px;
   margin: 40px auto 0;
   padding: 30px 20px 0;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
   nav ul {
       display: none;
   }

   .mobile-menu-btn {
       display: block;
   }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
}

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