/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* justify-content: center; */
    background-color: #000;
    font-family: 'Monserrat';
    line-height: 1.6;
    color: #333;
}

header {
    background: #000000;
    position: fixed;
    top: -100px; /* Initially hide the header */
    width: calc(100% - 40px); /* Add 20px space on each side */
    margin: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
    z-index: 1000; /* Ensure the header stays above other content */
    border-radius: 25px; /* Make the header curved */
    font: #028e17;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo Styles */
.logo {
    display: inline-block;
    /* background-color: #D3B184; Background color for the frame */
    background-color:  #F1B82D; /* Background color for the frame */
    padding: 5px; /* Space between the image and the frame */
    border-radius: 25px; /* Curvy frame */
}

.logo img {
    display: block;
    border-radius: 15px; /* Curvy corners for the image itself */
    height: 50px; /* Adjust as needed */
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

nav ul li a:hover {
    color: #FFF;
}

/* Responsive Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fe5f00;
    }

    .nav-links.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .logo {
        margin-left: 0;
    }

    .social-icons {
        margin-top: 10px;
    }

    .hero {
      background-position: center top; /* show more of the top of the photo */
      height: 70vh; /* reduce the visible height on small screens */
    }
    
    .hero {
        background-size: contain; /* keeps full image visible */
        height: auto;
        aspect-ratio: 16 / 9; /* maintain image shape */
      }
  
    .hero-content h1 {
      font-size: 32px;
    }
  
    .hero-content p {
      font-size: 18px;
    }
  }




  .hero {
    background: url('images/home_page.jpg') no-repeat center center;
    background-size: contain; /* Show entire image, keep proportions */
    /* background-color: #00223E; Optional: background fill behind image */
    background-color: #000; /* Optional: background fill behind image */
    width: 100%;
    height: auto;
    min-height: 100vh; /* Keeps section tall enough */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  
  /* Content box */
  .hero-content {
    max-width: 800px;
    padding: 20px;
    /* background: rgba(211, 177, 132, 0.6); semi-transparent gold */
    background: rgb(241, 184, 45, 0.6); /* semi-transparent gold */
    border-radius: 10px;
  }

  /* .hero-content {
    max-width: 800px;
    padding: 20px;
    /* Adjusted background color with transparency */
    /* background: rgba(184, 134, 11, 0.6); /* 0.8 is 80% opacity */
    /* border-radius: 10px;
} */


.hero h1, .hero p { /* Assuming you have headings and paragraphs inside */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adjust the shadow size and color */
}





/* .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
} */

.hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }



.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
footer {
    background: rgb(241, 184, 45, 0.5);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border-radius: 20;
}

/* General Styles for Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center; 
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Specific background color for each social icon */
.facebook-icon {
    background-color: #0867ff;
}

.facebook-icon:hover {
    color: #fff700;
}

.instagram-icon {
    background-color: #cc2d8b; /* Burgundy color */
}

.instagram-icon:hover {
    color: #fff700;
}

.whatsapp-icon {
  background-color: #1fb039; /* Burgundy color */
}

.whatsapp-icon:hover {
  color: #fff700;
}

.deliveroo-icon {
    background-color: #00c7b7; /* Deliveroo color */
}

.deliveroo-icon:hover {
    color: #009f8e;
}

.uber-icon {
    background-color: #000000; /* Uber black color */
}

.uber-icon:hover {
    color: #aaaaaa;
}

.justeat-icon {
    background-color: #ff8000; /* Deliveroo color */
}

.justeat-icon:hover {
    color: #ff8000;
}


        /* Contact info styles */
        .contact-info {
            text-align: center;
            margin-top: 20px;
        }

        .contact-info p {
            margin: 5px 0;
        }

        .contact-info a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #555;
        }


/* General Section Styles */
.curved-section {
    background-color: #F1B82D;
    color: #fff;
    padding: 20px;
    border-radius: 25px;
    margin: 20px auto;
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.1);
    text-align: center;
}

.curved-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.curved-section p {
    font-size: 1.2em;
    line-height: 1.6;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partners-grid .partner {
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
}

.partners-grid .partner img {
    max-width: 100%;
    border-radius: 10px;
}

.partners-grid .partner p {
    margin-top: 10px;
    font-size: 1em;
}

ul {
    list-style-type: disc; /* Default bullet style */
    padding-left: 20px; /* Indent the bullet points */
}

ul li {
    font-weight: bold;
    text-align: left; /* Align text to the left */
}

ul li h1 {
    font-size: 1.5em; /* This is the size for h3, adjust as needed */
    margin: 0; /* Remove any default margin */
}


 





/* body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
} */

.quote-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 960px;
}

.quote-form input, .quote-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.quote-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.quote-form button:hover {
    background-color: #0056b3;
}

#output {
    margin-top: 20px;
}


/* @media (max-width: 768px) {
    .hero {
      background-position: center top;
      height: 80vh;
    }
  }
   */


   /* 📱 Mobile adjustments */
/* @media (max-width: 768px) {
    .hero {
      height: auto; /* allow flexible height on mobile */
      /* min-height: 80vh; /* at least 80% of screen */
      /* background-position: center top;
      background-size: cover;
    }
  } */ 

/* 📱 Mobile adjustment */
/* @media (max-width: 768px) {
    .hero {
      height: auto;            /* fit image naturally */
      /* min-height: 80vh;        /* still tall enough */
      /* background-size: cover;  /* maintain proportions */
      /* background-position: center top;
    }

} */  
 
@media (max-width: 768px) {
    .hero {
      background-position: center center;
      background-size: contain;
      min-height: 70vh;
    }
  }
  
  

