:root {
    --accent-color: #e67e22;
    /* Deeper orange */
    --accent-hover: #cf711f;
}

body {
    scroll-behavior: smooth;
    margin: 0;
    font-family: system-ui, sans-serif;
}

/* Navbar */
nav.navbar {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    height: 48px;
}

#navbarAddress {
    font-size: 0.9rem;
    color: #555;
    margin-left: 1rem;
    white-space: nowrap;
}

#navbarNav ul.navbar-nav {
    gap: 1.25rem;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

#navbarSocial a {
    color: #444;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

#navbarSocial a:hover {
    color: var(--accent-color);
}

.navbar-toggler {
    border: none;
}

/* Hero */
#hero {
    background: url('../images/hero-home.jpg') center center/cover no-repeat;
    height: 99vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--accent-color);
    text-align: center;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 1rem;
}

#hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

#hero p {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    #hero h1 {
        font-size: 3.5rem;
    }

    #hero p {
        font-size: 1.25rem;
    }
}

.btn-warning {
    background-color: var(--accent-color);
    border: none;
    color: #ffffff;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: var(--accent-hover);
}

section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.gallery-img {
    border-radius: 5px;
    object-fit: cover;
}

footer {
    background: #222;
    color: #bbb;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: var(--accent-color);
    margin: 0 10px;
}

/* Mobile navbar social icons positioning */
@media (max-width: 991.98px) {
    #navbarSocial {
        display: flex !important;
        justify-content: center;
        margin-top: 1rem;
    }

    #navbarAddress {
        display: none;
    }
}

#about .about-img {
    max-width: 100%;
    height: 400px;
    object-fit: fill;
    border-radius: 8px;
}

@media (max-width: 767.98px) {

    /* On smaller screens, stack vertically and center image */
    #about .col-md-5,
    #about .col-md-7 {
        text-align: center !important;
    }

    #about .section-title {
        text-align: center !important;
    }

    #about .about-img {
        max-width: 100%;
        height: 300px;
        object-fit: fill;
        border-radius: 8px;
        margin-bottom: 15px;
    }
}

#about .contact-info h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

#about .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

#about .contact-info a {
    color: inherit;
    transition: color 0.3s ease;
}

#about .contact-info a:hover {
    color: var(--accent-hover);
}

@media (max-width: 767.98px) {

    /* On smaller screens, stack vertically and center text */
    #about .col-md-5,
    #about .col-md-7 {
        text-align: center !important;
    }

    #about .section-title {
        text-align: center !important;
    }
}

.img-fit {
    height: 500px;
    /* Taller image */
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
}

.border-start {
    border-left: 1px solid #777 !important;
    /* Change to your preferred line color */
}

a.email-link {
    color: inherit;
    text-decoration: none;
}

a.email-link:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

.social-icons a i:hover {
    color: var(--accent-color);
}