
 
  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

 :root {
  --primary-color: #00B8BC;
  --accent-color: #F6ED31;
  --text-color: #5d5d5d;
  --white: #fff;
  --black: #000;

  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font: inherit;
}

* {
margin: 0;
padding: 0;
}

html, body {
  height: 100%;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  ::-webkit-scrollbar {width: 10px;}
  ::-webkit-scrollbar-track {background-color: hsl(0, 0%, 98%);}
  ::-webkit-scrollbar-thumb {background-color: hsl(0, 0%, 80%);}
  ::-webkit-scrollbar-thumb:hover {background-color: hsl(0, 0%, 70%);}
}

body {
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  overflow-x: hidden;
  background: rgba(0,0,0,0.8); 
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, p {
  overflow-wrap: break-word;
}

li,
a,
button {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.debug {
    border: 2px solid red;
}

/*----------------------------------------------------------------  */
/*---------------------------------Page Layout -------------------  */
/*----------------------------------------------------------------  */

body {
  background-image: url('assets/bg-annie-spratt-unsplash.avif'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
  /* position: relative; */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5); 
  z-index: -1; 
  pointer-events: none; 
}

h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin: 2rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #f1f1f1;
  text-align: center;
  margin: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #f1f1f1;
  text-align: center;
  margin: 1rem;
}

.accent-text {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: auto;
    text-align: center;
    width: 100%;
}

.full-width {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  display: block; 
}

.grid-2-col {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3-col {
  display: grid;
  width: 100vw;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-1-2-col {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 2fr; 
    gap: 3rem; 
    align-items: center;
    padding: 3rem 5rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.action-button {
  padding: 0.9rem 1.3rem;
  background-color: var(--accent-color);
  color: #111;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid  #F6ED31;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.action-button:hover {
    background-color: #d1c92b;
    color: #000;
    transform: scale(1.01);
    }

.secondary-button {
  padding: 0.9rem 1.3rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
  border: 2px solid  #FFF;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #111;
    border: 2px solid  #F6ED31;
    }

@media (max-width: 780px) {
  .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
    margin: 1.5rem;
  }

  h2 {
    font-size: 1.8rem;
    margin: 1rem;
  } 

  .cta-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .cta-buttons button,
  .cta-buttons .action-button,
  .cta-buttons .secondary-button {
    width: 100%;
  }

}

/*-------------------------------------------------------------------------------------------------------------------------------  */

/* Sticky Header */
.sticky-header {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%);
  width: 90%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 1rem;
  z-index: 1000;
  transition: position 0.3s ease-in-out;
}

.logo img {
  height: 3rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content:flex-end;
    width: 100%;
    gap: 3rem;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    }

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    }

nav a:hover {
     color: var(--accent-color);
    }

nav a.active {
    text-decoration: underline;
    text-underline-offset: 0.6rem;
    text-decoration-thickness: 2px;
}

.icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 3rem; 
    height: 3rem; 
    margin-right: 1.7rem;
   }

 .icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    }

 .icons a:hover {
      color: var(--accent-color)
    }

@media (max-width: 880px) {
  .sticky-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  nav a.active {
    text-underline-offset: 0.4rem;
  }

  .icons {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: space-around;
    justify-content: center;    
    width: 100%;
  }

.nav-links .action-button {
    width: 100%;
  }

}

  /*----- Hero banner */

.hero-banner {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch; 
  width: 100%;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content-left,
.hero-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* .hero-content-left {
  align-items: center;
  text-align: center;
  padding: 2rem;
} */

.hero-content-right {
  flex: 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}

 .hero-banner .image-container img {
    object-fit: cover;
    border-radius: 1rem;   
}

@media (max-width: 1315px) {

  .hero-banner {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
  }

  .hero-banner .image-container  {
    width: 100vw;
    margin: 0;
    padding: 0;
    flex: 0;
  }

  .hero-content-left  {
    padding: 3rem;
    margin-top: var(--header-height, 80px);
    height: 90vh;
    text-align: center;
        z-index: 1;
  }
    .hero-content-left {
    position: relative;
    z-index: 1; 
    background-color: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(3px);
    padding: 2rem;
  }

.hero-content-right {
  display: block;
    position: absolute;
    inset: 0;
    z-index: -1; 
  }

  .hero-content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

}


/* Customers */

.customers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw; 
    height: auto;
    padding: 0 10%; 
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.customer-logo {
  min-width: 100px;
  max-width: 6rem;
  width: auto;
  object-fit: contain;
  margin: auto;
  display: block;
  overflow: hidden;
  
}

.wide {
  min-width: 170px;
  max-width: 6rem;
  height: auto;
}

.accenture-logo {
  min-width: 125px ;
}

@media (max-width: 1200px) {

  .wide {
    max-width: 5rem;
  }

  .mobile-hide {
    display: none;
  }
}

@media (max-width: 880px) {
   

  .customer-logo {
    max-height: auto;
  }
}

/* What we do */


.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem; 
}

