﻿/* ------------------- FONT IMPORT ------------------- */
@font-face {
    font-family: 'vividly-regular';
    src: url('../font/vividly-regular.otf') format('opentype');
}

/* ------------------- GLOBAL STYLES ------------------- */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    min-height: 100vh;
    font-family: 'Karla', sans-serif;
}

main {
    width: 100%;
    min-height: 100vh;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #f89b31;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .scroll-to-top:hover {
        background-color: #d87f26;
    }

.hidden {
    display: none !important;
}

/* ------------------- NAVBAR ------------------- */
#navbar {
    font-family: "Karla", sans-serif;
    box-shadow: 0 6px 16px 0 rgba(25,25,25,.06);
    background-color: white;
    color: #f89b31;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: 500;
}

.navbar-nav {
    flex-direction: row;
}

    .navbar-nav .nav-item {
        white-space: nowrap;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 3rem;
        margin-right: 20px;
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease, text-decoration 0.3s ease, font-weight 0.3s ease;
        font-weight: 500;
    }

.navbar .nav-link.active {
    color: #f89b31 !important;
    text-decoration: underline !important;
    text-decoration-color: #d0d63e !important;
    text-underline-offset: 10px !important;
    font-weight: 700 !important;
}

.navbar .nav-link:hover {
    color: #d0d63e;
}

.navbar form input.form-control {
    width: auto;
    border-radius: 50px;
}

.navbar .btn {
    background-color: #f89b31;
    color: #fff;
    border: none;
    transition: 0.3s;
    font-family: "Karla", sans-serif;
}

    .navbar .btn:hover {
        color: #fff;
        background-color: #fac282;
    }

.navbar .navbar-brand img {
    height: 80px;
}

/* ------------------- CONTAINERS ------------------- */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    width: 90%;
    margin: 50px auto;
    text-align: center;
}

.container2 {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ------------------- ABOUT SECTION ------------------- */
.about-section {
    max-width: 600px;
    text-align: justify;
    margin: 0 auto;
}

    .about-section h2 {
        font-family: "vividly-regular", sans-serif;
        font-size: 3rem;
        color: #f89b31;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-section p {
        font-family: "Karla", sans-serif;
        font-size: 1.2rem;
        color: #444;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: justify;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

/* ------------------- SOCIAL ICONS ------------------- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        display: flex;
        align-items: center;
        font-size: 1.1rem;
        color: #f89b31;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #d87f26;
        }

    .social-icons i {
        margin-right: 8px;
        font-size: 1.3rem;
    }

/* ------------------- GALLERY ------------------- */
.gallery {
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin-top: 50px;
}

    .gallery h2 {
        font-family: "vividly-regular";
        font-size: 3rem;
        color: #f89b31;
        margin-bottom: 20px;
    }

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

    .gallery-container img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

/* ------------------- FOOTER ------------------- */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    color: white;
    width: 100%;
    background-color: #f89b31;
}

/* ------------------- BANNER ------------------- */
.banner {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Matches navbar height */
    box-sizing: border-box;
    position: relative;
}

    .banner img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
        display: block;
    }

/* ------------------- RESPONSIVE STYLES ------------------- */
@media screen and (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .about-section {
        width: 80% !important;
        max-width: 80% !important;
    }

        .about-section h2 {
            font-size: 2.2rem;
        }

        .about-section p {
            font-size: 1rem !important;
        }

    .gallery-container img {
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .about-section h2,
    .gallery h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}
