* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

.logo-header {
    width: 70px;
    padding-top: 10px;
}

h2 {
    line-height: 1.2 !important;
}

.logo-footer-container {
    text-align: center;
    & p {
        font-size: 0.6em;
        text-align: center;
    }
}

.main-logo-footer {
    width: 137px;
    margin: 0 auto;
}

.pre-title {
    background: #b6c2a6;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8em !important;
}

.logo-flambeau {
    background: url('../img/logo_flambeau_2.png');
    width: 40px;
    height: 25px;
    background-size: contain;
}

.logo-khutbah {
    background: url('../img/logo_khutbah.png');
    width: 30px;
    height: 30px;
    background-size: contain;
}

.logo-khutbah-white {
    background: url('../img/logo_khutbah_white.png');
    width: 30px;
    height: 30px;
    background-size: contain;
}

.logo-flambeau-white {
    background: url('../img/logo_flambeau_white.png');
    width: 32px;
    height: 20px;
    background-size: contain;
}

.logo-khutbah-black {
    background: url('../img/logo_khutbah_black.png');
    width: 25px;
    height: 25px;
    background-size: contain;
}

.logo-flambeau-black {
    background: url('../img/logo_flambeau_black.png');
    width: 32px;
    height: 20px;
    background-size: contain;
}


.back-logo-flambeau {
    margin: 15% auto;
    width: 50%;
}

.back-logo-khutbah {
    margin: 17% auto;
    width: 60%;
}

.bg-blue {
    background-color: #2f4958;
}

.bg-green {
    background-color: #518b50;
}

.gradient-mesh {
    background: radial-gradient(circle at 20% 80%, rgba(159, 167, 137, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(117, 136, 90, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(84, 103, 79, 0.1) 0%, transparent 50%);
}

.hero-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f8f9fa 75%, #ffffff 100%);
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(17, 46, 34, 0.03) 0%, transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(117, 136, 90, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar-default {
    background: rgba(255, 255, 255, 1);
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.parallax-slow {
    transition: transform 0.1s ease-out;
}

.parallax-medium {
    transition: transform 0.1s ease-out;
}

.parallax-fast {
    transition: transform 0.1s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.7);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

.magnetic-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.magnetic-btn:hover::before {
    left: 100%;
}

.magnetic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #112e22 0%, #75885a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 46, 34, 0.2), transparent);
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.typing-animation {
    overflow: hidden;
    border-right: 2px solid #75885a;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #75885a }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #112e22, #75885a);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform 0.1s ease;
}

.morphing-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@media screen and (max-width: 500px) {  
    .hero-left {  
        margin-top: 140px; 
    }  
} 