

/*        ---------------hero----------------*/

:root {
    --primary-gold: #D4AF37; /* Premium accent color */
    --dark-bg: #0a0c10;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Container */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-bg);
}

/* Background Image with Overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 12, 16, 0.7), rgba(10, 12, 16, 0.7)), url('images/hero_banner_main.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Content Area */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 40px;
    line-height: 1.6;
    margin-inline: auto;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #000;
}

    .btn-primary:hover {
        background-color: #f1c40f;
        transform: translateY(-2px);
    }

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

    .btn-outline:hover {
        border-color: var(--text-light);
        background: rgba(255, 255, 255, 0.05);
    }


@media (max-width: 768px) {

    .cta-group {
        flex-direction: column;
    }
}
