/* Basic Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: auto;
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: #5d4037; /* Interior design themed color */
}

ul {
    list-style: none;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

/* Navigation Styling */
nav {
    background: #fff;
    color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav .logo {
    float: left;
    font-weight: bold;
    font-size: 1.5rem;
}

nav ul {
    float: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    padding: 5px 0;
    display: inline-block;
}

/* Hero Section Styling */
.hero {
    background: url('1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    background: #5d4037;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

/* General Section Styling */
section {
    padding: 80px 0;
}

#about, #services, #contact {
    background: #f4f4f4;
}

/* Services Section Styling */
#services ul li {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Portfolio Section Styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.project img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.project h3 {
    margin-top: 10px;
    text-align: center;
}

/* Footer Styling */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #fff;
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    nav .logo, nav ul {
        float: none;
        text-align: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