.services-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

.text-content-container {
  display: flex;
  flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    padding: 3rem;
    max-width: 70%;
}

.section-heading {
  margin: 0 0 2.5rem 0; 
  text-align: left;  
  align-self: flex-start; 
  
}
.body-text {
    line-height: 1.4rem;
    color: white;
    text-align: left;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.services .cta-buttons {
  justify-content: flex-start;
  margin-top: 2.5rem;
}

/* Mobile Styles */

@media (max-width: 1370px) {
  .services {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 2rem;    
  }

.services .image-container {
  padding: 0;
  margin: 0;
}
.services-image {
    max-width: 70%;
    padding: 0;
    margin: auto;
  }
  .services .image-container img {
    max-height: 30vh;
    width: 100vw; 
  }

  .services h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }


}
@media (max-width: 880px) {

  .services {
    width: 100%;
    padding: 0;
  }

  .text-content-container {
    width: 100%;

    text-align: center;
    max-width: 90%;
  }

.services-image {
    max-width: 100%;
    padding: 0;
    margin: auto;
  }
  .services .image-container img {
    max-height: 50vh;
    width: 100vw;
  }

.services .cta-buttons {
  flex-direction: column;
  width: 100%;
  }
}

@media (max-width: 600px) {
  .image-container {
    padding: 1rem;
  }

  .text-content-container {
    width: 100%;
    padding: 1rem;
  }

  .body-text {
    font-size: 0.9rem;
  }

  .section-heading {
    text-align: center;
  }
}

/* Process  - How it works */

.process {
  display: grid;
  align-self: center;
  grid-column: span;
  width: 100vw;
  max-width: 1200px;
  padding: 1rem;
  border-radius: 1rem;
  margin: 3rem auto;
  gap: 1rem;
  grid-auto-flow: row;
  grid-template-columns: repeat(1fr, 1fr, 1fr);
  align-items: center;
  justify-items: space-between;
  margin-bottom: 2rem;
}

.dark-background {background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

.process .section-heading {
  margin-bottom: 0;
}

.process-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 1rem;
  justify-content: space-between;
  color: var(--white); 
  gap: 2rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem; 
}

.icon-svg {
  height: 5rem;
  width: auto;
  filter: invert(1);
  margin: auto;
}

@media (max-width: 1280px) {
  .process {
    flex-direction: column;
    align-items: center;
    padding: 2rem;    
  }

}

@media (max-width: 700px) {
  .process-steps{
    flex-direction: column;
    align-items: center;
    padding: 2rem;  
    gap: 2rem;      
  }

}

/* Services */

.services-container {
  max-width: 1200px;
  margin: 3rem auto; 
  padding: 2rem; 
  text-align: center;
}

.section-services .section-heading {
  text-align: center;
}

.section-subtitle {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.7rem;
  text-align: center;
  margin: -1.7rem auto 3rem auto; 
  max-width: 820px; 
}

.services-content-container {
  display: flex;
  width: 100%;
  justify-content: space-between; 
  gap: 2rem; 
  align-items: flex-start; 
  padding: 2rem 0;
}

.services-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-basis: 0; 
  flex-grow: 1;
  max-width: 400px;
}

.food-image {
  width: auto;
  height: 500px;
  object-fit: cover;
  border-radius: 8px; 
  box-shadow: 0px 4px 15px 0px rgba(255, 255, 255, 0.25);
}

