@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playwrite+CU:wght@100..400&display=swap');

* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    transition: all 0.5s linear;
    text-transform: capitalize;
}

body {
    margin: 0;
    font-family: "lato", sans-serif;
    background: #fff;
    color: #333;
}

header {

    background: #ffeedd;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

.nav_items {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav_items li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

.nav_items li::before {
    content: '';
    width: 0;
    height: 2px;
    background: orangered;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav_items li:hover::before {
    width: 100%;
}

.btn {
    background: #f94d00;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
}

.btn:hover {
    background: #c93a00;
}
/* Auth Section Container */
#auth-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
}

/* Centered Card */
.auth-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Toggle Buttons */
.auth-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.auth-buttons button {
  padding: 0.6rem 1.8rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: background-color 0.2s;
}
.auth-buttons button:hover,
.auth-buttons button:focus {
  background-color: #555;
  outline: none;
}


.auth-form {
  display: none; 
}
.auth-form h2 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
}
.auth-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.auth-form input[type="text"]:focus,
.auth


.confirmation-message {
    margin-top: 0.75rem;
    color: green;
    font-weight: 600;
}


.main {
    text-align: center;
    padding: 50px 20px;
}

.heading_1 {
    font-size: 24px;
    color: #f94d00;
}

.heading {
    font-size: 2.3em;
    margin: 10px 0;
}

.main_btn .btn2 {
    margin-left: 15px;
    background: #444;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #fff7f0;
}

.main_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.main_text {
    flex: 1 1 400px;
}

.main_image {
    flex: 1 1 400px;
    text-align: center;
}

.main_image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #222;
    color: #fff;
    padding: 40px 20px;
}

.footer_col {
    width: 200px;
    margin: 10px;
}

.footer_col h4 {
    color: #f94d00;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li a {
    text-decoration: none;
    color: #ccc;
    display: block;
    margin: 5px 0;
}

.footer_text {
    margin: 10px 0;
    color: #ccc;
}

.footer_socials {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
}

.footer_socials li a {
    color: #fff;
    font-size: 20px;
}

.footer_bar {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

#to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    color: #f94d00;
    cursor: pointer;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fdfdfd;
    color: #333;
}

header {
    background-color: #f8e7dd;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

.nav_items {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav_items li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    width: 80%;
    /* Adjust width */
    max-width: 800px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
}

.btn {
    background: #f94d00;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.about {
    text-align: center;
    padding: 50px 20px;
}

.heading_1 {
    color: #f94d00;
    font-size: 20px;
}

.heading {
    font-size: 40px;
    margin: 10px 0;
}

.para {
    font-size: 16px;
    color: #555;
}

.about_box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.box1 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    overflow: hidden;
    text-align: left;
}

.box1 img {
    width: 100%;
    height: auto;
}

.box1_text {
    padding: 15px;
}

.footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #222;
    color: #fff;
    padding: 40px 20px;
}

.footer_col {
    width: 200px;
    margin: 10px;
}

.footer_col h4 {
    color: #f94d00;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li a {
    text-decoration: none;
    color: #ccc;
    display: block;
    margin: 5px 0;
}

.footer_socials {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
}

.footer_bar {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 10px;
}

#to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    color: #f94d00;
    cursor: pointer;
}

.menu_section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f4bd9e;
    border-radius: 8px;
}

.menu_section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.menu_section h4 {
    margin-top: 15px;
    font-size: 20px;
    color: orangered;
}

.menu_section ul {
    padding-left: 20px;
}

.menu_section ul li {
    margin: 5px 0;
    color: #444;
}

.order_form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #caaeae;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order_form input[type="text"],
.order_form input[type="email"],
.order_form input[type="tel"],
.order_form input[type="date"],
.order_form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.order_form input[type="submit"] {
    align-self: start;
}

.order_form label {
    font-weight: 500;
}

.checkbox_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.checkbox_label a {
    color: orangered;
    text-decoration: underline;
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.box {
    background: #fff;
    border-radius: 12px;
    max-width: 280px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.box h4 {
    margin: 10px 0 5px;
    color: #f94d00;
}

.box p {
    font-size: 14px;
    color: #555;
}

.confirmation-message {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
}

.contact .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.contact .box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.contact_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    gap: 30px;
}

.left_box {
    flex: 1 1 300px;
}

.right_box {
    flex: 1 1 300px;
    text-align: center;
}

.right_box img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
}