@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Raleway', sans-serif;
  background: #FFF4C9;
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, .container, .main-content, .carousel, .carousel-inner, .carousel-item {
  background: #FFF4C9 !important;
}

hr {
  border: none;
  height: 4px;
  background: linear-gradient(90deg, #FFB22C, #F79C3A);
  margin: 30px 0;
}

.Navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    width: 100%;
    margin: 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.navBar {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between links and icon */
}

/* Optional styling for links */
.navBar a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

#logout{
  background-color: #FFB22C;
  padding: 1rem;
  border-radius: 5rem;
  font-weight: bold;
}

#logout:hover{
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.SignUp {
  background: #FFB22C;
  border-radius: 5rem;
  padding: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
  
}

.SignUp:hover {
  cursor: pointer;
  transform: scale(1.1);
  color: white;
}

#homebtn {
  color: initial; /* or a specific color like black */
  transform: scale(1);
  transition: color 0.3s ease, transform 0.3s ease;
}

#homebtn:hover {
  color: #FFB22C;
  transform: scale(1.1);
  cursor: pointer;
}

.logo {
  background: white;
  border-radius: 50%;
  padding: 10px;
}

.dashboard {
  left: 0;              /* Move to left side */
  right: auto;          /* Cancel right positioning */
  border-left: none;    /* Remove right-side border if any */
  border-right: 1px solid #ddd;  /* Optional: add a right border */
  width: 18rem;
  height: 100vh;
  background: #FFB22C;
  color: white;
  font-weight: bold;
  float: left;
  position: relative;
}

.dashboard-header {
  margin-top: 60px; 
}

.dashboard-header h2{
  font-weight: bold;
  margin-left: 10px;
}

.dashboard-menu {
  list-style: none;       /* Remove bullet points */
  padding: 0;
  margin: 0;
  padding: 20px;
}

.dashboard-menu li {
  margin-bottom: 10px;
}

.dashboard-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;               /* Space between icon and text */
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.dashboard-menu li a:hover {
  background-color: #FFF4C9;
  font-weight: 500;
}

.search-filter {
  margin-top: 0px;
}

.OrderBtn{
  background: #FFB22C;
  border-radius: 5rem;
  padding: 1rem;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  /* Smooth transition on these properties */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.OrderBtn:hover {
  box-shadow: 1px 10px 15px -5px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
  color: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.IntroSection{
  background: #F4D793;
  width: 100%;
  padding: 80px;
}

.Intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-left: 70px;
  margin-right: 200px;
  max-width: 100%;
}

.IntroText {
  max-width: 600px;
  text-align: left;
}


.IntroText p {
  font-style: italic;
}

.IntroText h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.orderformbtn {
    background: #FFB22C;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  cursor: pointer;
}

.orderformbtn:hover {
    background: #e6a31a;
    color: white;
    transform: scale(1.1);
    transition: background 0.3s ease, transform 0.3s ease;
}


.IntroImage img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
 
.Packages h2 {
    font-size: 2rem;
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
}
.PackageSection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.PackageSection h2{
    font-size: 2rem;
    margin-bottom: 20px;
}

.carousel-item {
  width: 30rem;
  height: 40rem;
  overflow: hidden;
  margin: 0 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.carousel-item img {
  width: 100%;
  max-width: 30rem;
  height: 40rem;
  object-fit: cover;
  margin: 0 1rem;
  border-radius: 10px;
  display: block;
  transition: all 0.3s ease;
}

.carousel {
  width: 100%;
  max-width: 80rem;
  height: auto;  /* let height adjust */
  margin: 0 auto;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}


.carousel-item .d-flex {
  justify-content: center;
  align-items: center;
}

/* Move arrows outside carousel */
.carousel-control-prev,
.carousel-control-next {
  margin-top: 20rem;
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  padding: 20rem;
  filter: invert(1); /* Inverts white to black */
  transition: all 0.3s ease;
}

@media (min-width: 900px) {
  .carousel-control-prev {
    left: -2.5rem;   /* Only a little outside */
  }
  .carousel-control-next {
    right: -2.5rem;
  }
}

.AboutUsWrapper {
  position: relative;
  width: 100vw; /* full viewport width */
  padding: 5rem 0;
  overflow: hidden;
  height: 70vh; /* full viewport height */
}

.AboutUsBackground {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../KikayImages/kikaystock4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
  z-index: 0;
}

.AboutUs {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 2rem;
  margin-top: 50px;
}


/* Your existing styles for h2 and p can stay or modify colors */
.AboutUs h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.AboutUs p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #eee; /* lighter for visibility */
  font-style: italic;
}

/*DASHBOARD----------------------------------------*/

/* MENU PAGE ------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.MenuSection {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #F4D793; /* Must have a background */
  padding: 2rem;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.MenuSection a {
  float: left;
  color: #000000;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
}

.MenuSection a:hover {
  color: rgb(203, 92, 44);
}

.Menu {
  text-align: center;
  padding: 20px;
  margin: 20px;
  margin-left: 20px;
}

.MenuItems {
  padding: 0 40px; /* Adds space on left and right */
}

.MenuItems h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  margin-left: 5rem;
  margin: 2rem;
}

