body {
    font-family: 'Roboto', sans-serif;
    color: #212529;
    background-color: #fff;
}

.hero-section {
    position: relative;
    height: 75vh;         /* ✅ About 60% of viewport */
    min-height: 500px;    /* ✅ Guarantees visibility on small screens */
    overflow: hidden;
}


.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(70%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
}

.navbar-logo {
    max-height: 100px;  /* or 200px if that works for your layout */
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-overlay-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.overlay a.btn {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-dark {
    background-color: #333;
}

