/* Reset some default styles */
body, h1, h2, h3, p, ul, li, address {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #2c1d0f;
    color: #fefefe;
}

header {
    background-color: #fff;
    color: #2c1d0f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #6d4c41;
}

.hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6d4c41;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #513630;
}

.portfolio {
    padding: 40px 0;
    text-align: center;
}

.portfolio h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.portfolio-item {
    margin-bottom: 40px;
}

.portfolio-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item h3 {
    font-size: 24px;
    margin-top: 10px;
}

.portfolio-item p {
    font-size: 16px;
    margin-top: 10px;
}

.about, .contact {
    padding: 40px 0;
    text-align: center;
}

.about h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    header {
        text-align: center;
    }
    nav {
        margin-top: 20px;
    }
    .hero h2 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .portfolio-item h3 {
        font-size: 20px;
    }
    .portfolio-item p {
        font-size: 14px;
    }
}

