*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    margin: 0;
    padding: 0;
}

::before,
::after {
    --tw-content: '';
}

html {
    line-height: 1.5; 
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
        tab-size: 4; 
    font-family: Inter, sans-serif;
}

body {
    font-family: sans-serif;
    background: #b4bda7;
    margin: 0;
    padding: 0;  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
}

/*  HEADER */
header {
    background-color: #8EA08D;
    height: 60px;
    width: 100%;
    padding: 0 20px;
}

.header-container {
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1920px;
}

.header-logo {
    height: 100%;
    width: fit-content;
    padding: 0.3rem;
}

.header-logo img{
    height: 100%;
    width: auto;
}

.header-nav {
    display: none;
}

.mobile-nav {
    display: none;
    position: absolute;
    height: fit-content;
    width: fit-content;
    padding: 20px;
    top: 60px;
    right: 0px;
    background-color: #f2f2f2;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 100;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    list-style: none;
}

.mobile-nav-list li a, .mobile-nav-list li p{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.work-list li a{
    text-decoration: none;
    color: black;
    font-weight: 400;
}

.work-items {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
    padding-left: 20px;
    z-index: 100;
}

.hamburger {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

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

.header-nav ul li {
    position: relative;
    display: inline-block;
}

.header-nav ul li a {
    text-decoration: none;
    display: block;
}

/* Dropdown menu */
.header-nav .dropdown {
    position: relative;
}

.header-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f5f5f5;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 0.5em 0;
    z-index: 1000;
}

.dropdown-menu {
    padding: 1.5em;
}

.header-nav {
    height: 100%;
}

.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.nav-list li {
    height: 100%;
    text-align: center;
    display: flex;
    align-content: center;
}

.nav-list li a , .nav-list li p{
    color: black;
    font-weight: bold;
    font-size: 0.825rem;
    text-wrap: nowrap;
}

.header-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.header-nav .dropdown-menu li {
  display: block;
  text-align: left;
}

.header-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.header-nav .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
}

.header-nav .dropdown-menu li a:hover {
    background: #E8ECE1;
}

@media (max-width: 425px) {
    header {
        height: 50px;
        padding: 0 10px;
    }

    .nav-list {
        gap: 10px;
    }

    .nav-list li a , .nav-list li p{
        font-size: 0.8rem;
        text-wrap: nowrap;
    }

    .mobile-nav {
        top: 50px;
        right: 0px;
    }
}

