* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", serif;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url("~/img/hero-background.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,0.55), rgba(0,0,0,0.35) );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero .gold {
    color: #d4b06a;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

    .btn.primary {
        background: #d4b06a;
        color: white;
    }

    .btn.secondary {
        background: rgba(255,255,255,0.2);
        border: 1px solid rgba(255,255,255,0.5);
        color: white;
    }

    .btn:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

/* Glass panel */
.hero-panel {
    position: absolute;
    bottom: -40px;
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 3;
}

.panel-item {
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .panel-item .icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .panel-item p {
        font-size: 14px;
        color: #444;
    }

    .panel-item.active {
        background: linear-gradient(to top, #f0e4c8, #ffffff);
        border-radius: 12px;
    }
