/* ================= Global ================= */
html,
body {
    scroll-behavior: smooth;
    padding-top: 110px;
    /* navbar height */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.btn-primary {
    background-color: #89CFF0;
    border-color: #89CFF0;
}

/* ================= Navbar ================= */
.main-navbar {
    height: 110px;
    background-color: #f5f1df;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    margin: 0;
    top: 0;
}

.navbar-brand img {
    height: 115px;
}

.navbar-nav {
    gap: 2rem;
}

.contact-info {
    font-size: 0.9rem;
}

.mobile-contact {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 1rem;
}

/* Hamburger button (mobile) */
.navbar-toggler {
    border: none;
}

/* ================= Hero ================= */
.hero {
    position: relative;
    height: 100vh;
    background-image: url("pics/pic6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

/* ================= Icon circle for services ================= */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #89CFF0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ================= Sections ================= */
section {
    scroll-margin-top: 120px;
    padding: 5rem 0;
}

/* ================= About ================= */
#about h2,
#about h3 {
    color: #222;
}

#about p,
#about ul {
    color: #333;
    line-height: 1.6;
}

#about img {
    max-width: 100%;
    height: auto;
}

.ul-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ================= Contact Form ================= */
#contact .card {
    padding: 2rem;
}

#contact .btn {
    font-weight: bold;
}

/* ================= Footer ================= */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

/* ================= Responsive Navbar ================= */
@media (max-width: 991px) {

    /* Hide desktop contact info */
    .contact-info {
        display: none;
    }

    /* Collapse menu */
    .navbar-collapse {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #f5f1df;
        padding: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        display: flex;
        margin-top: 110px;
    }

    .mobile-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
    }

    /* Mobile contact */
    .mobile-contact {
        margin-top: 1rem;
    }
}

/* ================= Desktop Navbar ================= */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        position: static;
        width: auto;
        flex-direction: row;
        justify-content: flex-end;
        background: transparent;
        padding: 0;
    }

    .navbar-nav {
        flex-direction: row;
        gap: 2rem;
    }
}

/* ================= Navbar positioning ================= */
.navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.contact-info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ================= Some ================= */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

/* Brand colors */
.tiktok {
    background: #000000;
}

.instagram {
    background: #E1306C;
}

.facebook {
    background: #1877F2;
}

/* Hover effect */
.social-icons a:hover {
    transform: scale(1.15);
    opacity: 0.9;
}