/* ===== Custom Styles for Don't Be Shy ===== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdfcfa;
}
::-webkit-scrollbar-thumb {
    background: #b3ebd3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7edbb5;
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes float-delay {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delay {
    animation: float-delay 5s ease-in-out infinite 0.5s;
}

.animate-float-slow {
    animation: float-slow 6s ease-in-out infinite 1s;
}

/* ===== Hero Image Animation ===== */
.hero-image-container {
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-badge {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== Section Reveal Animations ===== */
.section-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.2s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }

/* ===== Navbar ===== */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2dab7a;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

/* Navbar scroll state */
.navbar-scrolled {
    background: rgba(253, 252, 250, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(179, 235, 211, 0.3);
    box-shadow: 0 1px 20px rgba(10, 37, 64, 0.06);
}

/* ===== Mobile Menu ===== */
.mobile-menu-open {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* ===== Button Ripple Effect ===== */
button, a {
    position: relative;
    overflow: visible;
}

/* ===== Focus Styles ===== */
input:focus, textarea:focus, select:focus {
    outline: none;
}

/* ===== Service Card Image Hover ===== */
.service-card img {
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* ===== About Image Container ===== */
.about-image-container {
    animation: fadeIn 1s ease-out 0.4s both;
}

/* ===== Divider ===== */
.divider-gradient {
    height: 1px;
    background: linear-gradient(90deg, transparent, #b3ebd3, transparent);
}

/* ===== Selection ===== */
::selection {
    background: #b3ebd3;
    color: #0a2540;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
    .hero-image-container {
        margin-top: 2rem;
    }
    
    #hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    nav, #contact-form, button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
