@charset "UTF-8";

/* --- Global Styles & Variables --- */
:root {
    --primary-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333;
    --white-color: #ffffff;
    --heading-font: 'Arial Black', Gadget, sans-serif;
    --body-font: Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-top: 0; padding-bottom: 20px;}
p { margin-bottom: 1rem; }

/* --- Header & Navigation --- */
#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--white-color);
}

.top-bar {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    align-items: center;
}

.phone-number span {
    font-weight: bold;
    font-size: 0.9rem;
}

.top-bar .social-links {
    margin-left: auto; 
}

.top-bar .social-links a {
    margin-left: 15px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.top-bar .social-links a:hover {
    transform: scale(1.1);
}

.top-bar .social-links img {
    height: 22px;
    width: 22px;
    vertical-align: middle;
}

.main-nav-wrapper {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav-wrapper nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 101; /* Ensure logo is above mobile menu */
}

.logo {
    height: 60px; 
    width: auto;
    margin-right: 15px; 
}

.company-name {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--dark-color);
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* --- Hamburger Menu Button --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101; /* Ensure button is above mobile menu */
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* --- Hero Section (Home Page) --- */
.hero {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding-top: 118px; 
    box-sizing: border-box; 
    /* Style for cycling background */
    transition: background-image 1s ease-in-out;
}

.hero-content h1 {
    color: var(--white-color);
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1rem auto 2rem auto;
}

.cta-button {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #e6a800;
    transform: translateY(-2px);
}

/* --- Homepage Galleries --- */
.home-gallery-section {
    padding: 4rem 0;
}

.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item-home img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-home img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* --- Inner Pages --- */
.page-header {
    padding-top: 118px; 
    padding-bottom: 50px;
    text-align: center;
    background: var(--dark-color);
}

.page-header h1 {
    color: var(--white-color);
}

.content-section {
    padding: 4rem 0;
}

/* --- Success Stories & Gallery Grids --- */
.success-grid, .gallery-grid {
    display: grid;
    gap: 30px;
}

.success-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.success-item {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.success-item img, .gallery-item img {
    width: 100%;
    display: block;
    height: 220px;
    object-fit: cover;
}

.gallery-item img {
    border-radius: 8px;
}

.success-item .review {
    padding: 25px;
}

/* --- Services List --- */
.services-list .service-item {
    background: var(--light-color);
    padding: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark-color);
    color: var(--white-color);
}

.business-hours {
    margin-bottom: 1rem;
}

.business-hours p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

#status-indicator.open {
    color: #28a745; /* Green */
    font-weight: bold;
}

#status-indicator.closed {
    color: #dc3545; /* Red */
    font-weight: bold;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 3rem; }

    .top-bar .container {
        flex-direction: column;
    }
    .top-bar .phone-number {
        margin-bottom: 8px;
    }
    
    .menu-toggle {
        display: block;
    }

    .nav-links-wrapper {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        padding-top: 120px; /* Space for header */
        padding-bottom: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links-wrapper.mobile-menu-open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .hero, .page-header { padding-top: 118px; } /* Reset padding for mobile */
    .success-grid, .gallery-grid, .gallery-grid-home { grid-template-columns: 1fr; }
}

#main-header .logo {
    width: 130px; /* Adjust this value to make the logo bigger or smaller */
    height: auto; /* This keeps the logo's proportions correct */
}

body {
    /* This pushes all content down to clear the fixed header */
    padding-top: 100px; /* Adjust this value to match your header's height */
}
