/* Custom Styles & Overrides */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F4F1EA;
    color: #2A2A2A;
}

/* Typography adjustments for elegance */
h1, h2, h3, .font-serif {
    letter-spacing: -0.02em;
}

/* Subtle texture for cream sections */
.bg-cream {
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Image hover effects */
img {
    transition: transform 0.5s ease;
}

/* Form focus states */
input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.02);
}

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

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