.item-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.7rem; 
  text-align: center;
  margin: 1rem; 
}

.item-description {
  color: #f0f0f0;
  font-weight: 400;
  line-height: 1.3rem;
  text-align: center;
  margin-top: 0; 
}

/* Responsive adjustments */
@media (max-width: 1000px) { /* Tablet */
 
  .services-content-container {
    gap: 1rem;
  }

  .food-image {
    height: 350px; 
  }
  
}

@media (max-width: 768px) { /* Mobile */

  .services-content-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; 
  }

  .services-item {
    width: 90%;
    max-width: 400px; 
  }

  .food-image {
    height: auto; 
    aspect-ratio: 410 / 553; 
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 3rem ;
  text-align: center;
  margin-bottom: 3rem;
  position: relative  ;
  align-items: center;
}

.contact-form-section .section-title {
  margin-bottom: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;  
    margin-top: 1rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 8px;
  width: 100%;
}

.form-input {
  border: 2px solid #fff;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  width: 100%;
}

.form-textarea {
  border: 2px solid #fff;;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 16px;
  width: 100%;
  height: 10rem;
  margin-top: 8px;
  resize: none;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6); 
    font-weight: 300;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  caret-color: var(--accent-color);
}

.form-bg {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 30%;
  height: auto;
}
@media screen and (max-width: 780px) {
.form-bg {
  width: 100%;
  height: auto;
  z-index: -2;
}

.form-row {
  flex-direction: column;
  gap: 0.5rem;
}
}


/*----------- Footer */
.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
	padding: 2rem 1.5rem;
}

.footer-container {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
}

.footer-container-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* logo */
.footer-icon { 
  display: flex;
	width: 100%;
	max-width: 10rem;
	flex-shrink: 0;
  /* justify-content: center;
  align-items: center; */
}

.footer-text {
	align-self: stretch;
	text-align: center;
  font-size: 1rem;
	line-height: 1.4rem;
	font-weight: 300;
  margin-bottom: 2rem;
}

 .footer-body-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.5rem;
  width: 100%;
} 

.footer-contact-section, 
.footer-navigation-section, 
.footer-menu-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  text-align: left;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section-title {
  margin: 0;
  padding: 0; 
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  align-self: flex-start;
  text-align: left ;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 2.2rem;
  width: 100%;
}

.contact-item i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
  width: 1rem;
  align-self: center;
}

footer .contact-item a,
footer .contact-item p {
    font-weight: 400;
    font-size: 0.9rem; 
}

footer .contact-item i {
  align-self: center;
}


/* Focus and Hover States */
.nav-link:hover,
.nav-link:focus,
.footer-link:hover,
.footer-link:focus {
  text-decoration: underline;
  outline: none;
}

/* Accessibility Enhancements */
.submit-button:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
} 

.footer-navigation-section {
  flex: 1;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  color: #fff;
  font-size: 14px;
  line-height: 19.6px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2px;
  cursor: pointer;
  font-weight: 400;
}

.footer-nav-link:hover,
.footer-nav-link:focus {
  text-decoration: underline;
}

.footer-menu-section {
  flex: 1;
}

.footer-menu-section .footer-nav + .footer-nav .footer-section-title {
  margin-top: 3rem;
}

.footer-bottom {
  max-width: 1200px;
  border-top: 1px solid #fff;
  padding-top: 2rem;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: auto;
  width: 100%;
}

.copyright,
.credits {
  color: #fff;
  font-size: 13px;
  line-height: 19.5px;
  margin: 0;
}

@media screen and (max-width: 1280px) {
	
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  }

.footer-menu-section .footer-nav-list {
    align-items: center;
    text-align: center;
    width: 100%;
  }

.footer-menu-section .footer-nav-list li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

}

