/* Custom Styles for Editorial & Asymmetric Design */

:root {
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
}

h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F9F9F7;
}
::-webkit-scrollbar-thumb {
    background: #0A192F;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #112240;
}

/* Editorial Underline Animation */
.group:hover .underline-grow {
    width: 100%;
}
.underline-grow {
    width: 0;
    height: 2px;
    background-color: #98FFEB;
    transition: width 0.3s ease-in-out;
    display: block;
}

/* Image Hover Zoom */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.5s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.05);
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(249, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
