/* ------- RESET ------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefcf7;
}

#container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ------- NAVIGATION ------- */
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: relative;
    z-index: 10;
}

nav img {
    width: 250px;
    height: auto;
}

ul {
    list-style-type: none;
    display: flex;
    gap: 5px;
    margin: 0;
}

li {
    padding: 10px 16px;
}

a {
    text-decoration-line: none;
    font-size: 18px;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: burlywood;
}

/* ------- HERO HEADER ------- */
header {
    width: 100%;
    height: 100vh;
    background-image: url('images/background2.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* dark overlay */
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#paragraph1 {
    font-size: 22px;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 2px;
}

h1 {
    font-size: 80px;
    font-family: 'Times New Roman', Times, serif;
    margin: 20px 0;
    letter-spacing: 3px;
}

#paragraph2 {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* ------- BUTTONS ------- */
#but {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

#but1, #but2 {
    height: 60px;
    width: 140px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#but1 {
    border: none;
    background-color: #9b7c55;
    color: white;
}

#but1:hover {
    background-color: white;
    color: #3b3021;
}

#but2 {
    border: 3px solid white;
    background-color: transparent;
    color: white;
}

#but2:hover {
    background-color: white;
    color: #3b3021;
}

/* ------- MAIN PRODUCTS ------- */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100vh;
    padding: 80px 20px 60px;
    background-color: #fefcf7;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    color: #3b3021;
    font-size: 40px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#paragraph3 {
    color: #998c7d;
    font-size: 18px;
    margin: 10px 0 40px;
}

#imgs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

#imgs img {
    width: 360px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#imgs img:hover {
    transform: scale(1.02);
}

/* product text */
#text {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
}

#text1 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 20px 0 10px;
    flex-wrap: wrap;
}

h3 {
    color: #30271b;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 24px;
}

#text2 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

#text2 p {
    width: 350px;
    line-height: 1.8;
    color: #776d62;
    font-size: 16px;
}

/* specific position adjustments (kept from original) */
#h31 { position: relative; right: 90px; }
#h32 { position: relative; right: 30px; }
#h33 { position: relative; left: 40px; }
#p1 { position: relative; right: 60px; }
#p3 { position: relative; left: 60px; }

/* ------- ABOUT SECTION (NEW) ------- */
#about {
    padding: 80px 20px;
    background-color: #f8f3ec;
    text-align: center;
}

#about h2 {
    font-size: 42px;
    color: #3b3021;
    margin-bottom: 15px;
}

.about-desc {
    font-size: 18px;
    color: #7a6b5c;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.about-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px 20px 25px;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Times New Roman', Times, serif;
    color: #3b3021;
}

.card p {
    color: #7a6b5c;
    font-size: 15px;
    line-height: 1.5;
}

/* ------- TESTIMONIALS (NEW) ------- */
#testimonials {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

#testimonials h2 {
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #f8f3ec;
    padding: 30px 25px;
    border-radius: 15px;
    max-width: 320px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial .fa-star {
    color: #f5b342;
    margin: 0 2px 12px 0;
}

.testimonial p {
    font-size: 17px;
    color: #3b3021;
    font-style: italic;
    line-height: 1.6;
    margin: 10px 0 15px;
}

.testimonial h4 {
    color: #9b7c55;
    font-weight: 500;
}

/* ------- FOOTER (NEW) ------- */
#footer {
    background-color: #2c241a;
    color: #d4c9bd;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 180px;
}

.footer-column h3 {
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 26px;
    margin-bottom: 12px;
}

.footer-column h4 {
    color: #f0e6da;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #b8ab9d;
}

.footer-column p i {
    width: 25px;
    color: #9b7c55;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column ul li {
    padding: 0;
}

.footer-column ul li a {
    color: #b8ab9d;
    font-size: 15px;
    font-weight: 400;
}

.footer-column ul li a:hover {
    color: #9b7c55;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #b8ab9d;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #9b7c55;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid #3f352b;
    color: #8a7d6f;
    font-size: 14px;
}

/* ------- RESPONSIVE ------- */
@media (max-width: 992px) {
    #imgs img {
        width: 280px;
        height: 200px;
    }
    #text2 p {
        width: 280px;
    }
    #h31, #h32, #h33, #p1, #p3 {
        position: static;
    }
    #text1, #text2 {
        flex-direction: column;
        align-items: center;
    }
    #text1 h3 {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
    }
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    li {
        padding: 8px 12px;
    }
    h1 {
        font-size: 50px;
    }
    #paragraph2 {
        font-size: 17px;
        padding: 0 15px;
    }
    #but {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    #but1, #but2 {
        width: 180px;
        height: 55px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-column ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    #imgs img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
    #text2 p {
        width: 100%;
        max-width: 320px;
    }
    header {
        height: 90vh;
    }
    main {
        margin-top: 90vh;
        padding: 40px 15px;
    }
    .card {
        max-width: 100%;
    }
}