
body{
    background-color: #f9f5f0;
    accent-color: #a67b5b;
    font-family: 'Segoe UI', sans-serif;
    color: #4e443c;
}
header {
    background-color: #f9f5f0;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: #4e443c;
}
footer {
    background-color: #f9f5f0;
    font-size: .70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
}
#homehero {
    height: 60vh;
    background-image: url('photos/tools.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
nav ul {
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #f9f5f0;
    font-size: 1.2em;
}
nav li {
    display: inline-block;
    margin: 0.5em;
}
nav ul li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a67b5b;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
nav ul li a:hover {
    background-color: #6b8e23;
    color: #f4f1ee;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.about-text {
    flex: 1;
    padding: 20px;
    font-size: 1.2em;
    line-height: 1.5em;
    background-color: #f9f5f0;
    border-radius: 10px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}
.gallery-item {
    overflow: hidden;
    border: 2px solid #a67b5b;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.contact-container {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    padding: 2em;
}

form {
    flex: 2;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1em 1em;
    max-width: 600px;
}

.craft-links {
    flex: 1;
    background-color: #f7f7f7;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.craft-links h3 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.craft-links ul {
    list-style: disc;
    padding-left: 1.2em;
}

.craft-links a {
    text-decoration: none;
    color: #0056b3;
}

.craft-links a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        text-align: center;
    }

    .about-container img {
        max-width: 80%;
    }
}
@media screen and (min-width: 1080px) {
    .about-container {
        flex-direction: row;
    }
    .about-text {
        width: 50%;
    }
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}