:root {
    --primary-dark: #0b2a4a;
    --primary-mid: #1a4a6e;
    --primary-light: #3a7ca5;
    --accent-blue: #7bb3e6;
    --soft-bg: #eef4fc;
    --gold-accent: #c9a84c;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e2a3a;
}

/* Gallery hover effect */
.gallery-img {
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem !important;
    }
}