/* assets/css/style.css */

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

/* Home / Index Styles */
.hero-bg {
    background-image: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.65)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Blog Article (Prose) Styles */
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-top: 2rem; margin-bottom: 1rem; color: #1e293b; }
.prose h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-top: 1.5rem; margin-bottom: 0.75rem; color: #334155; }
.prose p { margin-bottom: 1.25rem; line-height: 1.8; color: #475569; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; color: #475569; }
.prose blockquote { border-left: 4px solid #0d9488; padding-left: 1rem; font-style: italic; color: #334155; margin: 2rem 0; }
.prose img { border-radius: 0.5rem; width: 100%; height: auto; margin: 2rem 0; }
.prose a { color: #0d9488; text-decoration: underline; }
