/* --- Global Settings & Variables --- */

:root {
  --gradient-start: #00bfff;
  --gradient-mid: #ff69b4;
  --gradient-end: #ff4500;
  --text-color: white;
  --text-shadow-color: rgba(0, 0, 0, 0.7);
  --bg-overlay-light: rgba(255, 255, 255, 0.1);
  --bg-overlay-medium: rgba(255, 255, 255, 0.2);
  --bg-overlay-dark: rgba(0, 0, 0, 0.3);
  --whatsapp-green: #25d366;
  --whatsapp-hover: #128c7e;
  --border-radius-standard: 15px;
  --border-radius-large: 20px;
}

/* General/ Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  color: var(--text-color);
  text-align: center;
  line-height: 1.8; /* Increased line height for better readability */
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2 {
  -webkit-text-stroke: 1px black; /* Black border around headings */
  color: white; /* White fill inside the text */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

p, span {
  color: var(--text-color);
  text-shadow: 1px 1px 3px var(--text-shadow-color); /* Stronger shadow for contrast */
  font-size: 1.1rem; /* Increased font size for wider text */
  letter-spacing: 0.5px; /* Added letter spacing for a modern look */
  word-spacing: 1px; /* Added space between words for better readability */
}

/* Semi-transparent background for specific text blocks */
.about-us p,
.footer p { /* Removed .contact p */
  background: var(--bg-overlay-dark); /* Semi-transparent black background */
  padding: 10px; /* Padding to create a clean box around the text */
  border-radius: 15px; /* Rounded corners for a polished look */
  display: inline-block; /* Ensures the background only wraps the text */
  margin: 10px auto; /* Center the text block */
}

--- a/c:\Users\alexb\Downloads\La fete website\style.css
b/c:\Users\alexb\Downloads\La fete website\style.css
@@ -53,21 +53,29 @@
 
/* Header Styling */
.header { /* Renamed from .header to avoid conflict if needed, or keep if unique */
  text-align: center;
  padding: 20px 0;
  position: relative; /* For potential absolute positioning of elements inside */
  animation: fadeIn 1s ease-in-out;
  display: flex; /* Enable flexbox */
  align-items: center; /* Vertically align items in the center */
  /* justify-content: space-between; Will be handled by h1 flex-grow */
 }
 
 .logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
 }
 
 .logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--text-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    margin: 0 auto; /* Centers the logo horizontally */
 }
 
 .header h1 {
   font-size: 2.5rem; /* Adjust as needed for your design */
   color: var(--text-color);
   text-shadow: 2px 2px 4px var(--text-shadow-color);
  margin-bottom: 0.5em; /* Space below the title */
   animation: slideInFromLeft 1s ease-in-out;
  flex-grow: 1; /* Allow h1 to take available space */
  text-align: center; /* Center the text within its space */
 margin: 0 15px; /* Add some horizontal margin for spacing */
 }
 
 /* --- Main Navigation --- */
 .main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    width: 100%;
 }
 
 .main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow */
}

.main-nav a:hover,
.main-nav a.active { /* Style for active/hovered link */
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); /* Enhanced shadow on hover */
}

/* --- Main Content Sections --- */
.content {
  padding: 20px;
  max-width: 90%; /* Ensure content doesn't stretch too wide on large screens */
  margin: 0 auto; /* Center the content */
}

.about-us, .products { /* Removed .contact */
  margin-bottom: 30px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  /* animation: slideInFromLeft 1s ease-in-out; */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  justify-items: center;
}

.product-item {
  background: var(--bg-overlay-medium);
  padding: 15px; /* Increased padding for larger text */
  border-radius: var(--border-radius-large);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: popIn 1s ease-in-out;
}

.product-item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-standard);
  animation: fadeIn 1.5s ease-in-out;
}

/* --- Contact Section Styles Removed --- */

/* --- Footer Styling --- */
.footer {
  padding: 15px; /* Increased padding for consistency */
  background: var(--bg-overlay-dark); /* Slightly darker than product items for contrast */
  border-top-left-radius: var(--border-radius-large);
  border-top-right-radius: var(--border-radius-large);
  animation: fadeIn 2s ease-in-out;
}

