/* public/css/theme.css */
/* === Gascogne Regular === */
@font-face {
    font-family: 'Gascogne';
    src: url('/fonts/gascogne-serial-medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}



/* === Futura Book === */
@font-face {
    font-family: 'FuturaLT-Light';
    src: url('/fonts/FuturaLT-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}



/* === Font Utility Classes === */
.gascogne-serial-medium { font-family: 'Gascogne', serif; }
.font-futura-book { font-family: 'FuturaLT-Light', sans-serif; }



/* Reset */
body, html {
    font-family: 'FuturaLT-Light', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    
}
/* "Header Shadows" */
.text-white-shadow {
  text-shadow: 5px 5px 10px rgba(255, 255, 255, 0.3); /* x-offset, y-offset, blur-radius, color */

}

.text-black-shadow {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); /* x-offset, y-offset, blur-radius, color */

}
/* General Section Spacing */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-text {
    z-index: 1;
    text-align: left;
    color: white;
    padding-left: 10%;
    padding-top: 15%;
}



.hero-text h1 {
    font-size: 3rem;
  
}

/* Navbar */
.navbar {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)) !important;
    z-index: 10;
    transition: opacity 0.5s ease;
}


/* Hidden state on scroll */
.navbar.fade-out {
    opacity: 0;
    pointer-events: none; /* prevents hover/click when invisible */
}

.nav-link {
    color: white !important;
    margin-right: 80px;

     font-size: 0.9rem;
}

.lead {
  font-size: 1rem;
}

.founder-section {
  background-image: url('/img/founderhero2.PNG'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 100vh;
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.founder-section .container {
  position: relative;
  z-index: 2;
}




/* BRANDS */
    .brand-box {
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 2rem;
      background-color: #fff;
      border-radius: 1rem;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .brand-box:hover {
      transform: translateY(-5px);
    }

    .brand-thumbnail {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      max-width: 100%;
      z-index: 10;
    }

    .brand-box:hover .brand-thumbnail {
      opacity: 1;
    }

    .brand-logo {
      position: relative;
      z-index: 5;
      max-width: 100%;
      height: auto;

    }

      .central-kitchen {
      background: url('/img/centralkitchen.PNG') no-repeat center center;
      background-size: cover;
      color: white;
      position: relative;
      min-height: 100vh;
    }
    .overlay {
      background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
      padding: 3rem;
    }

     .franchise-section {
      background-color: #fff;
      padding: 4rem 0;
    }

    .franchise-section .form-control,
    .franchise-section textarea {
      border-radius: 0.75rem;
    }

    .franchise-section .btn {
      border-radius: 0.75rem;
      background-color: #ffffff;
      color: rgb(0, 0, 0);
    }

    .contact-block {
      background-color: #000;
      color: white;
      padding: 4rem 0;
    }

    .contact-block input,
    .contact-block textarea {
      border-radius: 0.25rem;
    }

    .contact-block .btn {
      background-color: white;
      color: black;
      border-radius: 0.75rem;
    }



    footer {
      background-color: #000;
      color: #fff;
      padding: 2rem 0;
    }
    .footer-link a {
      color: #fff;
      text-decoration: none;
    }
    .footer-link a:hover {
      text-decoration: none;
    }
    .glass-button-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

/* Base Glass Button */
.glass-button {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  border: none;
}
.glass-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 0 6px rgba(255, 221, 100, 0.15),   /* soft yellow glow */
    0 4px 12px rgba(0, 0, 0, 0.15);      /* keep base shadow */
}

/* LIGHT BUTTON — glass with white bottom bevel, black upper sides */
.glass-button.light {
  background: rgba(255, 255, 255, 0.2);
  color: #111;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.15),    /* Top inner black fade */
    inset 2px 0 3px rgba(0, 0, 0, 0.1),     /* Left inner black fade */
    inset -2px 0 3px rgba(0, 0, 0, 0.1),    /* Right inner black fade */
    inset 0 -2px 3px rgba(255, 255, 255, 0.9), /* Bottom inner white bevel */
    0 4px 10px rgba(0, 0, 0, 0.1);          /* Outer soft shadow */
}

/* DARK BUTTON — glass with black bottom bevel, white upper sides */
.glass-button.dark {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.15),  /* Top inner white fade */
    inset 2px 0 3px rgba(255, 255, 255, 0.1),   /* Left inner white fade */
    inset -2px 0 3px rgba(255, 255, 255, 0.1),  /* Right inner white fade */
    inset 0 -2px 3px rgba(0, 0, 0, 0.9),        /* Bottom inner black bevel */
    0 4px 10px rgba(0, 0, 0, 0.3);              /* Outer deeper shadow */
}

/* Optional: hover pop */
.glass-button:hover {
  transform: translateY(-1px);
  filter: brightness(2.05);
}


@media (max-width: 768px) {

  /* === HERO SECTION === */
  .hero-section {
    height: auto;
    padding: 100px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }

  .hero-text {
    padding: 0 20px;
    width: 100%;
    text-align: center !important;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  /* === FOUNDER SECTION === */
  .founder-section {
    padding: 60px 20px;
    text-align: center;
  }

  .founder-section .container {
    padding: 0;
  }

  .founder-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .founder-section p {
    font-size: 1rem;
    text-align: justify;
  }

  .founder-section .col-md-5 {
    margin-left: 0 !important;
  }

  /* === CATERING SECTION === */
  #catering.hero-section {
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
  }

  #catering .video-bg,
  #catering video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  #catering h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  #catering p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
  }

  #catering .col-md-5 {
    margin-left: 0 !important;
  }

  #catering .glass-button {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    font-size: 1rem;
    padding: 12px;
    text-align: center;
  }
}
