/* General Styles */
:root {
   --primary-color: #FF8C00; /* Vibrant Orange */
    --secondary-color: #FFA500; /* Lighter Orange */
    --dark-orange: #E67E22; /* Darker Orange */
    --accent-color: #FFD700; /* Gold/Yellow accent for subtle highlights */
    --text-color: #333;
    --light-text-color: #666;
    --background-light: #f9f9f9;
    --background-dark: #f0f0f0;
    --white: #fff;
    --black: #000;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--background-light);
    line-height: 1.6;
}

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

h1, h2, h3 {
    color: var(--primary-color);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

h3 {
    margin-top: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-orange);
}

.btn {
    display: inline-block;
    background-color:#a14e00;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-orange);
    color: var(--white);
}

/* Header */
#site-header {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px); /* For modern browsers, blurs content behind it */
}

#site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Ensure horizontal padding */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo image and text */
}

.logo img {
    height: 45px; /* Adjusted size */
    /* Add orange filter if your logo is monochrome */
    /* filter: invert(57%) sepia(94%) saturate(778%) hue-rotate(339deg) brightness(99%) contrast(102%); */
}

.logo h1 {
    margin: 0;
    font-size: 2.3em;
    color: var(--primary-color);
    font-weight: 900; /* Bolder font */
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Space between nav items */
}

nav ul li a {
    color:#6a3300;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1em;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px; /* Space for underline */
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Start with no underline */
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color)); /* Orange gradient underline */
    transition: width 0.3s ease-out;
}

nav ul li a:hover {
    color: var(--primary-color); /* Orange on hover */
}

nav ul li a:hover::after {
    width: 100%; /* Full underline on hover */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Banner Section */
#hero-banner {
    position: relative;
    min-height: 80vh; /* Make banner take up significant viewport height */
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--primary-color) 50%, var(--accent-color) 100%); /* Vibrant gradient */
   color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 80px; /* Top padding, bottom padding */
    overflow: hidden; /* Important for pseudo-elements */
}

#hero-banner::before,
#hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Height of the wave */
    background-repeat: no-repeat;
    background-size: 100% 100px;
    z-index: 1; /* Behind content */
}

#hero-banner::before { /* Bottom wave */
    
    transform: translateY(100%); /* Push it down initially */
}

#hero-banner::after { /* Top wave */
   
    transform: translateY(-100%); /* Push it up initially */
}


.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative; /* For z-index */
    z-index: 2; /* Above waves */
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 50%; /* Take up half the space */
    text-align: left;
}

.hero-text h2 {
    font-size: 3.5em; /* Larger heading */
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    text-align: left; /* Align text left */
}

.hero-text h2::after { /* Remove underline from H2 in hero */
    display: none;
}


.hero-text p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px; /* Space between buttons */
}

.hero-image {
    flex: 1;
    max-width: 50%; /* Take up half the space */
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: scale(1.1); /* Slightly larger */
    animation: float 6s ease-in-out infinite; /* Subtle floating animation */
}




/* Responsive Design for Header/Hero */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column; /* Stack text and image */
        text-align: center;
        gap: 20px;
    }

    .hero-text {
        max-width: 100%; /* Full width for text */
    }

    .hero-text h2 {
        font-size: 3em;
        text-align: center;
    }

    .hero-text p {
        font-size: 1.1em;
    }

    .hero-cta {
        justify-content: center; /* Center buttons */
    }

    .hero-image {
        max-width: 70%; /* Image takes up more space */
        margin-top: 20px;
    }

    #hero-banner {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    /* Header adjustments for mobile */
    #site-header .container {
        flex-wrap: wrap; /* Allow wrapping */
        padding: 0 15px;
    }

    .logo {
        flex-basis: 100%; /* Logo takes full width at top */
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .logo img {
        height: 40px;
    }
    .logo h1 {
        font-size: 2em;
    }

    nav ul {
        display: none; /* Hide nav links by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Position below header */
        left: 0;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    nav ul.active {
        display: flex; /* Show when active */
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
        gap: 0;
    }

    nav ul li a {
        font-size: 1.2em;
        padding: 10px 0;
    }

    .mobile-menu-toggle {
        display: block; /* Show hamburger icon */
        order: 2; /* Place it after logo if needed */
        margin-left: auto; /* Push to the right */
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }

    .hero-text h2 {
        font-size: 2.5em;
    }

    .hero-image {
        max-width: 90%; /* Larger image on smaller screens */
    }

    #hero-banner {
        min-height: 60vh;
        padding: 80px 0 40px;
    }

    #hero-banner::before, #hero-banner::after {
        height: 60px;
        background-size: 100% 60px;
    }
   
}


/* Services Section */
#services {
    background-color: var(--white);
    padding: 60px 0;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: var(--background-dark);
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item img {
    height: 60px;
    margin-bottom: 20px;
    filter: invert(57%) sepia(94%) saturate(778%) hue-rotate(339deg) brightness(99%) contrast(102%); /* Orange filter */
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Gallery Section */
#gallery {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

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

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
#about {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
}

#about p {
    font-size: 1.1em;
    color: var(--light-text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
#contact {
    background-color: var(--background-dark);
    padding: 60px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: auto;
    padding: 12px 30px;
    font-size: 1.1em;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--light-text-color);
    font-size: 1.1em;
}

.contact-info strong {
    color: var(--text-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
}

.social-links img {
    height: 30px;
    width: 30px;
    filter: invert(57%) sepia(94%) saturate(778%) hue-rotate(339deg) brightness(99%) contrast(102%); /* Orange filter */
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
        padding: 15px 0;
    }

    .logo {
        margin-bottom: 15px;
    }

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

    nav ul li {
        margin: 10px 0;
    }

    #hero .container {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 2.5em;
        }

    

    .hero-content p {
        font-size: 1.1em;
     
    }

    .service-items {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .contact-info {
        margin-top: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 2em;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .service-item img, .social-links img {
        height: 50px;
        width: 50px;
    }
    .contact-form{
        max-width: 50%;
    }
    header{
        display: none;
    }
   
}
