/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff; /* White background for the overall website */
    color: #3D3D3D; /* Dark grey text for good readability */
}

h1, h2, h3 {
    color: #3D3D3D; /* Dark grey color for headers */
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0px auto;
    width: 80%;
}

/* Header Styles */
header {
    background-color: #3D3D3D; /* Dark grey header */
    color: #fff; /* White text */
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo h1 {
    margin: 0;
    font-size: 24px;
	color: #fff;
}

header nav .logo p {
    margin: 5px 0;
    font-size: 14px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #F09020; /* Brand orange on hover */
}

/* Hero Section */
.hero {
    background: url('/images/hero-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    animation: fadeInUp 1.5s ease-in-out;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    padding: 20px;
    border-radius: 8px;
}

.hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-in-out;
	color: #F09020;
}

.hero-content p {
    font-size: 1.2em;
    animation: fadeInUp 2s ease-in-out;
}

/* About Section */
.about {
    padding: 50px;
    background-color: #F09020;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 50px;
    background-color: #F0F0F0; /* Light grey background */
    text-align: center;
    animation: fadeInUp 2.5s ease-in-out;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #fff; /* White background for the service cards */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #3D3D3D; /* Dark grey color for service title */
}

.service-card p {
    font-size: 1em;
    color: #555; /* Slightly lighter grey for description */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card:hover h3 {
    color: #F09020; /* Brand orange on hover */
}

/* Portfolio Section */
.portfolio {
    padding: 50px;
    background-color: #fff; /* White background */
    text-align: center;
    animation: fadeInUp 3s ease-in-out;
}

.portfolio-gallery {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 3s ease-in-out;
}

.portfolio-item {
    background-color: #F0F0F0; /* Light grey background */
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 30%;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #F0F0F0; /* Light grey background */
    text-align: center;
    animation: fadeInUp 3.5s ease-in-out;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: #F09020; /* Brand orange on focus */
}

.contact form button {
    background-color: #3D3D3D; /* Dark grey background for button */
    color: #fff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #F09020; /* Brand orange on hover */
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #3D3D3D; /* Dark grey color for contact info */
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border: 1px solid #c3e6cb;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}


/* Footer */
footer {
    background-color: #3D3D3D; /* Dark grey footer */
    color: #fff; /* White text */
    text-align: center;
    padding: 20px;
    animation: fadeInUp 4s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-gallery {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-item {
        width: 80%;
        margin-bottom: 20px;
    }

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

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

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu .bar {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
	
	.container{
		width: 100%;
	}

    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #3D3D3D;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        color: white;
        font-size: 18px;
    }
}

