:root {
    --dark: #0f0f0f;
    --accent: rgb(184, 147, 0);
    --accent-dark-transparent: rgba(184, 147, 0, 0.9);
    /* Gold accent */
    --white: #ffffff;
    --gray: #f4f4f4;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    /* border: solid; */
    margin-top: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--dark);
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

.close-btn {
    display: none;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../assets/images/hero (7).jpg') center/cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn-main,
.btn-outline {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}


.btn-main {
    background: var(--accent);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover{
    text-decoration: none;
    border-color: black;
    background-color: white;
    color: black;
}


/* --- Mobile Responsive Logic --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        z-index: 10000;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 3rem;
        cursor: pointer;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.8rem;
    }
}

.page-header {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* border: solid black 3px; */
    height: 200px;
    width: 100%;
}

.page-header .container {
    padding: 40px 20px;
}


@media (max-width: 600px) {
    .page-header {
        height: 150px;
        padding: 15px;
    }

    .page-header .container {
        padding: 10px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

}

section {
    margin: 10px auto;
    width: 70%;
}

.section-header {
    font-size: 20px;
    text-transform: capitalize;

}

.section-header a {
    text-decoration: underline;
    color: var(--accent);
    transition: 0.3s ease-in-out;
}

.section-header a:hover {
    color: grey;
}

.section-header i {
    font-size: 14px;
}

@media (max-width: 600px) {
    section {
        margin: 10px auto;
        width: 95%;
    }
}