:root {
    --accent-color: #e67e22;
    --accent-hover: #cf711f;
}

body {
    scroll-behavior: smooth;
    margin: 0;
    font-family: system-ui, sans-serif;
}

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;
}

.offset-top {
    padding-top: 70px;
    /* to push content below fixed navbar */
}

/* Banner / Hero Section */
.hero-banner {
    background: url('../images/hero-about.jpg') center center/cover no-repeat;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Other sections/style */
section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

#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);
}

.btn-warning {
    background-color: var(--accent-color);
    border: none;
    color: #ffffff;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: var(--accent-hover);
}

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);
}

footer {
    background: #222;
    color: #bbb;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: var(--accent-color);
    margin: 0 10px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 300px;
    /* Control the size of images */
    margin-left: auto;
    /* Align images to the right side */
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

.carousel-caption h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
}

.profile-image {
    width: 150px;
    /* Adjust size as needed */
    height: 150px;
    object-fit: cover;
    /* Ensures the image fills the circle */
    border-radius: 50%;
    /* Makes it perfectly circular */
    border: 3px solid #ddd;
    /* Optional: subtle border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* Optional: soft shadow */
    display: block;
    margin: 0 auto;
    /* Center horizontally */
}

.bg-light-tiling {
    background-color: #f4f4f4;
    /* soft neutral background */
}

.service-card {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h5 {
    color: var(--accent-color);
}

.icon-accent {
    color: var(--accent-color) !important;
}

/* Mobile navbar social icons positioning */
@media (max-width: 991.98px) {
    #navbarSocial {
        display: flex !important;
        justify-content: center;
        margin-top: 1rem;
    }

    #navbarAddress {
        display: none;
    }
}

.founder {
    text-align: justify;
}

.credits-title {
    color: var(--accent-color);
}

.credits-note a {
    color: var(--accent-color);
}

.credits-list a {
    color: var(--accent-color);
}