:root {
    --primary: #3a7d7c;
    --secondary: #ffb8a2;
    --dark-green: #28544b;
    --cream: #f8f4e9;
    --gold: #d4a373;
    --text: #333333;
}

:root {

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;

    --light: 300;
    --regular: 400;
    --semibold: 600;
    --bold: 700;
    --black: 900;


    --text-xs: 0.75rem;
    --text-sm: 1rem;
    --text-md: 1.333rem;
    --text-lg: 1.777rem;
    --text-xl: 2.369rem;
    --text-xxl: 3.157rem;
}

h1 {
    font-size: var(--text-xxl);
}

h2 {
    font-size: var(--text-xl);
}

h3 {
    font-size: var(--text-lg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    scroll-margin-top: 100px;
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: var(--regular);
    line-height: 1.6;
    color: #333;

}

.label {
    background-color: var(--secondary);
}

img {
    max-width: 100%;
    display: block;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--dark-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.nav-brand img {
    height: 80px;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-left: 10px;

}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

li {
    display: inline;
    margin-right: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
    font-family: var(--font-body);
    font-weight: var(--semibold);
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #c79b63;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #fffaf6;
    flex-wrap: wrap;
    background-image: url('images/bg2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 10.7;
}


.hero-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: 500px;
    border-radius: 10px;
    align-items: right;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    margin-left: 50px;

}

.hero-content h1 {
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-family: var(--font-heading);
    font-weight: var(--black);
    line-height: 1.2;
    margin-bottom: 0.5em;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    font-size: 45px;

}



.hero-title {
    font-size: clamp(2.5rem, 8vw, var(--text-xxl));
    letter-spacing: -0.5px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);

}

.hero-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.price {
    font-family: var(--font-heading);
    font-weight: var(--bold);
    color: var(--gold);
}

.aboutus {
    padding: 4rem 2rem;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;

}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;

}

.about-img img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;

}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;

}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: var(--black);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.catalog {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.catalog h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: var(--black);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.catalog-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.catalog-item {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
    border: 2px solid var(--gold);
}

.catalog-item h4 {
    margin: 1rem 0 0.5rem;
    font-family: var(--font-heading);
    font-weight: var(--bold);
    font-size: var(--text-md);
    color: var(--dark-green);
}

.catalog-item p {
    color: #555;
}

.catalog-item .label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c79b63;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: var(--bold);
    font-size: var(--text-xs);
    letter-spacing: 0.5px;
}

.contact {
    padding: 4rem 2rem;
    background-color: #fefefe;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: var(--black);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form button {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #627a56;
}

.site-footer {
    background-color: var(--dark-green);
    color: white;
    padding: 3rem 2rem;
    font-family: 'Georgia', serif;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 280px;
}

.footer-right h4,
.footer-left h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-social {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
}

.newsletter-form button {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #c38950;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 0.2rem 0.5rem !important;
    }

    section {
        scroll-margin-top: 80px;
    }

    .nav-brand img {
        height: 60px !important;
        padding-bottom: 5px !important;
    }

    .nav-bar .menu {
        margin-top: 0.5rem;

    }

    .nav-link {
        font-size: 0.85rem;

    }

    .hero-content {
        margin-left: 20px;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        font-family: var(--font-heading);
        font-weight: var(--black);
        line-height: 1.2;
        margin-bottom: 0.5em;
    }

    .catalog-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-img img {
        height: 300px;

    }

    .about-text {
        text-align: center;

    }

    :root {

        --text-xxl: 2.5rem;
        --text-xl: 2rem;
        --text-lg: 1.5rem;
    }

    .hero-content h1::after {
        width: 60px;
        bottom: -5px;
    }
}