/* Responsive Design */
@media (max-width: 991px) {
   .footer-body-container {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 1rem;
    }

    .footer-section-title {
      align-self: center;
      text-align: center ;
      justify-content: center;
      margin-bottom: 0.5rem;
    }

  .footer-contact-section,
  .footer-navigation-section,
  .footer-menu-section {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .footer-nav .footer-section-title {
    margin-top: 3rem;
  }

  .footer-bottom {
  margin-top: 3rem;
  
}

}

@media (max-width: 640px) {

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}

/* Bookings page */

.bookings .section-services {
  margin-top: 5rem;
}

.form-subtitle {
  margin-top: -2rem;
  margin-bottom: 3rem;
  padding: 0 20%;
}

.bookings .form-bg {
  top: 0;
  z-index: -200;
}

.bookings .customers {
  flex-direction: column;
  width: 100%;
}

.bookings .customer-logo-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

/* Our story */

.our-story {
  width: 100%;
  padding: 0;
}

.our-story .hero-title, .bookings .hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10; 
    color: white;
    font-size: 3rem;
    letter-spacing: 1px;
}
 .address-banner {
  display: flex;
  
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1000px;
  
  gap: 1rem;
  padding: 2rem 3rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  margin:0 auto;
}

.address-banner .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    white-space: nowrap;  
    width: max-content;
}

.address-banner .contact-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .address-banner {
        flex-direction: column;
        text-align: center;
        width: 90%;
        padding: 0.5rem;
    }

    .address-banner .contact-item {
        width: 100%;
        justify-content: center;
    }

    .address-banner .contact-item a {
        font-size: 0.9rem;
    }
}

.our-story .text-content-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.story-container {
  padding: 75px 0;
  margin: 0 auto;
  width: 1140px;
}

.our-story h1,
.bookings h1 {
  position: relative;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  margin: 7rem 0 0 0;
  border-radius: 1rem;
  width: 100vw; 
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 70vh;
  z-index: -100;
}

.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.5s ease;

  &:hover {
    flex: 5;
  }
}

.item-1 {
  background-image: url(assets/corporate-events-take-out.jpeg);
}

.item-2 {
  background-image: url(assets/private-functions-breakfast-burrito.jpeg);
}

.item-3 {
  background-image: url(assets/meatmykitchen-food.jpg);
}

.item-4 {
  background-image: url(assets/food-salad.jpeg);
}

.item-5 {
  background-image: url(assets/food-carousel-burgers.jpeg);
}

@media (max-width: 880px) {
    .our-story .hero-title {
        font-size: 2.7rem; 
        top: 40%; 
        width: 90%; 
        padding: 1rem; 
    }
}

@media (max-width: 600px) {
    .our-story .hero-title {
        font-size: 2.5rem;
        top: 50%;
        width: 85%;
    }
}


/* Poem  & Philosophy*/

.graffiti-bg {
  position: absolute;
  z-index: -1;
  top: -10%;
  right: -40%;
  width: 30em;
}


/* Philosophy (Right Side) */


.philosophy {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  width: 80vw;
  margin: 0 auto;
  background: none;
 
}


.philosophy img {
    filter: brightness(0) invert(1); 
    height: 3.5rem;
    width: auto;
}

.south-african img {
    filter: none; 
}

.philosophy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1rem;
  padding: 1rem;
}
.philosophy-heading {
  font-size: 1.7rem;
  line-height: 2.2rem;
}


@media (max-width: 880px) {
    .poem-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

  
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .philosophy {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .philosophy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .philosophy-container {
    padding: 0.5rem;
  }

  .philosophy-heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* bookings carousel - not used*/

.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	
	letter-spacing: -0.01em;
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
  background: var(--accent-color);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 80px;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	margin-top: 40px;
	transition: all 0.5s ease-out;
}

.member-name {
	color: rgb(8, 42, 123);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: rgb(8, 42, 123);
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: var(--accent-color);
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #FFF;
	transform: scale(1.2);
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
	outline: none;
	padding-bottom: 4px;
}

.nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}

/* Story redon */

/* ==== “Meet Shaun & Wendy” split layout ============================= */
.story-section {
  /* 1/3 – 2/3 desktop grid */
  
  display: grid;
  grid-template-columns: 2fr 3fr;   
  gap: 3rem;
  padding: 0 5rem;
  max-width: 1200px;
  margin: 3rem auto ;
  align-items: stretch;
}

/* ---------- image column ---------- */
.story-container-image {
  width: 100%;
  display:flex;
  align-items:center;    
  justify-content:center;
}

.story-container-image img {
  display: block;      
  width: 100%;         
  height: auto;        
  object-fit: cover;   
  border-radius: 1rem; 
}

