/* Custom Styles for Optimum Function */
:root {
    --color-navy: #0F172A;
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
}

body {
    font-family: 'Manrope', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

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

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Custom Button Hover Glow */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Form Focus States */
input:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 1px #D4AF37;
}

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

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

/* Geometric Decorative Elements */
.geo-shape {
    position: absolute;
    z-index: -1;
}

/* Ensure images don't overflow on small screens */
img {
    max-width: 100%;
    height: auto;
}
