/*
Theme Name: Burger Blaze
Theme URI: https://example.com/burger-blaze
Author: Your Name
Author URI: https://example.com
Description: A bold and attractive WordPress theme for burger restaurants featuring black and yellow colors with a video background hero section.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: burger-blaze
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFC700;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   LAYOUT & STRUCTURE
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #FFD700;
  color: #000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 24px;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  margin: 0;
}

.site-title a {
  color: #000;
}

.site-title a:hover {
  color: #000;
  text-decoration: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.main-navigation {
  display: flex;
  gap: 30px;
}

.main-navigation a {
  color: #000;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: none;
  padding: 8px 14px;
  border: 3px solid transparent;
  border-radius: 999px;
  background-color: transparent;
  box-shadow: none;
  text-decoration: none;
}

/* Keep base/active states black, but allow hover/focus to switch to white. */
.site-header .main-navigation a {
  color: #000 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 3px solid transparent !important;
  border-radius: 999px !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.site-header .main-navigation a:hover,
.site-header .main-navigation a:focus {
  color: #fff !important;
}

.site-header .main-navigation .current-menu-item > a,
.site-header .main-navigation .current_page_item > a,
.site-header .main-navigation .current-menu-ancestor > a,
.site-header .main-navigation .current-menu-parent > a,
.site-header .main-navigation .current_page_parent > a,
.site-header .main-navigation a.active,
.site-header .main-navigation a[aria-current="page"] {
  color: #fff !important;
  background: #000 !important;
  background-color: #000 !important;
  border: 3px solid #FFD700 !important;
  border-radius: 999px !important;
  text-decoration: none !important;
}

/* ========================================
   HERO SECTION WITH VIDEO
   ======================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
	
  overflow: hidden;
  color: #fff;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
	transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  text-align: center;
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  color: #FFD700;
  font-size: 4rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  background-color: #FFC700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: #000;
  text-decoration: none;
}

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

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 80px 0;
}

.section.dark {
  background-color: #000;
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #FFD700;
}

.section.light {
  background-color: #fff;
  color: #000;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
}

/* ========================================
   MENU / FEATURED ITEMS
   ======================================== */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.menu-item {
  background-color: transparent;
    overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}



.menu-item-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  
}

.menu-item-content {
  padding: 20px;
  background-color: transparent;
	
}

.menu-item-title {
  font-size: 1.5rem;
  color: #FFD700;
margin-top:15px
}

.menu-item-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.menu-item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
}
.menu-item:hover {
 
  color: #333; 
  
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background-color: #111;
  padding: 30px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #fff;
}

.testimonial-text {
  font-size: 1rem;
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: #FFD700;
}

/* ========================================
   LOCATIONS CAROUSEL
   ======================================== */

.locations-section {
  overflow: hidden;
}

.locations-carousel {
  margin-top: 10px;
  overflow: hidden;
}

.locations-track {
  display: flex;
  transition: transform 0.8s ease;
  will-change: transform;
}

.location-slide {
  flex: 0 0 50%;
  padding: 0 6px;
}

.location-card-image-wrap {
  width: 100%;
  height: 430px;
  overflow: hidden;
  background-color: #efefef;
}

.location-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-content {
  padding: 14px 0 2px;
}

.location-name {
  font-size: 2rem;
  margin-bottom: 3px;
  color: #222;
}

.location-city {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 50px 0 20px;
  border-top: 4px solid #FFD700;
 margin-top:50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #fff;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.subscribe-form button {
    background-color: #FFD700;
    color: #333;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    color: #fff;
}

.subscription-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    z-index: 9999;
    animation: fadeOut 3s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .main-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .site-header-inner {
    flex-direction: row;
    gap: 15px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .location-slide {
    flex: 0 0 100%;
  }

  .location-card-image-wrap {
    height: 320px;
  }

  .location-name {
    font-size: 1.5rem;
  }

  .location-city {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 20px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
  text-align: center;
}

.text-yellow {
  color: #FFD700;
}

.text-white {
  color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-yellow {
  background-color: #FFD700;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}
.menu-item:hover .menu-item-title,
.menu-item:hover .menu-item-description {
  color: #333;
}
.menu-item-home{
	font-size: 0 !important; 
}
.fallback-menu {
    display: flex;
    justify-content: space-between;   /* center menu */
    align-items: center;
    gap: 25px;                 /* space between items */
    padding: 10px 0;
}

.fallback-menu a {
    display: inline-block;
}

.fallback-menu img {
    height: 30px;              /* control size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fallback-menu img:hover {
    transform: scale(1.1);     /* nice hover zoom */
    opacity: 0.8;
}
.fallback-menu {
    position: relative;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    margin: 10px;
}

.menu-toggle span {
    height: 3px;
    background: #000;
    margin: 5px 0;
    display: block;
}

/* Menu Items */
.menu-items {
    display: flex;
    gap: 15px;
}

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

    .menu-toggle {
        display: flex;
    }

    .menu-items {
        display: none;
		height:auto;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 999;
    }

    .menu-items a {
        text-align: center;
        padding: 10px 0;
    }

    .menu-items.active {
        display: flex;
    }
}
@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: row;
        gap: 15px;
    }	
}
@media (max-width: 768px) {
    body.menu-open .site-header {
        height: 420px;
    }
}
@media (max-width: 768px) {
    .fallback-menu img {
        height: 30px;  /* even bigger icons */
    }

}
@media (max-width: 768px) {

    .menu-items a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-items img {
        transform: scale(1.5);   /* increase size */
        transform-origin: center;
    }


}
.hero-carousel {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 2;
}