/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}/* Header Styling */

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px); /* Reduced upward bounce */
  }
  60% {
    transform: translateY(-5px);  /* Adjusted intermediate bounce */
  }
}


@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* slideInFromRight keyframes removed as it's no longer used */
@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes previewFadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- Custom Dropdown --- */
.dropdown-container {
  position: relative; /* Crucial for positioning dropdown-options */
  margin: 20px auto;
  max-width: 350px;
}

.custom-select {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  background: var(--bg-overlay-medium);
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
  /* position: relative; */ /* Not needed here, container handles it */
  /* z-index: 2; */ /* Ensure it's above normal flow if needed, but below options */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

/* Optional: Down arrow indicator */
.custom-select::after {
  content: '▼';
  font-size: 0.8em;
  color: var(--text-color);
  pointer-events: none;
}

.custom-select:focus { /* Added focus state */
  outline: 2px solid var(--text-color); /* Example focus style */
  outline-offset: 2px;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%; /* Positions directly below .custom-select */
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 15px;
  z-index: 10; /* Needs to be higher than .custom-select if it had z-index */
  padding: 5px 0;
}

.option {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.option img {
  width: 30px;
  height: auto;
  border-radius: 10px;
}

.option:hover,
.option:focus { /* Added focus state */
  background: var(--bg-overlay-light);
  outline: none; /* Remove default outline if custom background is enough */
} 

/* In style.css */

.product-preview {
  /* You might already have styles for product-preview */
  /* Add or adjust as needed */
  text-align: center; /* Centers the image and description */
  margin-top: 20px;
}

.product-preview img {
  max-width: 100%; /* Ensures image is responsive */
  height: auto;
  display: block; /* Helps with centering if margin auto is used */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px; /* Space between image and description */
  border-radius: var(--border-radius-standard); /* Added rounded edges */
  animation: previewFadeInUp 0.4s ease-out forwards; /* Added animation */
}

.product-description {
  font-size: 0.9em; /* Adjust size as needed */
  color: var(--text-color); /* Changed to use theme text color */
  text-shadow: 1px 1px 2px var(--text-shadow-color); /* Added text shadow for readability */
  margin-top: 8px;  /* Space above the description if not using margin-bottom on img */
  padding: 0 10px;  /* Some padding if the text is long */
  animation: previewFadeInUp 0.4s ease-out 0.1s forwards; /* Added animation with a slight delay */
}

/* --- Contact Section --- */
.contact {
  text-align: center; /* Center align the content within the contact section */
  padding: 20px 0;
  margin-bottom: 30px;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 20px;
  /* If you want the semi-transparent background for this paragraph:
  background: var(--bg-overlay-dark);
  padding: 10px;
  border-radius: 15px;
  display: inline-block;
  */
}

.whatsapp-link {
  display: inline-flex; /* Allows icon and text to align and centers the button if parent is text-align:center */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color, #ffffff); /* Default to white if --text-color is not defined */
  background-color: #25D366; /* WhatsApp green */
  padding: 15px 25px; /* Padding like before */
  border-radius: 25px; /* Rounded corners */
  font-weight: 500; /* Medium font weight */
  transition: background-color 0.3s ease, transform 0.2s ease;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional: subtle shadow */
}

.whatsapp-link:hover,
.whatsapp-link:focus {
  background-color: #1DA851; /* Darker WhatsApp green on hover/focus */
  transform: scale(1.05); /* Slight scale effect like before */
}

.whatsapp-icon {
  width: 30px; /* This controls the icon size, making it like before */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between icon and text */
}

/* --- Pricing Page Specific Styles --- */
.pricing-info {
  background-color: var(--bg-overlay-light);

.pricing-info h2 {
  text-align: center; /* Center the section heading */
  margin-bottom: 20px;
}

.page-intro {
  text-align: center;
  margin-bottom: 25px; /* Ensure spacing */
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Container for the pricing table to enable horizontal scrolling on small screens */
.pricing-table-container {
  overflow-x: auto; /* Enable horizontal scrolling */
  margin: 25px auto; /* Center the container if table is narrower */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  background-color: var(--bg-overlay-medium);
  border-radius: var(--border-radius-standard);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  max-width: 850px; /* Keep the max-width from the original table */
}

.pricing-table {
  width: 100%;
  /* max-width: 850px; Moved to .pricing-table-container */
  /* margin: 25px auto; Moved to .pricing-table-container */
  border-collapse: collapse;
  /* background-color: var(--bg-overlay-medium); Moved to .pricing-table-container */
  /* border-radius: var(--border-radius-standard); Moved to .pricing-table-container */
  overflow: hidden; /* To make border-radius work on table */
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.25); Moved to .pricing-table-container */
  min-width: 600px; /* Suggest a minimum width before horizontal scroll is very apparent */
}

.pricing-table th,
.pricing-table td {
  border: 1px solid var(--bg-overlay-dark);
  padding: 14px 18px;
  color: var(--text-color);
  text-shadow: 1px 1px 2px var(--text-shadow-color);
}

.pricing-table th {
  background-color: var(--bg-overlay-dark);
  font-weight: bold;
  font-size: 1.1rem;
  -webkit-text-stroke: 0.4px black;
}

.pricing-table tr:nth-child(even) {
  background-color: rgba(0,0,0,0.08); /* Slightly more subtle striping */
}

.pricing-table tr:hover {
  background-color: var(--bg-overlay-light);
}

.pricing-table td:last-child { /* Price column (assuming it's the last one) */
  text-align: right;
  font-weight: bold;
  color: var(--gradient-mid); /* Highlight price */
  font-size: 1.05em;
}

.pricing-note {
  margin-top: 25px;
  text-align: center;
  font-style: italic;
  font-size: 1rem;
}

.pricing-note a {
  color: var(--gradient-end);
  text-decoration: underline;
  font-weight: bold;
}

.pricing-note a:hover {
  color: var(--gradient-mid);
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Optionally keep very subtle transitions if needed */
  .logo { animation: none; }
  h1 { animation: none; }
}

/* Responsive adjustments for the pricing table */
@media (max-width: 768px) {
  .pricing-table-container {
    /* Remove container-specific styling that might conflict with card layout */
    box-shadow: none;
    background-color: transparent;
    border-radius: 0;
    overflow-x: visible; /* Allow content to flow, cards will manage width */
    margin-top: 15px; /* Adjust margin if needed */
    margin-bottom: 15px;
  }

  .pricing-table {
    width: 100%;
    border-collapse: separate; /* Important for border-spacing */
    border-spacing: 0 15px;  /* Vertical space between cards (tr) */
    min-width: 0; /* Allow table to shrink */
    box-shadow: none;
    background-color: transparent;
    border: none;
    overflow: visible;
  }

  .pricing-table thead {
    display: none; /* Hide the original table header */
  }

  .pricing-table tr {
    display: block; /* Each row becomes a block-level card */
    background-color: var(--bg-overlay-medium);
    border-radius: var(--border-radius-standard);
    padding: 15px;
    margin-bottom: 15px; /* This acts as border-spacing */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1); /* Subtle border for cards */
  }

  .pricing-table th,
  .pricing-table td {
    display: block; /* Each cell takes full width of its parent (tr card) */
    text-align: right; /* Align cell content to the right */
    padding: 10px 0;  /* Vertical padding, horizontal handled by label */
    font-size: 1rem;   /* Consistent font size */
    border: none;      /* Remove original cell borders */
    border-bottom: 1px dashed var(--bg-overlay-dark); /* Separator between fields in a card */
    position: relative; /* For ::before pseudo-element positioning */
    padding-left: 45%; /* Make space for the label on the left */
  }

  .pricing-table td:last-child {
    border-bottom: none; /* No border for the last item in a card */
  }

  .pricing-table td::before {
    content: attr(data-label); /* Display the label from data-label attribute */
    position: absolute;
    left: 0;
    width: 40%; /* Width of the label */
    padding-right: 10px; /* Space between label and value */
    font-weight: bold;
    text-align: left; /* Align label text to the left */
    color: var(--text-color);
    -webkit-text-stroke: 0; /* Ensure no text stroke on labels */
    text-shadow: none; /* Ensure no text shadow on labels for clarity */
  }

  .pricing-table tr:nth-child(even) {
    background-color: var(--bg-overlay-medium); /* All cards have the same background */
  }

  .pricing-table tr:hover {
    background-color: var(--bg-overlay-light); /* Hover effect for cards */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }

  .pricing-table td:last-child { /* Price column specific styling */
    text-align: right; /* Ensure price value remains right-aligned */
    font-weight: bold; /* Keep price bold */
    color: var(--gradient-mid); /* Keep price highlight color */
  }
}

/* --- HERO SECTION --- */
.header {
  background: linear-gradient(120deg, var(--gradient-start) 60%, var(--gradient-mid) 100%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--text-color);
  background: var(--bg-overlay-light);
  margin-right: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero-text {
  margin-top: 10px;
}

.header h1 {
  font-size: 2.7rem;
  margin-bottom: 0.2em;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.header p {
  font-size: 1.25rem;
  margin-bottom: 0;
  font-weight: 400;
}

/* --- DROPDOWN & PRODUCT PREVIEW --- */
.dropdown-container {
  background: var(--bg-overlay-dark);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 20px 15px 25px 15px;
  margin-top: 15px;
}

.custom-select {
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--bg-overlay-medium);
  border: 2px solid var(--gradient-mid);
  color: var(--text-color);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 10px;
  transition: border 0.2s;
}

.custom-select:focus {
  border: 2px solid var(--gradient-end);
}

.dropdown-options {
  margin-top: 5px;
  background: var(--bg-overlay-dark);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.option {
  font-size: 1rem;
  padding: 10px 12px;
  border-bottom: 1px solid var(--bg-overlay-medium);
  transition: background 0.2s;
}

.option:last-child {
  border-bottom: none;
}

.option:hover, .option:focus {
  background: var(--gradient-mid);
  color: #fff;
}

.product-preview {
  margin-top: 18px;
  background: var(--bg-overlay-medium);
  border-radius: 15px;
  padding: 15px 10px;
  min-height: 90px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}

.product-preview img {
  max-width: 90%;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.product-description {
  font-size: 1.05em;
  color: var(--text-color);
  margin-top: 5px;
  font-weight: 500;
}

/* --- Submit Button Styling --- */
.booking-form button[type="submit"] {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(90deg, var(--gradient-mid) 0%, var(--gradient-end) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.booking-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    background: linear-gradient(90deg, var(--gradient-end) 0%, var(--gradient-mid) 100%);
}

.booking-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

/* Add animation effect on hover */
.booking-form button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.booking-form button[type="submit"]:hover::after {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* --- Contact Button --- */
.whatsapp-link {
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #25d366 80%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.whatsapp-link:hover, .whatsapp-link:focus {
  background: linear-gradient(90deg, #128c7e 80%, #25d366 100%);
  transform: scale(1.04);
}

.whatsapp-icon {
  width: 28px;
  margin-right: 10px;
}

/* --- Booking Form Enhancements --- */
.booking-form {
  max-width: 420px;
  margin: 40px auto 32px auto;
  padding: 32px 26px 26px 26px;
  border-radius: 22px;
  background: rgba(30, 30, 30, 0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border: 2.5px solid var(--gradient-mid, #ff69b4);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-desc {
  margin-bottom: 22px;
  font-size: 1.13rem;
  color: #fff;
  background: var(--bg-overlay-dark, rgba(0,0,0,0.25));
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: inline-block;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 2px solid var(--gradient-mid);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gradient-end);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group label {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #e0e0e0;
  font-size: 1.08rem;
  pointer-events: none;
  transition: 0.18s cubic-bezier(.4,0,.2,1);
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: -14px;
  left: 14px;
  font-size: 0.93rem;
  color: var(--gradient-mid, #ff69b4);
  background: rgba(30,30,30,0.92);
  padding: 0 8px;
  border-radius: 8px;
}

.booking-form button[type="submit"] {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(90deg, var(--gradient-mid) 0%, var(--gradient-end) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.booking-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    background: linear-gradient(90deg, var(--gradient-end) 0%, var(--gradient-mid) 100%);
}

.booking-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

/* Add animation effect on hover */
.booking-form button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.booking-form button[type="submit"]:hover::after {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* --- CONTACT FORM --- */
.contact-form {
  max-width: 420px;
  margin: 32px auto 0 auto;
  padding: 28px 18px 18px 18px;
  border-radius: 20px;
  background: rgba(30, 30, 30, 0.92);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  border: 2px solid var(--gradient-mid, #ff69b4);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 16px;
  border-radius: 14px;
  border: 2px solid var(--gradient-mid, #ff69b4);
  background: linear-gradient(120deg, rgba(255,255,255,0.13) 60%, rgba(255,105,180,0.10) 100%);
  color: #fff;
  font-size: 1.13rem;
  font-family: inherit;
  outline: none;
  margin-bottom: 0;
  margin-top: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--gradient-end, #ff4500);
  background: linear-gradient(120deg, rgba(255,255,255,0.22) 60%, rgba(255,69,0,0.13) 100%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ffd6ef;
  opacity: 1;
  font-size: 1.02em;
  font-style: italic;
  letter-spacing: 0.5px;
}

.contact-form label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #e0e0e0;
  font-size: 1.08rem;
  pointer-events: none;
  transition: 0.18s cubic-bezier(.4,0,.2,1);
  padding: 0 4px;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -14px;
  left: 10px;
  font-size: 0.93rem;
  color: var(--gradient-mid, #ff69b4);
  background: rgba(30,30,30,0.92);
  padding: 0 8px;
  border-radius: 8px;
}

.contact-form button[type="submit"] {
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gradient-mid, #ff69b4) 70%, var(--gradient-end, #ff4500) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  transition: background 0.2s, transform 0.2s;
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
  background: linear-gradient(90deg, var(--gradient-end, #ff4500) 70%, var(--gradient-mid, #ff69b4) 100%);
  transform: scale(1.03);
}

/* --- RESPONSIVE --- */
@media (max-width: 700px) {
  .header {
    min-height: 160px;
    padding-bottom: 15px;
  }
  .logo-container {
    flex-direction: column;
    gap: 10px;
  }
  .logo {
    width: 80px;
    height: 80px;
  }
  .header h1 {
    font-size: 1.6rem;
  }
  .dropdown-container {
    padding: 10px 5px 15px 5px;
  }
}

@media (max-width: 700px) {
  .booking-form {
    max-width: 98vw;
    padding: 18px 6vw 18px 6vw;
    border-radius: 16px;
    gap: 14px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1.18rem;
    padding: 20px 14px;
    border-radius: 14px;
  }
  .form-group label {
    font-size: 1.05rem;
    left: 16px;
  }
  .booking-form button[type="submit"] {
    font-size: 1.18rem;
    padding: 16px 0;
    border-radius: 14px;
  }
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  font-size: 1.15rem;
  min-height: 54px;
}

.booking-form textarea {
  min-height: 90px;
  font-size: 1.12rem;
}

/* Update header and logo styles */
.header {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--text-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    margin: 0 auto; /* Centers the logo horizontally */
}

/* Update navigation styles with text shadow */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    width: 100%;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow */
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); /* Enhanced shadow on hover */
}

/* Add/Update these styles */
.hero-text p {
    margin-bottom: 10px; /* Reduced spacing */
}

.booking-desc {
    margin-top: 10px; /* Reduced top margin */
    margin-bottom: 15px;
}

.booking-disclaimer {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--gradient-mid);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    margin-top: 30px; /* Space after the form */
}

/* Update the mobile media query */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .booking-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-text p {
        margin-bottom: 5px; /* Even less spacing on mobile */
    }

    .booking-desc {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .booking-container {
        padding: 10px;
    }

    .booking-disclaimer {
        margin: 30px 15px; /* Adjusted margins for mobile */
        padding: 12px 15px;
    }
}

/* --- Product Highlights --- */
.product-price-highlight {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffea00;
    text-shadow: 2px 2px 8px #000, 0 0 2px #ff69b4;
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: 1px;
    display: block;
}

/* Our Story Section Styles */
.our-story-section {
    margin: 60px auto 40px auto;
    max-width: 700px;
    background: rgba(255,255,255,0.13);
    border-radius: 22px;
    box-shadow: 0 8px 32px #ff69b4a0, 0 2px 12px #0002;
    padding: 36px 24px 28px 24px;
    text-align: center;
    animation: fadeIn 1.2s;
}
.our-story-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ff69b4;
    margin-bottom: 18px;
    text-shadow: 1px 1px 8px #fff, 0 0 2px #ff69b4;
    animation: slideInFromLeft 1s;
}
.our-story-text {
    font-size: 1.18rem;
    color: #333;
    line-height: 1.7;
    letter-spacing: 0.2px;
}
.story-anim {
    display: inline-block;
    opacity: 0;
    animation: fadeInUpStory 1s forwards;
}
.story-anim:nth-child(1) { animation-delay: 0.1s; }
.story-anim:nth-child(2) { animation-delay: 0.3s; }
.story-anim:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUpStory {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.our-story-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background: linear-gradient(90deg, #ff69b4 60%, #00bfff 100%);
    color: #fff;
    border-radius: 18px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px #ff69b4a0;
    transition: background 0.2s, transform 0.2s;
    animation: fadeIn 1.5s;
}
.our-story-btn:hover {
    background: linear-gradient(90deg, #00bfff 60%, #ff69b4 100%);
    transform: scale(1.05);
}

/* Fancy Our Story Button */
.our-story-btn.fancy-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 14px 38px;
    border-radius: 24px;
    background: linear-gradient(90deg, #ff69b4 60%, #00bfff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 4px 18px #ff69b4a0, 0 2px 8px #00bfff80;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    z-index: 1;
    margin-top: 16px;
    letter-spacing: 1px;
}

.our-story-btn.fancy-btn .btn-bg {
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, #00bfff 0%, #ff69b4 100%);
    opacity: 0.18;
    transition: left 0.4s cubic-bezier(.4,2,.6,1);
    z-index: 0;
}

.our-story-btn.fancy-btn:hover .btn-bg {
    left: 0;
}

.our-story-btn.fancy-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.2s;
}

.our-story-btn.fancy-btn:hover .btn-text {
    color: #fff700;
}

.our-story-btn.fancy-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px #ff69b4a0;
}

/* Home Our Story Button */
.our-story-btn-home {
    display: inline-block;
    margin-left: 10px;
    padding: 13px 36px;
    background: linear-gradient(90deg, #ff69b4 60%, #00bfff 100%);
    color: #fff;
    border-radius: 22px;
    font-weight: 700;
    font-size: 1.13rem;
    text-decoration: none;
    box-shadow: 0 2px 10px #ff69b4a0, 0 2px 8px #00bfff80;
    border: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    top: -3px;
}
.our-story-btn-home:hover,
.our-story-btn-home:focus {
    background: linear-gradient(90deg, #00bfff 60%, #ff69b4 100%);
    transform: scale(1.05);
    color: #fff700;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: var(--bg-overlay-dark, rgba(0,0,0,0.3));
    z-index: 100;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.13);
}

@media (max-width: 700px) {
    .sticky-footer {
        border-radius: 0;
        font-size: 0.98em;
        padding: 10px 0;
    }
}

/* Add to your style.css */

/* Space out all main sections on the homepage */
main.content > section {
    margin-top: 4vh;
    margin-bottom: 4vh;
}

/* Add more vertical padding to the main content area */
main.content {
    padding-top: 9vh;
    padding-bottom: 9vh;
}