/* ===== Reset ===== */
body {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    background: #000000;
    color: #D4AF37;
}

/* ===== Navbar ===== */
.navbar {
    background: #000000;
    border-bottom: 1px solid #D4AF37;
    padding: 15px 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

/* ===== Navigation ===== */
.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #D4AF37;
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links .active {
    color: #ffffff;
    font-weight: bold;
}

/* ===== Join Button in Nav ===== */
.join-nav-btn {
    background: #D4AF37;
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.join-nav-btn:hover {
    background: #f2d37b;
    transform: scale(1.05);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
                url("assets/ksa1.jpg") center/cover no-repeat;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.small-hero {
    height: 260px;
}

.gold-title {
    color: #D4AF37;
    font-size: 45px;
    font-weight: bold;
}

.gold-subtitle {
    color: #f8e6b3;
    font-size: 22px;
}

/* ===== Sections ===== */
.section {
    margin: 60px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.section-title {
    color: #D4AF37;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* ===== Text ===== */
.gold-text {
    font-size: 20px;
    line-height: 1.8;
    color: #D4AF37;
}

.gold-list {
    font-size: 20px;
    color: #D4AF37;
    line-height: 2;
}

.gold-list li {
    margin-bottom: 10px;
}

/* ===== Images Grid ===== */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.img-box {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Vision Blocks ===== */
.vision-block {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 20px;
}

.vision-block.reverse {
    flex-direction: row-reverse;
}

.vision-img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border: 3px solid #D4AF37;
    border-radius: 12px;
}

.small-img {
    width: 200px;
    height: 200px;
}

.vision-text {
    flex: 1;
}

/* ===== Join Cards ===== */
.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.join-card {
    background: #0a0a0a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.join-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
}

.join-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 19px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.join-btn:hover {
    background: #f2d37b;
    transform: scale(1.05);
}

/* ===== Contact Page ===== */
.contact-box {
    background: #0b0b0b;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #D4AF37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.contact-item {
    font-size: 22px;
    margin: 18px 0;
}

.contact-label {
    font-weight: bold;
}

.contact-link {
    color: #D4AF37;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: white;
}

/* ===== Footer ===== */
.footer {
    background: #000;
    border-top: 1px solid #D4AF37;
    text-align: center;
    padding: 20px 0;
}

.footer-text {
    color: #D4AF37;
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .vision-block {
        flex-direction: column;
        text-align: center;
    }

    .vision-block.reverse {
        flex-direction: column;
    }

    .vision-img {
        margin-bottom: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gold-title {
        font-size: 33px;
    }
}
