* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
    font-family: 'Merriweather', Georgia, serif;
    color: black;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h1 {
    text-align: center;
    font-size: 3em;
    font-family: 'Merriweather', Georgia, serif;
    margin-top: 1em;
    letter-spacing: 2px;
}

h4 {
    font-size: 1.2em;

}

a {
    text-decoration: none;
    color: #2980b9;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.nav-bar {
    background: linear-gradient(180deg, #425e77, #3593d1);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-bar:hover {
    background-color: #2986c4;
    ;
}

.nav-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-bar li {
    margin: 0 30px;
}

.nav-bar a {
    font-size: 18px;
    color: #ecf0f1;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-bar a:hover {
    background-color: #464646;
    color: white;
}

.formblock1,
.formblock2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    min-height: 600px;
    background: linear-gradient(135deg, #2c3e50, #2980b9);
    color: black;
    font-size: 24px;
    position: relative;
    overflow: hidden;
}


.formblock1 {
    flex-direction: row;
}

.formblock2 {
    flex-direction: row-reverse;
}

.formblocktext {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    font-family: 'Merriweather', Georgia, serif;
    line-height: 1.8;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.formblocktext:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

#welcomewood,
#qualitywood {
    flex: 1;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.wood-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 350px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #2980b9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#welcomewood:hover .wood-image img,
#qualitywood:hover .wood-image img {
    transform: scale(1.05);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero {
    position: relative;
    height: 80vh;
    background: url('https://source.unsplash.com/1600x900/?luxury') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    transition: background 0.5s ease;
}

.hero:hover {
    background: url('https://source.unsplash.com/1600x900/?luxury,modern') no-repeat center center/cover;
}

.hero h1 {
    font-size: 4em;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.hero h1:hover {
    transform: translateY(-5px);
}

.hero p {
    font-size: 1.5em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero button {
    padding: 15px 30px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hero button:hover {
    background-color: #e74c3c;
    transform: translateY(-2px);
}

footer {
    background-color: #333;
    color: #ecf0f1;
    padding: 50px 0;
    text-align: center;
    transition: background-color 0.3s ease;
}

footer:hover {
    background-color: #444;
}

footer h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

footer p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

footer a {
    color: #ecf0f1;
    font-weight: 600;
}

footer a:hover {
    color: #2980b9;
}

#testimonials {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
    border-top: 3px solid #5a4e25;
}

#testimonialtitle {
    font-size: 2.5em;
    font-family: 'Noto Sans', sans-serif;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

#testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#testimonials article {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.253);
    padding: 30px;
    transition: transform 0.3s ease-in-out;
}

#testimonials article:hover {
    transform: translateY(-10px);
}

#testimonials article p {
    font-family: 'Roboto', sans-serif;
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

#testimonials article:last-child {
    margin-bottom: 0;
}




/*About Us Page*/

.team {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.team-member {
    background: linear-gradient(200deg, #2c3e50, #2980b9);
    color: rgba(255, 255, 255, 0.85);
    ;
    font-size: 24px;
    border-radius: 15px;
    border: 3px solid #2980b9;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.team-member img {
    width: 100%;
    border-radius: 15px;
}

h3 {
    background-color: rgba(255, 255, 255, 0.85);
    color: black;
    border-radius: 7px;
}




/*Gallery Page*/
.gallerysection {
    background: linear-gradient(135deg, #2c3e50, #2173aa);
}

.galleryimage {
    width: 100%;
    max-width: 600px;
    height: auto;
    justify-content: space-around;
    border-radius: 15px;
}

figure {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    padding: 5px;
}

@media screen and (min-width: 500px) {
    .gallerysection {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0px;
    }
}

@media screen and (max-width: 900px) {
    .gallerysection {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 600px) {
    .gallerysection {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
}





















/* Form Styles */
#form {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #2c3e50, #1e6a9c);
    color: white;
}

/* Form Title */
#title-container {
    margin-bottom: 30px;
}

#title-container label {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus {
    border-color: #006747;
    outline: none;
}

/* Shipping & Billing Section */
#shipping,
#billing {
    margin-top: 30px;
}

#shipping .form-group,
#billing .form-group {
    margin-bottom: 15px;
}

/* Payment Button */
#payment-button {
    background-color: #006747;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

#payment-button:hover {
    background-color: #004f3a;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

footer a:hover {
    color: #ffffff;
}

/* Social Media Icons */
.social a {
    margin: 0 10px;
}

.social img {
    width: 40px;
    height: 40px;
}































@media (max-width: 700px) {
    .nav-bar ul {
        flex-direction: column;
        width: 100%;
    }

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

    #formblock1,
    #formblock2 {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1.2em;
    }

    #testimonials {
        grid-template-columns: 1fr 1fr;
    }

    .hamburger {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(145deg, #3f5b77, #3095d8);
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        font-size: 1.5em;
        cursor: pointer;
        z-index: 2000;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background-color: #e74c3c;
        transform: scale(1.1);
    }

    .team {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member {
        width: 100%;
        padding: 15px;
    }

    .formblock1,
    .formblock2 {
        flex-direction: column !important;
        text-align: center;
        padding: 60px 20px;
    }

    .formblocktext {
        order: -1;
        width: 100%;
    }

    #welcomewood,
    #qualitywood {
        max-width: 100%;
        width: 100%;
    }




}