@media (min-width: 768px) {
    header {
        height: 80px;
        padding: 0 20px;
    } 

    .header-logo {
        padding: 0.7rem;
    }

    .header-nav {
        display: block;
    }

    .dropdown-menu {
        top: 5rem;
    }

    .hamburger {
    display: none; 
    }

    .mobile-nav {
        display: none;
    }
    .mobile-nav.active {
    display: none;
    }
    .nav-list {
        gap: 1.5rem;
    }
    .nav-list li a , .nav-list li p{
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    header {
        height: 100px;
        padding: 0 30px;
    }

    .dropdown-menu {
        top: 6.3rem;
    }

    .nav-list {
        gap: 2rem;
    }

    .nav-list li a , .nav-list li p{
        font-size: 1.3rem;
    }
}

@media (min-width: 1280px) {
    header {
        height: 120px;
        padding: 0 50px;
    }
    .dropdown-menu {
        top: 7.5rem;
    }
    .nav-list {
        gap: 2.5rem;
    }

    .nav-list li a , .nav-list li p{
        font-size: 1.8rem;
    }
}

/* FOOTER */
footer {
    background-color: #8EA08D;
    width: 100%;
    height: fit-content;
}

.footer-container {
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-content {
    width: fit-content;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    font-size: 1rem;
    font-weight: 600;
    color: black;
    width: fit-content;
    font-weight: bold;
}

.social-media {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.social-button {
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.order-button {
    width: fit-content;
    height: fit-content;
    background-color: none;
}
.order-button a:hover {
    background-color: #9caf9b;
}
.order-button a {
    background: none;
    text-decoration: none;
    border: none;
    color: black;
    padding: 0.9rem 2rem;
    border: black 2px solid;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.footer-border {
    border-bottom: black 2px solid;
    width: 100%;
}

.social-links {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-link {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: black;
}

@media (max-width: 425px) {
    .footer-container {
        gap: 2rem;
        padding: 1rem 1rem;
    }
    .footer-logo {
        height: 50px;
        width: auto;
    }

    .footer-logo img {
        height: 100%;
        width: auto;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .social-link  {
        font-size: 0.85rem;
    }
    
    .order-button a {
        font-size: 0.85rem;
        padding: 0.75rem 2rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        align-items: flex-end;
    }

    .footer-logo {
        height: 60px;
        width: auto;
    }

    .footer-logo img {
        height: 100%;
        width: auto;
    }
    .footer-contact p {
        font-size: 1.2rem;
    }

    .social-button {
        margin-bottom: 1.5rem;
    }
    
    .order-button a {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
    .footer-border {
        border-bottom: black 2px solid;
        width: 100%;
    }

    .social-links {
        gap: 2.5rem;
    }
    .social-link  {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .footer-logo {
        height: 70px;
        width: auto;
    }

    .footer-logo img {
        height: 100%;
        width: auto;
    }

    .social-links {
        gap: 3.5rem;
    }

    .social-link {
        text-decoration: none;
        color: black;
        font-size: 1.3rem;
    }
    .social-button {
        margin-bottom: 2rem;
    }
    .order-button a {
        font-size: 1rem;
        padding: 1.4rem 3rem;
    }
}
@media (min-width: 1280px) {
    .footer-logo {
        height: 80px;
        width: auto;
    }

    .footer-logo img {
        height: 100%;
        width: auto;
    }

    .social-links {
        gap: 4.5rem;
    }
    .social-link  {
        font-size: 1.4rem;
    }
}


/* INDEX MAIN */
main {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    gap: 2rem;
}

.hero-image-container {
    width: 100%;
    height: auto;
    max-height: 1920px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-image-container {
    position: relative; /* allows text to be positioned on top */
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-text {
    display: none;
    position: absolute;
    bottom: 30px;       
    right: 100px;       
    color: #E8ECE1;
    padding: 20px;
    max-width: fit-content;  
    text-align: center; 
}

.about-image-text h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    width: 100%;
}

.about-image-text p {
    margin: 0;
    font-size: 2rem;
    line-height: 2.4rem;
    text-align: center;
}


.about-heading {
    display: block;
    text-align: center;
}

.about-heading-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.about-heading h1 {
    font-size: 1.5rem;
    width: fit-content;
}

.about-heading p {
    font-size: 1.2rem;
    width: 100%;
    max-width: 35rem;
    padding:  0 2rem;
    text-align: center;
}


.info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
    margin: 2rem 0;
    width: 100%;
    gap: 3rem;
}

.home-map {
    width: 100%;
    margin-top: 1rem;
}

.info-data {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.info-data-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;     
}

.info-data p {
    text-wrap: nowrap;
}

.days-time {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;      
    gap: 1rem;   
    width: 100%;
    max-width: 30rem; 
}

.days-time .info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 48%;
    font-weight: normal;
}
.info-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
}
.info-text p {
    width: fit-content;
    text-align: right;
    font-size: 1.2rem;
    text-decoration: none;
}
.contact-auto a {
    text-decoration: none;
    color: black;
}
.info-time p{
    text-align: right;
    width: 100%;
}

@media (max-width: 768px) {
    .info-data-items {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 425px) {
    main {
        margin: 0;
    }
    .about-heading h4 {
        font-size: 1.3rem;
    }

    .about-heading p {
        font-size: 1rem;
        width: 100%;
        max-width: 20rem;
        padding:  0 1rem;
    }
    .days-time {
        width: fit-content;
    }

    .info-data {
        gap: 1rem;
        width: 100%;
    }
    .info-data-items {
        width: 100%;
    }

    .info-data h3 {
        font-size: 0.95rem;
        width: fit-content;

    }
    .info-text p {
        font-size: 1rem;
        text-decoration: none;
    }
}

@media (min-width: 768px) {
    .info-container {
        flex-direction: row;
        padding: 2rem;
        gap: 3rem;
    }

    .info-data h3 {
        font-size: 1.5rem;
    }
    .info-text p {
        font-size: 1.3rem;
    }

    .about-image-text {
        display: block;
        position: absolute;
        bottom: 8px;       
        right: 10px;   
        padding: 0;       
    }
    .about-image-text h1 {
        font-size: 1.2rem;
        width: 100%;
    }

    .about-image-text p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.2rem;
        text-align: center;
    }

    .about-heading {
        display: none;
    }
}

@media (min-width: 950px) {
    .about-image-text {
        position: absolute;
        bottom: 5px;       
        right: 40px;    
        padding: 5px;   
    }
    .about-image-text h1 {
        font-size: 1.4rem;
        width: 100%;
    }

    .about-image-text p {
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.3rem;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    
    .info-data h3 {
        font-size: 1.7rem;
    }

    .info-text p {
        font-size: 1.5rem;
    }

}

@media (min-width: 1100px) {
    .about-image-text {
        position: absolute;
        bottom: 10px;       
        right: 60px;   
        padding: 10px;       
    }
    .about-image-text h1 {
        font-size: 1.6rem;
        width: 100%;
    }

    .about-image-text p {
        margin: 0;
        font-size: 1.3rem;
        line-height: 1.5rem;
        text-align: center;
    }
}
@media (min-width: 1300px) {
    .about-image-text {
        position: absolute;
        bottom: 10px;       
        right: 60px; 
        padding: 15px;       
    }
    .about-image-text h1 {
        font-size: 1.8rem;
        width: 100%;
    }

    .about-image-text p {
        margin: 0;
        font-size: 1.5rem;
        line-height: 1.7rem;
        text-align: center;
    }
}
@media (min-width: 1500px) {
    .about-image-text {
        position: absolute;
        bottom: 20px;       
        right: 80px;       
        padding: 20px;       
    }
    .about-image-text h1 {
        margin: 0 0 10px 0;
        font-size: 2rem;
        width: 100%;
    }

    .about-image-text p {
        margin: 0;
        font-size: 1.7rem;
        line-height: 2rem;
        text-align: center;
    }

    .info-data h3 {
        font-size: 2rem;
    }
    .info-text p {
        font-size: 1.7rem;
    }
}
@media (min-width: 1756px) {
    .about-image-text {
        position: absolute;
        bottom: 30px;       
        right: 100px;       
        color: #E8ECE1;
        padding: 20px;
        max-width: fit-content;  
        text-align: center; 
    }
    .about-image-text h1 {
        margin: 0 0 10px 0;
        font-size: 2.5rem;
        width: 100%;
    }

    .about-image-text p {
        margin: 0;
        font-size: 2rem;
        line-height: 2.4rem;
        text-align: center;
    }
    .info-data h3 {
        font-size: 2.5rem;
    }

    .info-text p {
        font-size: 2rem;
    }
}

/* MEIST MAIN */
.about-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 3rem 1rem;
    gap: 2rem;
    width: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;    
    width: 100%;
    justify-content: center;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 30rem;
    height: auto;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.about-text p{
    font-size: 1rem;
    padding: 0 1rem;
    text-align: justify;
    width: 100%;
    max-width: 40rem;
}
@media (max-width: 425px) {
.about-text {
    text-align: center;
    gap: 1rem;
}
.about-text h4{
    font-size: 1rem;
}
.about-text p{
    font-size: 0.85rem;
}
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        padding: 5rem 2rem;
    }

    .about-content {
        width: 50%;      
        box-sizing: border-box;
    }

    .about-image {
        width: 100%;
        max-width: 40rem;
        min-width: 22rem;
    }

    .about-text h4{
        font-size: 1.5rem;
    }

    .about-text p{
        font-size: 1.1rem;
    }

}

@media (min-width: 1024px) {
    .about-container {
        padding: 10rem 2rem;
    }
    .about-text h4{
        font-size: 1.85rem;
    }
    .about-text p{
        font-size: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .about-text h4{
        font-size: 2rem;
    }
    .about-text p{
        font-size: 1.75rem;
    }
}
/* TEHTUD TÖÖD MAIN */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1920px;
    margin: 4rem 0;
    padding: 0 1.5rem;
}

.gallery-container h1 {
    text-align: center;
    font-size: 1.5rem;
}

.gallery-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
}

.gallery-list {
    display: none;
    flex-direction: column;
    width: 12rem;
    padding-top: 4rem;
}
.gallery-items-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-items-list li {
    list-style: none;
}

.gallery-items-list li a{
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 500;
    text-wrap: nowrap;
}

.gallery-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.gallery-items h4 {
    font-size: 1.2rem;
}

.slideshow-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slideshow-image {
    width: 80%;
    height: auto;
}

@media (max-width: 425px) {
    .gallery-container h1 {
        font-size: 1.3rem;
    }
    .gallery-items {
        padding: 0;
    }
    .gallery-items h4 {
        font-size: 1.1rem;
    }
    .slideshow-container {
        width: 100%;
    }
    .slideshow-image {
        width: 85%;
        height: auto;
    }

}

@media (min-width: 768px) {
    .gallery-container h1 {
        font-size: 1.825rem;
    }
    .gallery-items h4 {
        font-size: 1.4rem;
    }
    .gallery-list {
        display: block;
    }
    .gallery-items-list li a {
        font-size: 1.4rem;
    } 
    .slideshow-image {
        width: 80%;
        height: auto;
    }   
}

@media (min-width: 1024px) {
    .gallery-container h1 {
        font-size: 2rem;
    }
    .gallery-items h4 {
        font-size: 1.5rem;
    }
    .gallery-items-list li a {
        font-size: 1.5rem;
    }
    .gallery-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding-right: 12rem;
    }

}

@media (min-width: 1280px) {

}
/* KONTAKT MAIN */
.contact-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4rem 1rem;
    gap: 2rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 2rem;
}
.contact-map {
    align-items: center;
}

.contact-map h4, .contact-map p{
    width: 100%;
    max-width: 27rem;      
    text-align: left;
}

.contact-content-text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-wrap: nowrap;
}

.contact-text h4 {
    font-size: 1.3rem;

}

.contact-text p {
    font-size: 1.1rem;
}

.home-map {
    max-width: 27rem;
}

@media (max-width: 425px) {
    .about-text {
        text-align: center;
        gap: 1rem;
    }
    .about-text h4{
        font-size: 1rem;
    }
    .about-text p{
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        padding: 10rem 2rem;
    }
    .contact-content {
        justify-content: flex-start;
        padding: 0 1rem;
        gap: 4rem;
    }

    .contact-map {
        align-items: flex-start;
        gap: 0;
    }

    .contact-content-text {
        display: flex;
        flex-direction: column;
    }
 
    .contact-text h4{
        font-size: 1.5rem;
    }
    .contact-text p{
        font-size: 1.2rem;
    }
    .home-map {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .contact-content {
        padding: 0 2rem;
    }
    .contact-text h4{
        font-size: 1.85rem;
    }
    .contact-text p{
        font-size: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .contact-content {
        padding: 0 5rem;
        gap: 6rem;
    }
    .contact-map {
        gap: 0;
    }

    .home-map iframe{
        max-width: 35rem;
    }    
    .contact-text h4{
        font-size: 2rem;
    }
    .contact-text p{
        font-size: 1.75rem;
    }
}
/* ESITA TELLIMUS MAIN */
.form-container {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 4rem 0;
}

.order-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    width: 100%;
    max-width: 1920px;
    height: fit-content;
    padding:  0 1.5rem;
}

.order-form {
    display: flex;
    flex-direction: row;        
    flex-wrap: wrap; 
    justify-content: center;
    gap: 5rem;
}

.form-fields label {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-image {
    border: 1px solid hsl(0, 0%, 80%);
    background-color: #fbf9f6;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: 25rem; 
}

#image-preview-wrapper {
    display: flex;
    position: relative;
    height: 90%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

#remove-image {
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 6px;
}

#image-preview {
    max-height: 100%;
}

.form-fields input {
    background-color: #fbf9f6;
    height: 3rem;
}

.order-form input,
.order-form textarea {
    font-size: 20px;
}

.form-fields textarea {
    background-color: #fbf9f6;
    height: 6rem;
}

.form-image input[type="file"] {
    width: auto;      
    height: auto;     
    max-width: 90%;   
}

.image-input-wrapper {
    width: fit-content;
    font-size: 1.2rem;
}

#image {
    width: 200px;
    font-size: 1.2rem;
}

.form-content {
    display: flex;
}

.form-fields {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 32rem;
}

.form-fields label {
    margin-bottom: 0.825rem;
    font-size: 1.3rem;
}

.form-fields input,
.form-fields textarea,
.form-fields button {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-fields button {
    background-color: #8EA18D;
    color: black;
    border: none;
    cursor: pointer;
    width: 20rem;
    height: 4rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.form-fields button:hover {
    background-color: #8B9E89;
}

@media (max-width: 768px) {
    .form-fields {
        flex-direction: column;
        height: fit-content;
    }

    .form-fields button {
        width: 100%;
    }

    #image {
        width: 180px;
    }

}

@media (max-width: 425px) {
    
    .form-content {
        display: flex;
        flex-direction: column;
    }

    .form-fields {
        justify-content: center;
        align-items: center;
    }

    .form-fields label {
        width: 100%;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .form-fields input {
        height: 2.5rem;
    }

    .image-input-wrapper {
        font-size: 1rem;
    }

    #image {
        font-size: 1rem;
        width: 160px;
    }

    .form-image {
        height: 20rem;
    }

    .form-fields button {
        width: 60%;
        height: 3rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .form-fields input {
        background-color: #fbf9f6;
        height: 3rem;
    }
    .order-form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: center;
        padding-left: 3rem;
        padding-right: 3rem;
        gap: 3rem;
        width: 100%;
        max-width: 1920px;
    }
    .form-fields input {
        background-color: #fbf9f6;
        height: 3rem;
    }
    .form-fields label {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    .form-fields button {
        width: 16rem;
        height: 3rem;
        font-size: 1.2rem;
        font-weight: bold;
    }
    .form-image {
        border: 1px solid hsl(0, 0%, 80%);
        background-color: #fbf9f6;
        border-radius: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 32rem;
        height: 30rem;
    }
    .form-content {
        flex: 1 1 40%;
        display: flex;
    }
}

@media (min-width: 1024px) {
   .order-form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 7rem;
        width: 100%;
        max-width: 1920px;
    }
    .form-fields input {
        background-color: #fbf9f6;
        height: 4rem;
    }
    .form-fields label {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    .form-image {
        border: 1px solid hsl(0, 0%, 80%);
        background-color: #fbf9f6;
        border-radius: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 32rem;
        height: 38rem;
    }
}
@media (min-width: 1280px) {
   .order-form {
        gap: 10rem;
    }
}