.FoodContainer {
  display: flex;
  gap: 40px; /* Space between menu items */
  justify-content: center;
}

.FoodBox {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #F4D793;
  border-radius: 10px;
  background: #F4D793;
  flex: 1;
  max-width: 40rem;
  height: 15rem;
  max-height: 100%;
}


.FoodImage {
  flex: 1;
  margin-right: 20px;
}

.FoodMenuDesc {
  flex: 2;
}

/* #go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  background-color: #f4d793;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
} */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}

/*OrderForm PAGE---------------------*/

#orderForm-container h2 {
  display: flex;
  margin-left: 60px;
  padding: 50px;
}

#formDetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20rem;
  max-width: 100rem;
  max-height: 100rem;
}
   /* Additional styles for order form layout */
        #orderForm-container {
            max-width: 600px;
            margin: 20px auto;
            background: white;
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            font-family: 'Raleway', sans-serif;
        }
        #orderForm-container label {
            display: block;
            margin-top: 15px;
            font-weight: 600;
        }
        #orderForm-container input[type="text"],
        #orderForm-container input[type="tel"],
        #orderForm-container input[type="url"] {
            width: 100%;
            padding: 8px 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        #orderForm-container p {
            margin-top: 20px;
            font-weight: 600;
        }
        #orderForm-container .option-group {
            margin-top: 10px;
        }
        #orderForm-container .option-group label {
            font-weight: normal;
            margin-right: 15px;
            cursor: pointer;
        }
        #orderForm-container .option-group input[type="radio"] {
            margin-right: 5px;
            vertical-align: middle;
            cursor: pointer;
        }
        button[type="submit"] {
            margin-top: 25px;
            background-color: #FFB22C;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        button[type="submit"]:hover {
            background-color: #e6a31a;
        }

h3 {
  padding: 10px;
  margin-top: 20px;
}

/*manageitem PAGE--------------------------------*/
.dashboard {
  width: 20%;
  padding: 20px;
  background-color: #ffe8b4;
  position: static;
  height: auto;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.dashboard-header h2 {
  font-size: 1.5rem;
  color: #3e2e15;
  font-weight: bold;
  margin-bottom: 20px;
}

.dashboard-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-menu li {
  margin-bottom: 15px;
}

.dashboard-menu a {
  text-decoration: none;
  color: #3e2e15;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-menu a:hover {
  color: #a65b00;
}

/* Manage Items Section */
.manageitems {
  max-width: 900px;
  margin-left: 260px; /* Shift right to accommodate sidebar */
  margin-top: 120px;  /* Adjust as needed to push down from navbar */
  padding: 50px;
  background-color: #fffefc; /* optional background to visualize it */
}

/* Header styling inside the manage-items section */
.manage-items h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #3e2e15;
  font-size: 2rem;
}

/* Modal Styling */
.modal-content {
  border-radius: 15px;
  background-color: #fffefc;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background-color: #f4d793;
  color: #3e2e15;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-title {
  font-weight: 700;
  font-size: 1.4rem;
}

.modal-body label {
  font-weight: 600;
  color: #3e2e15;
  margin-bottom: 5px;
}

.modal-body input,
.modal-body textarea,
.modal-body select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 15px;
}

.modal-body .form-check-label {
  margin-left: 5px;
}

.btn-success {
  background-color: #f4a261;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.btn-success:hover {
  background-color: #e07a3f;
}

/*order status ---------------------------*/
.OrderStatusSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
}

.OrderStatusSection h2{
    font-size: 2rem;
    padding: 20px;
    color: #3e2e15;
    font-weight: 700;
}
.OrderStatusSection table {
    width: 100%;
    table-layout: fixed; /* Ensures equal column widths */
    border-collapse: collapse;
}

.OrderStatusSection th{
  padding: 12px;
  text-align: center;
  color: white;
  background-color: #FFB22C;
  width: 20%; /* or auto-distribute based on # of columns */
}


/*Footer for all webpages --------------------------------------------*/
footer {
    display: flex;
    text-align: center;
    align-items: center;
    padding: 20px;
    background: white;
    border-top: 1px solid #FFF4C9;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    justify-content: space-evenly;
}

/* tables */
.content-container {
  display: flex;
  flex: 1;
  min-height: 300vh;
}

.content-container h1{
  font-weight: 700;
}

.main-content {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    float: left;
    width: 80%;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

table th {
    background-color: #FFB22C;
    color: white;
    padding: 15px;
    text-align: center; /* Center header text */
}

table td { 
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: center;  /* Center cell text */
}

table tr:hover {
    background-color: #f5f5f5;
}

table th, table td {
  vertical-align: middle;
}
