/* Google Fonts */
:root {
    --header-height: 3.5rem;

    /* Colors */
    --hue: 207;
    --first-color: hsl(var(--hue), 69%, 61%);
    /* Blue accent */
    --first-color-alt: hsl(var(--hue), 57%, 53%);
    --title-color: hsl(var(--hue), 8%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --text-color-light: hsl(var(--hue), 8%, 65%);
    --body-color: hsl(var(--hue), 60%, 99%);
    --container-color: #fff;
    --white: #fff;
    --black: #000;

    /* Font and Typography */
    --body-font: 'Outfit', sans-serif;
    --title-font: 'Playfair Display', serif;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.813rem;

    /* Font Weights */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Margins */
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Responsive Typography */
@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 4rem;
        --h1-font-size: 3rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.125rem;
        --small-font-size: 0.875rem;
    }
}

/* Base */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 0 var(--header-height) 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

/* Layout */
.container {
    max-width: 1120px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--title-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--first-color);
}

.btn-outline {
    border: 1px solid var(--title-color);
    background: transparent;
    color: var(--title-color);
}

.btn-outline:hover {
    background: var(--title-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--title-color);
}

.btn-light:hover {
    background-color: var(--body-color);
}

.btn-text {
    color: var(--title-color);
    font-weight: var(--font-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--first-color);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: var(--small-font-size);
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.header-container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    color: var(--title-color);
}

.logo span {
    color: var(--first-color);
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--title-color);
    display: none;
}

/* Navigation */
@media screen and (max-width: 767px) {
    .nav {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background-color: var(--container-color);
        padding: 2rem 1.5rem 4rem;
        box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
        border-radius: 1.5rem 1.5rem 0 0;
        transition: 0.3s;
    }

    .nav-toggle {
        display: block;
    }
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--first-color);
}

.active-link {
    color: var(--first-color);
}

.nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
}

    {
        {
        ...
    }
}

.show-menu {
    bottom: 0;
}

/* Sections */
section {
    padding: 4.5rem 0 2rem;
}

.section-title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
    text-align: center;
}

.section-subtitle {
    display: block;
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--first-color);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-0-5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-text {
    text-align: center;
    margin-bottom: var(--mb-3);
    color: var(--text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Home */
.home {
    padding-top: 6rem;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding-bottom: 8rem;
}

.home-container {
    display: grid;
    gap: 3rem;
}

.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-title {
    font-size: var(--big-font-size);
    line-height: 1.2;
    margin-bottom: var(--mb-1);
}

.text-accent {
    color: var(--first-color);
}

.home-description {
    margin-bottom: var(--mb-2-5);
    max-width: 450px;
}

.home-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.home-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background-color: #ddd;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: #fff;
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.05);
}

/* Shape Divider */
.custom-shape-divider-bottom-1683214567 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1683214567 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-1683214567 .shape-fill {
    fill: #FFFFFF;
}

/* About */
.about-container {
    display: grid;
    gap: 3rem;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f1f1f1;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: #ccc;
}

.about-description {
    margin-bottom: var(--mb-2);
}

.about-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-detail-box i {
    font-size: 1.5rem;
    color: var(--first-color);
    margin-bottom: var(--mb-0-5);
}

.about-detail-box h3 {
    font-size: var(--normal-font-size);
    margin-bottom: 0.25rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--container-color);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-img-box {
    height: 200px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-placeholder {
    font-size: 2.5rem;
    color: #dde0e3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.product-link {
    font-size: var(--small-font-size);
    color: var(--first-color);
    font-weight: var(--font-medium);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-link:hover {
    gap: 0.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--first-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--first-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
}

/* CTA */
.cta {
    background-color: var(--title-color);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    margin-bottom: 2rem;
    color: var(--text-color-light);
}

/* Contact */
.contact-container {
    display: grid;
    gap: 3rem;
}

.contact-info {
    text-align: center;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--first-color);
}

.contact-item h3 {
    font-size: var(--normal-font-size);
    margin-bottom: 0.25rem;
}

.contact-form {
    background-color: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-medium);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    outline: none;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--first-color);
}

/* Footer */
.footer {
    background-color: var(--title-color);
    color: var(--text-color-light);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-logo {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo span {
    color: var(--first-color);
}

.footer-text {
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--white);
    font-size: 1.25rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--first-color);
}

.footer-title {
    color: var(--white);
    font-size: var(--h3-font-size);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--first-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    outline: none;
}

.footer-btn {
    padding: 0.75rem;
    background-color: var(--first-color);
    color: var(--white);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}

.footer-btn:hover {
    background-color: var(--first-color-alt);
}

.footer-copy {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    text-align: center;
    font-size: var(--small-font-size);
}

/* Media Queries */
@media screen and (min-width: 576px) {
    .home-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle,
    .nav-close {
        display: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 2.5rem;
    }

    .home-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .home {
        padding-top: 8rem;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .home-img-placeholder {
        width: 100%;
        max-width: 550px;
        height: 450px;
    }
}