/* Hero Section */
.hero {
    height: 40vh;
    background: url('../images/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Glass overlay */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Responsive premium logo */
.logo {
    width: min(45vw, 420px) !important; /* MUCH bigger */
    height: auto !important;            /* keep rectangle shape */
    object-fit: contain !important;     /* no cropping */
    aspect-ratio: auto !important;      /* allow rectangle */
    border-radius: 0 !important;        /* keep corners square */
    display: block !important;
    margin: 0 auto 25px auto !important; /* center it */

 /* TRUE EDGE FEATHERING */
    -webkit-mask-image: radial-gradient(circle, black 65%, transparent 100%);
    mask-image: radial-gradient(circle, black 65%, transparent 100%);

    /* Optional: smooth fade-in */
    transition: filter 0.3s ease;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    color: #d4af37;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Mobile hero text scaling */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
}

/* Desktop: lock menu to bottom of hero */
@media (min-width: 769px) {
    .menu-bar {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
        background: #0d0d0d;
        padding: 15px 0;
    }
}

/* Mobile: normal flow */
@media (max-width: 768px) {
    .menu-bar {
        position: static;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    .hero {
        padding-bottom: 80px;
    }
}
