* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F3EFEA;
    color: #1f1f1f;
    line-height: 1.6;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* NAVBAR */

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 60px;

    background-color: #E5DEC9;
    border-bottom: 1px solid #ded8ce;
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 15px;
}

.language-switcher {
    display: flex;
    gap: 12px;
}

.language-switcher button {
    background: none;
    border: none;
    cursor: pointer;

    font-size: 12px;
    letter-spacing: 1px;
}

/* HERO */

.hero {
    width: 100%;
    padding: 80px 80px 100px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.hero-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.hero-heading {
    flex: 1.3;
}

.hero-info {
    flex: 0.8;
    max-width: 460px;
}

.hero-label {
    font-size: 17px;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 22px;
}
.hero h1 {
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #121212;
    color: #ffffff;
}

.btn-secondary {
    border: 1px solid #121212;
    color: #121212;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
}


/* ABOUT SECTION */

.about-section {
    width: 100%;
    background-color: #F3EFEA;
}


/* PHILOSOPHY */

.philosophy {
    width: 100%;
    padding: 100px 80px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 32px;

    text-align: center;
}

.section-title {
    color: #D4AF37;

    font-size: 17px;
    font-weight: 500;
    letter-spacing: 3px;
}

.philosophy-quote {
    max-width: 1000px;

    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.45;

    color: #121212;
}

.founder {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 13px;
    letter-spacing: 0.5px;
}

.founder-line {
    width: 36px;
    height: 1px;

    background-color: #D4AF37;
}


/* ABOUT CONTENT */

.about-content {
   width: 100%;
    padding: 60px 80px 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content h1,
.about-content h2 {
    width: 100%;
    max-width: 1200px;

    color: #D4AF37;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 3px;

    margin-bottom: 35px;
}

.about-text {
     width: 100%;
    max-width: 1200px;
}

.about-text p {
    font-family: Arial, sans-serif;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;

    color: 121212;

    margin-bottom: 24px;
}

 /* PRODUCTS SECTION */

.products-section {
    width: 100%;
    background-color: #F3EFEA;

    padding: 120px 80px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 64px;
}

.products-heading {
    width: 100%;
    text-align: center;
}


.products-heading h1,
.products-heading h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
}

.products-message {
    width: 100%;
    max-width: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    gap: 28px;
}

.products-message p {
    width: 100%;

    font-size: 17px;
    line-height: 1.55;

    color: #4A4A4A;
    text-align: center;
}
.product-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background-color: #FAF8F5;
}

.product-icon img {
    width: 36px;
    height: 36px;
    display: block;
}

.products-message p {
    font-size: 17px;
    line-height: 1.55;

    color: #4A4A4A;
}

/* CONTACT SECTION */

.contact-section {
    width: 100%;
    padding: 120px 80px;

    display: flex;
    align-items: flex-start;
    gap: 80px;

    background-color: #FAF8F5;
}


/* CONTACT INFO */

.contact-info {
    flex: 1;
}

.contact-info h1,
.contact-info h2 {
    color: #D4AF37;

    font-size: 17px;
    font-weight: 500;
    letter-spacing: 3px;

    margin-bottom: 55px;
}


.contact-item {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}

.contact-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #F3EFEA;
}

.contact-icon img {
    width: 18px;
    height: 18px;
}

.contact-item span {
    display: block;

    color: #8C8C8C;

    font-size: 11px;
    letter-spacing: 1px;
}

.contact-item p {
    margin-top: 3px;

    color: #121212;

    font-size: 14px;
    line-height: 1.4;
}


/* CONTACT FORM */

.contact-form-wrapper {
    flex: 1.4;

    padding: 50px;

    background-color: #F3EFEA;
    border: 1px solid #E5DEC9;
}

.contact-form-wrapper h2 {
    font-family: Georgia, serif;

    font-size: 30px;
    font-weight: 400;

    margin-bottom: 32px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    color: #121212;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #E5DEC9;
    background-color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.newsletter-option {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: #666666;
    font-size: 12px;
}

.submit-button {
    padding: 14px 28px;

    border: none;

    background-color: #121212;
    color: #ffffff;

    font-size: 12px;
    letter-spacing: 2px;

    cursor: pointer;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {

    .navbar {
        padding: 20px 30px;
        gap: 20px;
    }

    .nav-links {
        gap: 18px;
    }

    .hero {
        padding: 60px 30px 80px;
        gap: 40px;
    }

    .hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .hero-info {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-image img {
        height: 450px;
    }

    .philosophy {
        padding: 80px 30px;
    }

    .philosophy-quote {
        font-size: 28px;
    }

    .about-content {
        padding: 50px 30px 80px;
    }

    .products-section {
        padding: 90px 30px;
    }

    .contact-section {
        padding: 90px 30px;
        flex-direction: column;
        gap: 50px;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 40px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 18px 20px;
    }

    .logo img {
        width: 105px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .language-switcher {
        margin-top: 5px;
    }

    .hero {
        padding: 45px 20px 60px;
        gap: 32px;
    }

    .hero-label {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        height: 320px;
    }

    .philosophy {
        padding: 60px 20px;
        gap: 25px;
    }

    .section-title {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .philosophy-quote {
        font-size: 24px;
    }

    .founder {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-content {
        padding: 40px 20px 60px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .products-section {
        padding: 70px 20px;
        gap: 45px;
    }

    .products-heading h1,
    .products-heading h2 {
        font-size: 32px;
    }

    .products-message p {
        font-size: 15px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 26px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .submit-button {
        width: 100%;
    }
}

.site-footer {
    width: 100%;
    padding: 24px 20px;
    background-color: #E5DEC9;
    text-align: center;
    border-top: 1px solid #d3cbb5;
}

.site-footer p {
    margin: 0;
    font-size: 12px;
    color: #4A4A4A;
}

/* MOBILE */

@media (max-width: 600px) {

    .site-footer {
        padding: 24px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


#form-status {
    margin-top: 18px;
    font-size: 14px;
}

.form-success {
    color: #2f6b3a;
}

.form-error {
    color: #a33a3a;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}





