/* Root Var */
:root {
    --background-light-color: #fdf6f0;
    --background-2-light-color: #fff;
    --primary-color: #f9c400;
    --heading-color: #1a1a1a;
    --p-color: #777;
}

.dark {
    --background-light-color: #2c2c2c;
    --background-2-light-color: #1c1c1c;
    --primary-color: #f9c400;
    --heading-color: #fff;
    --p-color: #fdfdfd;
}

#theme-toggle {
    transition: all 0.3s ease-in-out;
}

#theme-toggle:hover {
    transform: rotate(20deg);
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-light-color);
    font-family: 'Times New Roman', Times, serif;
}

/* Root Var */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset */
/* Reuseable Style */
.heading-text {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 15px;
    align-items: center;
    color: var(--heading-color);
}

.heading-text span {
    color: var(--primary-color);
}

.main-p {
    font-size: 25px;
    color: var(--p-color);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .heading-text {
        font-size: 50px;
    }

    .main-p {
        font-size: 18px;
    }
}

.btn {
    padding: 12px 24px;
    background-color: var(--heading-color);
    color: var(--background-2-light-color);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn a {
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-color);
}

/* Reuseable Style */

/* header start */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background-color: var(--background-2-light-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bold;
    flex: 1;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--heading-color);
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .icons {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex: 1;
}

header .icons i {
    font-size: 20px;
    color: var(--heading-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .burger-menu {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--heading-color);
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a.active,
header .icons i:hover,
header .burger-menu:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    header {
        padding: 18px 20px;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-2-light-color);
        padding: 20px;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul li {
        margin: 12px 0;
    }

    header nav.active ul {
        display: flex;
    }

    header .burger-menu {
        display: block;
    }
}

/* header end */

/* Footer Start */
.footer {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--background-2-light-color);
}

.footer h3 {
    font-size: 45px;
    color: var(--primary-color);
    margin: 30px 0;
    text-transform: uppercase;
}

.footer-infos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.footer-info h4 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.footer-info p {
    font-size: 18px;
    color: var(--p-color);
}

@media (max-width: 768px) {
    .footer h3 {
        font-size: 36px;
    }

    .footer-infos-container {
        padding: 10px 20px;
    }
}

/* Footer End */