@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

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

.font-lato {
    font-family: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
    width: 100%;
}

.bg-warm-cream {
    background-color: #F5EFE3;
    position: relative;
}

.bg-warm-cream::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

body {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
}

::-webkit-scrollbar {
    width: 12px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #4a1212;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5D1818;
    transition: width 0.3s ease;
}

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

header {
    background-color: #F9F7F2;
    position: relative;
}

img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(93, 24, 24, 0.2);
}



section {
    scroll-margin-top: 0;
    position: relative;
    z-index: 1;
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: none;
}

#mobile-menu.show {
    max-height: 300px;
    display: block;
    transition: max-height 0.3s ease-in;
}

.bg-white.rounded-xl.shadow-lg {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white.rounded-xl.shadow-lg:hover {
    box-shadow: 0 20px 40px rgba(93, 24, 24, 0.25);
}

.text-gold {
    color: #C5A065;
}

img {
    max-width: 100%;
    height: auto;
}


h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

.font-playfair {
    font-weight: 700;
}

@media print {
    header {
        position: relative;
    }
    
    #mobile-menu-btn,
    #mobile-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .font-playfair {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

#contact svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

#contact .flex:hover svg {
    transform: scale(1.1);
    color: #D4B87A;
}

::-webkit-scrollbar {
    display: none;
  }