/* Hide menu on small screens by default */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Responsive menu styles */
  /* @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      padding: 20px 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  } */
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      padding: 20px 0;
      z-index: 1000; /* keeps menu on top of all content */
    }
  
    .nav-links.active {
      display: flex;
    }
  
    /* ✅ keep dropdowns visible inside nav-links on mobile */
    .nav-links .dropdown-content {
      position: static;
      background: none;
      box-shadow: none;
      display: none;
    }
  
    .nav-links li.active .dropdown-content {
      display: block;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  




  .pricing-section {
    max-width: 950px;
    margin: 60px auto;
    padding: 0 30px;
  }

  .pricing-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .card {
    /* background: #D3B184; */
    /* background: #9D5B04; */
    background: #F1B82D;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  }

  .card h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .card p {
    margin: 5px 0;
  }

  .price {
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
  }

  .book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: rgb(0, 140, 255);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .book-btn:hover {
    background-color: #cc7a00;
  }

  .info-section {
    background: #fff3e0;
    margin-top: 60px;
    padding: 40px 20px;
    border-radius: 10px;
  }

  .info-section h3 {
    text-align: center;
    color: #000;
  }

  .info-section ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  .info-section li {
    margin: 8px 0;
  }







  .dropdown-content {
    display: none;
    margin-top: 15px;
    text-align: center;
    transition: all 0.4s ease;
  }
  
  .card.active .dropdown-content {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #000;
  }
  
  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }
  
  .card.active .dropdown-toggle i {
    transform: rotate(180deg);
  }
  
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-5px);}
    to {opacity: 1; transform: translateY(0);}
  }
  



  p {
    color: #000;  
  }






  /* Force proper styling for the Prices page "Additional Information" section */
#about.curved-section {
  background-color: #F1B82D !important; /* your site’s gold tone */
  color: #000 !important; /* readable black text */
  padding: 40px 20px;
  border-radius: 25px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Optional: Make list items clean and matching your theme */
#about.curved-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#about.curved-section li {
  font-size: 1.1em;
  margin: 10px 0;
  color: #111;
}


#additional-info.curved-section {
  background-color: #F1B82D;
  color: #000;
}




















.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 30px;;
}

.split-section .text {
  flex: 1;
}

.split-section .image {
  flex: 1;
}

.split-section img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
}

/* Reverse layout */
.split-section.reverse {
  flex-direction: row-reverse;
}

/* For mobile */
@media (max-width: 768px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
  }
}





.services-image {
  width: 100%;
  max-width: 800px;   /* keeps it from becoming larger than original */
  height: auto;       /* keeps aspect ratio */
  display: block;
  margin: 0 auto;     /* center the image */
  border-radius: 20px; /* adjust number for more or less curve */
}


/* img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* optional – prevents distortion */
/* } */ 

img {
  max-width: 100%; /* responsive */
  height: auto;    /* keeps aspect ratio */
  display: block;
}




p {
  text-align: justify;
  text-justify: inter-word;
}



/* Curved Section
.curved-section {
  background: #fff;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  color: #000;
  z-index: 1;
}

.curved-section::before,
.curved-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
  background: #fff;
}

.curved-section::before {
  top: -80px;
  border-bottom-left-radius: 100% 50px;
  border-bottom-right-radius: 100% 50px;
}

.curved-section::after {
  bottom: -80px;
  border-top-left-radius: 100% 50px;
  border-top-right-radius: 100% 50px;
} */



/* related resource: styles.css:745:1 */
#additional-info.curved-section { /* the element was section#additional-info */
  opacity: 1;
}

/* related resource: styles.css:745:1 */
#about.curved-section { /* the element was section#additional-info */
  opacity: 1;
}





/* --- SIMPLE PRICING BLOCK --- */
.pricing-simple {
  max-width: 950px;
  margin: 50px auto;
  padding: 40px 25px;
  background: #F1B82D;
  color: #000;
  border-radius: 25px;
}

.pricing-simple h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}

.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.pricing-list .item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.pricing-list .item h3 {
  margin-bottom: 10px;
  color: #000;
}

.pricing-list ul {
  list-style: none;
  padding: 0;
}

.pricing-list li {
  margin: 6px 0;
}

/* --- FULL TABLE --- */
.pricing-table-section {
  max-width: 950px;
  margin: 50px auto;
  padding: 30px;
}

.pricing-table-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #F1B82D;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: center;
  color: #000;
}

.pricing-table tr:nth-child(even) {
  background: #ffe19a;
}

.pricing-table th {
  background: #000;
  color: #fff !important;
}



/* body {
  padding-top: 120px;
} */


.nav-links a:hover {
  color: #F1B82D; /* your gold color */
  transition: 0.3s ease;
}



.nav-links a.active,
.nav-links a:hover {
  color: #F1B82D;   /* gold */
  transition: 0.3s ease;
}







/* Hide "Menu" text by default (desktop) */
/* .menu-toggle .menu-text {
  display: none;
} */

/* Mobile styling */
/* @media (max-width: 768px) { */

  /* Move hamburger to the right */
  /* .menu-toggle {
    display: flex;
    flex-direction: column; /* icon above, text below */
    /* align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 1000;
  } */ 

  /* Show the menu label */
  /* .menu-toggle .menu-text {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    color: #fff; /* change if you want gold */
  /* } */

  /* Make sure nav links hide when collapsed */
  /* .nav-links {
    display: none;
  } */

  /* When mobile nav is open */
  /* .nav-links.active {
    display: block;
  }
} */



.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.submit-btn {
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.submit-btn:hover {
  background: #333;
}

