@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F7F7F5;
}

::-webkit-scrollbar-thumb {
    background: #F5A84B;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E8750A;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(232, 117, 10, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

/* Blob background */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.blob-saffron {
    background: #E8750A;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.blob-green {
    background: #1D7A4A;
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

/* --- New Additions --- */

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Phone Frame Styles */
.phone-frame {
    position: relative;
    border: 10px solid #1A1A1A;
    border-radius: 2rem;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.2),
        0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    background: #000;
}

.phone-camera {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #1A1A1A;
    border-radius: 50%;
    z-index: 20;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
}

/* Button Glow Hover Effect */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(232, 117, 10, 0.5);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}