/* Custom styles for Sorensen & Sorensen */

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

/* Navbar glass effect */
#navbar {
    background: rgba(253, 248, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(234, 194, 163, 0.3);
}

#navbar.scrolled {
    background: rgba(253, 248, 245, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service card hover effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Portfolio item hover */
.portfolio-item {
    cursor: pointer;
}

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

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

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

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

/* Form focus styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Geometric shape animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-display {
        font-size: 2.5rem;
    }
}
