/* Add this to your existing <style> block */
header {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0.5rem; /* Reduced from initial */
    padding-bottom: 0.5rem;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Slate 900 */
    color: #e2e8f0; /* Slate 200 */
}

/* Glossy Transparent Footer */
.glossy-footer {
    position: relative;
    bottom: 60px; /* Adjust this value to move it higher/lower over the gradient */
    width: auto;
    max-width: fit-content;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05); /* Very light white for glass effect */
    backdrop-filter: blur(12px); /* Glossy blur */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px; /* Pill shape */
    padding: 12px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
}
.social-icon-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon-link:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.4); /* Indigo-500 glow */
    border-color: #818cf8;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1e293b; /* Slate 800 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #64748b; /* Slate 500 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; /* Slate 600 */
}
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-down { animation: fadeInDown 0.8s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Slate 900 */
    color: #e2e8f0; /* Slate 200 */
}
/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1e293b; /* Slate 800 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #64748b; /* Slate 500 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; /* Slate 600 */
}
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Sticky header transition */
header {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out;
}
/* YouTube Embed Responsiveness */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Adjustments for mobile social icons */
@media (max-width: 767px) {
    .social-icons-mobile {
        margin-right: 1.5rem; /* Adjust space between social icons and menu button */
    }
}