/* ---------- text column ---------- */
.story-split__text {
  width: 100%;
  padding: 2rem 0;
}

.story-split__heading { margin-bottom: 1.5rem; }
.story-split__body    { line-height: 1.6; }

/* ---------- mobile: stack columns ---------- */
@media (max-width: 880px) {
  .story-section {
    grid-template-columns: 1fr;   
    padding: 0 2rem;              
  }
  .story-container-image {
    max-width: 90%;               
    margin: 0 auto 2rem;          
  }
}


/* timeline */

.timeline {
  width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  
  .timeline-item {
    display: flex;
    justify-content: space-between;
    margin: 80px 0;
    align-items: center;
    position: relative;

    &:after {
      position: absolute;
      content: "";
      width: 20px;
      height: 20px;
      top: 50%;
      left: 50%;
      background: #fff;
      border: 3px solid #F6ED31;
      transform: translateX(-50%) translateY(-50%);
      z-index: 2;
      border-radius: 100%;
    }

    > div {
      width: 44%;

      img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
        border-radius: 1rem;
      }
    }

    &__content {
      background: linear-gradient(to left, rgba(#000, 0.05), rgba(#000, 0) 50%);
      line-height: 1.5;
      padding: 5px 35px;
      border-radius: 20px;
      position: relative;
      box-sizing: border-box;
      margin-top: 22px;

      .timeline-item__title {
        color: #fff;
        margin-bottom: 0;
        font-size: 1.6em;
        font-weight: 500;
      }

      .timeline-item__date {
        position: absolute;
        bottom: 100%;
        right: 50%;
        padding-bottom: 5px;
        font-size: 1.8em;
        font-weight: bold;
        opacity: 1;
        color: #fff;
        letter-spacing: -0.025em;
        line-height: 1.2rem;
      }

      &:after {
        position: absolute;
        content: "";
        top: calc(50% - 10px);
        left: 100%;
        transform: translateY(-50%);

        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        border-color: transparent transparent transparent rgba(#000, 0.05);
      }
    }

    &:nth-child(even) {
      flex-direction: row-reverse;

      .timeline-item__content {
        background: linear-gradient(
          to right,
          rgba(#000, 0.05),
          rgba(#000, 0) 50%
        );

        .timeline-item__date {
          position: absolute;
          bottom: 100%;
          left: 5px;
          right: auto;
        }

        &:after {
          left: auto;
          right: 100%;
          transform: translateY(-50%) rotate(180deg);
        }
      }
    }
  }

  &:after {
    content: "";
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    background: #fff ;
  }
}


@media (max-width: 1024px) {
  .timeline {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .timeline {
    .timeline-item {
      flex-direction: column;
      margin: 40px 0;
      
      > div {
        width: 100%;
      }

      &:after {
        left: 0;
        top: 0;
      }
    }

    &:after {
      /* Vertical line */
      left: 10px;
    }

    .timeline-item__content {
      padding: 15px;
      margin-top: 10px;
      
      .timeline-item__date {
        position: relative;
        bottom: auto;
        right: auto;
        left: 0;
        margin-bottom: 10px;
      }
    }

    /* Remove the different styling for even items */
    .timeline-item:nth-child(even) {
      flex-direction: column;
      
      .timeline-item__content {
        .timeline-item__date {
          left: 0;
        }
      }
    }
  }
}



/* Thank you found */

.thank-you {
    min-height: 100vh;
    width: 100vw;
    background-image: url('assets/404-image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.thank-you-banner {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    max-width: 800px;
    width: 90%;
    margin-top: var(--header-height, 80px);
}



@media (max-width: 768px) {
    .thank-you-banner {
        padding: 2rem;
    }
    
    /* .cta-buttons {
        flex-direction: column;
        width: 100%;
    } */
}

/* Page not found */

.not-found {
    min-height: 100vh;
    width: 100vw;
    background-image: url('assets/404-image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.not-found-banner {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    max-width: 800px;
    width: 90%;
    margin-top: var(--header-height, 80px);
}



@media (max-width: 768px) {
    .not-found-banner {
        padding: 2rem;
    }
    
    /* .cta-buttons {
        flex-direction: column;
        width: 100%;
    } */
}