﻿

.section-padding {
    padding: 30px 0;
}

.gold {
    color: #d4af37;
}

.btn-premium {
    background: linear-gradient(45deg, #d4af37, #f3e2a0);
    color: #000;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: 0.4s;
}

    .btn-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    }

.btn-outline-light {
    border-radius: 50px;
    padding: 14px 30px;
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7));
    }

.hero-content {
    position: relative;
    z-index: 2;
}

/* GLASS PANEL */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* LIGHT SECTION */
.light-section {
    background: #f4f4f4;
    color: #111;
}

.light-box {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* CENTER GRID CARDS */
.center-card {
    background: #141822;
    padding: 35px;
    border-radius: 20px;
    transition: 0.4s;
}

    .center-card:hover {
        transform: translateY(-6px);
        border: 1px solid #d4af37;
    }

.divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(45deg, #d4af37, #ffffff);
    margin: 25px 0;
}

footer {
    background: #000;
    padding: 80px 0;
    text-align: center;
    color: #777;
}
