.logo-img {
    width: 300px;
    height: auto;
}
body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    background-color: #aeeeee;
}
.designer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-radius: 1px solid #aeeeee;
    position: relative;
    flex-wrap: wrap;
}
.left-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #f3a6b2;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #aeeeee;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #aeeeee;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 40px;
        border-top: 1px solid #aeeeee;
    }
    .nav-links.show {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}
h1 {
    text-align: center;
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
}
/*grid*/
.branding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: start;
    background-color: #aeeeee;
    font-family: 'Times New Roman', Times, serif;
}
.text-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.text-section h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: black;
}
.text-section p {
    font-size: 14px;
    line-height: 1.6;
    color: black;
}
.image-section img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .branding-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .image-section img {
        max-width: 100%;
    }
}
.sketches {
    width: 650px;
    height: auto;
}
/*learn more button*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}
button {
    width: 150px;
    height: 50px;
    font-size: 20px;
    text-decoration: none;
    background-color: #8db600;
    color: #fff700;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
}
button:hover {
    text-decoration: none;
    background-color: #fff700;
    color: #8db600;
}
/*Images*/
.images {
    display: block;
    margin: 0 auto;
    width: 150px;
    height: auto;
    text-align: center;
    padding-right: 300px;
}
hr {
    background-color: #f3a6b2;
    height: 3px;
}
.site-footer {
    background-color: #f3a6b2;
    color: black;
    text-align: center;
    padding: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    border-top: 2px solid #aeeeee;
}
.indent {
    text-align: center;
    padding-left: 150px;
    padding-right: 150px;
    margin-left: 50px;
    margin-right: 50px;
}
/*order form*/
.order-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #aeeeee;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Times New Roman', Times, serif;
}
.order-form h1 {
    text-align: center;
    color: black;
}
.order-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: black;
}
.order-form input, .order-form select, .order-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 2px solid #f3a6b2;
    border-radius: 5px;
    font-size: 14px;
}
.order-form button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #8db600;
    color: #fff700;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.order-form button:hover {
    background-color: #fff700;
    color: #8db600;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #aeeeee;
    z-index: 999;
}
.popup-content {
    background-color: #aeeeee;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    margin: 100px auto;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease-in-out;
}
.popup-content button {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #8db600;
    color: #fff700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
/*Contact*/
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background-color: #aeeeee;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    font-family: 'Times New Roman', Times, serif;
}
.contact-info, .contact-form {
    background-color: #aeeeee;
    padding: 20px;
    border-radius: 10px;
}
.contact-info h2, .contact-form h2 {
    color: black;
    margin-bottom: 15px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid #f3a6b2;
    font-size: 15px;
}
.contact-form button {
    margin-top: 15px;
    padding: 12px;
    background-color: #8db600;
    color: #fff700;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer; 
}
.contact-form button:hover {
    background-color: #fff700;
    color: #8db600;
}
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
.map-container {
    margin-top: 40px;
    background-color: #aeeeee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
.map-container h2 {
    color: black;
    margin-bottom: 15px;
    text-align: center;
}