/*===== VARIABLES CSS =====*/

:root {
    --header-height: 3rem;
    --font-semi: 600;
    --hue-color: 224;
    --first-color: hsl(var(--hue-color), 89%, 60%);
    --second-color: hsl(var(--hue-color), 56%, 12%);
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h2-font-size: 1.25rem;
    --normal-font-size: .938rem;
    --smaller-font-size: .75rem;
    --mb-2: 1rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    --z-back: -10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3.5rem;
        --h2-font-size: 2rem;
        --normal-font-size: 1rem;
        --smaller-font-size: .875rem;
    }
}


/*===== BASE =====*/

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--second-color);
}

h1,
h2,
p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 800px;
    height: 500px;
    ;
    display: flex;
}


/*===== CLASS CSS ===== */

.section-title {
    position: relative;
    font-size: var(--h2-font-size);
    color: var(--second-color);
    margin-top: var(--mb-2);
    margin-bottom: var(--mb-4);
    text-align: center;
}

.section-title::after {
    position: absolute;
    content: '';
    width: 64px;
    height: 0.18rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 2rem;
    background-color: hwb(190 32% 50%);
}

.section {
    padding-top: 3rem;
    padding-bottom: 2rem;
}


/*===== LAYOUT =====*/

.bd-grid {
    max-width: 1024px;
    display: grid;
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}

/* Header Fixing */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: lab(13.8% 18.42 -36.44);
    z-index: 999;
    box-shadow: 0 2px 5px rgba(28, 62, 185, 0.1);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
}

/* Logo Image Styling */
.logo-img {
    height: 90px;
    width: auto;
    margin-right: 20px;
}

/* Logo Text */
.nav__logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: solid;
    color: hsl(211, 63%, 37%);
}

.logo-text {
    color: hwb(195 85% 10%);
    /* Replace with your desired color */
}


/*===== NAV =====*/

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-semi);
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: 100%;
        padding: 2rem;
        background-color: var(--second-color);
        transition: .5s;
    }
}

.nav__item {
    margin-bottom: var(--mb-4);


}

.nav__link {
    position: relative;
    color: #ff90bc;
}

.nav__link:hover {
    position: relative;

}

.nav__link:hover::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0.18rem;
    left: 0;
    top: 2rem;
    background-color: #E3B6E5;
}

.nav__logo {
    color: var(--second-color);
}

.nav__toggle {
    color: var(--second-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.active::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0.18rem;
    left: 0;
    top: 2rem;
    background-color: #E3B6E5;
}


/*=== Show menu ===*/

.show {
    right: 0;
}


/*===== HOME =====*/

/* Home Section */
.home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    row-gap: 5rem;
    padding: 4rem 2rem;
    position: relative;

}
/* Data (Text) Block */
.home__data {
    align-self: center;
}

.home__title {
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-5);
    line-height: 1.3;
}

.home__title-color {
    color: #ff90bc;
}

/* Social Icons */
.home__social {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: var(--mb-2);
}

.home__social-icon {
    font-size: 2rem;
    color: var(--second-color);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.home__social-icon:hover {
    color: #ff90bc;
    transform: scale(1.1);
}

/* Image Container */
.home__img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

/* Optional SVG or Blob Background */
.home__blob {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: auto;
    fill: hsl(228, 50%, 45%);
}

/* Actual Image */
.home__blob-img {
    width: 100%;
    max-width: 360px;
    object-fit: cover;
    border-radius: 1rem;
}


.button {
    display: inline-block;
    background-color: #D2B6E5;
    color: var(--second-color);
    padding: .75rem 2.5rem;
    font-weight: var(--font-semi);
    border-radius: .5rem;
    transition: .3s;
}

.button:hover {
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.15);
}


/* ===== ABOUT =====*/

.about__container {
    row-gap: 3rem;
    text-align: center;
}

.about__subtitle {
    margin-bottom: var(--mb-4);
}

.about__img {
    justify-self: center;
}

.about__img img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 500px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.services__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    position: relative;
    align-items: center;
}

.services__text {
    flex: 1 1 60%;
}
/* ===== WORK =====*/

.Products__container {
    row-gap: 1rem;
}

.Products__img {
    box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
    border-radius: .3rem;
    overflow: hidden;

}

.Products__img img {
    transition: 1s;
}

.Products__img img:hover {
    transform: scale(1.1);
}

.Products__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjusts based on screen */
    gap: 1rem;
    /* Space between images */
    align-items: center;
    justify-items: center;
}

.Products__container a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery {
    padding: 4rem 2rem;
    background-color: #d863cd;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* ===== CONTACT =====*/

/* Contact Section Styles */
.contact-section {
    background-color: hsl(207, 56%, 80%);
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

.contact-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-input,
.contact-textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.contact-button {
    padding: 14px;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #0056b3;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}



/* ===== FOOTER =====*/

.footer {
    background-color: #e98dc6;
    color: var(--second-color);
    text-align: center;
    font-weight: var(--font-semi);
    padding: 2rem 0;
}

.footer__title {
    font-size: 2rem;
    margin-bottom: var(--mb-4);
}

.footer__social {
    margin-bottom: var(--mb-4);
}

.footer__icon {
    font-size: 1.5rem;
    color: var(--second-color);
    margin: 0 var(--mb-2);
}

.footer__copy {
    font-size: var(--smaller-font-size);
}


/* ===== MEDIA QUERIES=====*/

@media screen and (max-width: 320px) {
    .home {
        row-gap: 2rem;
    }

    .home__img {
        width: 200px;
    }
}

@media screen and (min-width: 576px) {
    .home {
        padding: 4rem 0 2rem;

        .home__social {
            flex-direction: row;
            align-items: flex-start;
        }

        .home__social-icon {
            margin-bottom: 0.5rem;
        }
    }

    .home__img {
        width: 300px;
        bottom: 25%;
    }

    .about__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        text-align: initial;
    }

    .services__container {
        grid-template-columns: .7fr;
        justify-content: center;
        column-gap: 1rem;
    }

    .Products__container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        padding-top: 2rem;
    }

    .contact__form {
        width: 360px;
        padding-top: 2rem;
    }

    .contact__container {
        justify-items: center;
    }
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #d1e5ff;
}

::-webkit-scrollbar-thumb {
    background-color: #D2B6E5;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    .section {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .section-title {
        margin-bottom: var(--mb-6);
    }

    .section-title::after {
        width: 80px;
        top: 3rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__list {
        display: flex;
        padding-top: 0;
    }

    .nav__item {
        margin-left: var(--mb-6);
        margin-bottom: 0;
    }

    .nav__toggle {
        display: none;
    }

    .nav__link {
        color: var(--second-color);
    }

    .home {
        padding: 8rem 0 2rem;
    }

    .home__img {
        width: 400px;
        bottom: 10%;
    }

    .about__container {
        padding-top: 2rem;
    }

    .about__img img {
        width: 300px;
    }

    .services__container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        align-items: center;
        text-align: initial;
    }

    .Products__container {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2rem;
    }
}

@media screen and (min-width: 992px) {
    .bd-grid {
        margin-left: auto;
        margin-right: auto;
    }

    .home {
        padding: 10rem 0 2rem;
    }

    .home__img {
        width: 450px;
    }
}