﻿/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
/* Top Bar Styles */
.top-bar {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .logo-link img {
    height: 75px; /* Fixed height for logo */
    width: auto; /* Maintain aspect ratio */
    max-width: 200px; /* Optional: Set maximum width */
}

/* Logo and Text Container */
.logo-with-text {
    display: flex;
    align-items: center;
    gap: 15px; /* Adjust this value for spacing */
}

/* Logo Link */
.logo-link {
    display: flex;
    align-items: center;
}

/* Logo Text */
.logo-text {
    font-size: 2.0rem;
    font-weight: bold;
    margin: 0;
}

/* Existing contact info styles */
.contact-info {
    text-align: right;
}

.contact-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}
/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

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

        header nav ul li {
            display: inline;
            margin: 0 15px;
        }

            header nav ul li a {
                color: white;
                text-decoration: none;
                font-weight: bold;
            }

                header nav ul li a:hover {
                    text-decoration: underline;
                }

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* Hide the dropdown by default */
    position: absolute;
    top: 100%; /* Position it below the parent link */
    left: 0;
    background-color: #444;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    min-width: 150px; /* Set a minimum width for the dropdown */
    z-index: 1000; /* Ensure it appears above other content */
}

    .dropdown-menu li {
        padding: 5px 20px;
    }

        .dropdown-menu li a {
            color: white;
            text-decoration: none;
            display: block;
        }

            .dropdown-menu li a:hover {
                background-color: #555; /* Highlight on hover */
            }

/* Show the dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
/* Hero Section Styles */
.hero {
    background-color: #f4f4f4; /* Change background color if needed */
    padding: 50px 20px;
    text-align: center;
    height: auto; /* Adjust height to fit content */
}

.hero-container {
    display: flex;
    justify-content: space-around; /* Evenly space out the items */
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
}

.hero-item {
    flex: 1 1 30%; /* Each item takes up 30% of the container width */
    margin: 10px;
    text-align: center;
}

    .hero-item h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-item img {
        max-width: 100%;
        height: auto;
        border-radius: 10px; /* Optional: Add rounded corners to images */
    }

/* About Section Styles */
.about {
    padding: 50px 20px;
    text-align: center;
}

    .about h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

    footer p {
        margin: 0;
    }
/* About Page */
.about-section {
    padding: 50px 20px;
    text-align: center;
}

/* Contact Page */
.contact-section {
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-section input, 
.contact-section textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-section button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

/* Service Pages */
.service-section {
    padding: 50px 20px;
    text-align: center;
}