/* Custom Styles for Custom Iron Works */
html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-link {
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-link:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(249, 247, 242, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0a3d26;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric Shapes */
.geo-shape-1 {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    opacity: 0.1;
    transform: rotate(45deg);
    z-index: 0;
}

.geo-shape-2 {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: #0f5132;
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}
