@charset "UTF-8";

/* Hero Image Background for Order Section */
.order-options-section {
  padding: 30px 10px;
  text-align: center;
  color: #000000;
  position: relative;
  background-blend-mode: overlay;
	
	
}

/* Content Wrapper */
.order-options-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 10px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Headings */
.order-title {
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Milk Drink';
	 margin: 0 auto;
	padding: 0px 0px 20px 0px;
	
}


.order-subtitle {
  margin: 0px 0px 10px 0px;
  color: #000000;
	font-family: 'Nunito';
	
}

/* Order Methods Grid */
.order-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
	
}

/* Individual Option Card */
.order-option {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	
}

.order-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
	background: linear-gradient(to right, #f3e3b5, #d3e9d3, #d6e4f2);
	
}

.order-option h3 {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Nunito Black';
	 margin: 0 auto;
	padding: 0px 0px 0px 0px;
	
}

.order-option:hover h3 {
	 font-size: 25px;
  color: #000000;
  
	
}

.order-option p {
  font-size: 16px;
  color: #000000;
	padding: 0px;
	margin: 0px;
	font-family: Nunito;
}


.order-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 50px 0px 30px 0px;
  height: 200px;
}

.order-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}


/* Media Queries */
@media (max-width: 1920px) {
  .order-title { font-size: 36px; 
	
}


.order-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
}
}



@media (max-width: 1200px) {
  .order-methods {
    justify-content: center;
  }
	
	
.order-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 250px;
}
}



@media (max-width: 768px) {
  .order-title { font-size: 32px; }
  .order-option {
    width: 90%;
    margin: 10px auto;
  }

	.order-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 200px;
}
}



@media (max-width: 480px) {
  .order-title { font-size: 28px; }
  .order-subtitle { font-size: 16px; }
  .order-option h3 { font-size: 20px; }
  .order-option p { font-size: 15px; }
	
	
	
.order-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 200px;
}
}



@media (max-width: 300px) {
  .order-title { font-size: 30px; }
  .order-subtitle { font-size: 18px; }
  .order-option h3 { font-size: 30px; }
  .order-option p { font-size: 18px; }


.order-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 125px;
margin: 50px auto 10px auto;
}
}


