/* control your variables via the _variables.scss file in utilities folder */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* =====================================
   1. GLOBAL & BASE STYLES
   ===================================== */
html, body {
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  font-family: "Montserrat", sans-serif;
  color: #333333;
  background-color: #ffffff; /* Clean White Background */
}

h2 {
  color: #ee2526;
}

/* Subpage Reset */
body:not(.home) .page-content section {
  padding: 0 !important;
}

/* --- TYPOGRAPHY GLOBAL DEFAULTS --- */
p {
  color: #333333;
  line-height: 1.6;
}

/* Bold Text */
strong, b {
  color: #1C1C1C;
  font-weight: 700;
}

/* Default Links */
a {
  color: #ee2526; /* Feasta Red */
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(184.1404255319, 14.3595744681, 15.2042553191);
}

input, textarea {
  width: 100% !important;
}

/* =====================================
   2. GLOBAL BUTTON STYLES (Solid Red -> Darker Red)
   ===================================== */
/* Applies to WP Buttons, Standard Buttons, and Inputs */
.btn,
button,
input[type=button],
input[type=submit],
.wp-block-button__link {
  display: inline-block;
  background-color: #ee2526 !important; /* Feasta Red Fill */
  border: 2px solid #ee2526 !important; /* Feasta Red Border */
  color: #ffffff !important; /* White Text */
  /* Shape & Type */
  border-radius: 50px;
  padding: 12px 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Hover Effect */
}
.btn:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
.wp-block-button__link:hover {
  background-color: rgb(184.1404255319, 14.3595744681, 15.2042553191) !important; /* Darker Red Fill */
  border-color: rgb(184.1404255319, 14.3595744681, 15.2042553191) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238, 37, 38, 0.4); /* Red Glow */
}

/* Focus 3 (Light Theme) Button Override */
.focus3 .btn,
.focus3 .wp-block-button__link {
  background-color: transparent !important;
  border-color: #ee2526 !important;
  color: #ee2526 !important;
}
.focus3 .btn:hover,
.focus3 .wp-block-button__link:hover {
  background-color: #ee2526 !important;
  color: #ffffff !important;
}

/* =====================================
   3. PAGE CONTENT TYPOGRAPHY
   ===================================== */
.page-content {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  word-spacing: 0.16em;
  color: #333333;
  /* HEADINGS CONFIGURATION */
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700; /* Bolder for restaurant feel */
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}
.page-content {
  /* COLORS */
}
.page-content h1, .page-content h2 {
  color: #ee2526;
}
.page-content { /* Feasta Red */ }
.page-content h3 {
  color: #1C1C1C;
}
.page-content h4, .page-content h5, .page-content h6 {
  color: #333333;
}
.page-content {
  /* PARAGRAPHS */
}
.page-content p {
  margin-top: 0;
  margin-bottom: 1em;
  color: #333333;
}
.page-content p + p {
  margin-top: 1em;
}
.page-content {
  /* LISTS */
}
.page-content ul, .page-content ol {
  margin-top: 0.75em;
  margin-bottom: 1em;
  padding-left: 1.25em;
}
.page-content li {
  margin-bottom: 0.5em;
}
.page-content {
  /* Responsive Line-Height */
}
@media (min-width: 900px) {
  .page-content {
    line-height: 1.55;
  }
}

/* =====================================
   4. HERO SLIDER (Re-implemented)
   ===================================== */
.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
}
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }
}
.hero-section {
  /* Ensure all headers and text in hero are white */
}
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4, .hero-section h5, .hero-section h6, .hero-section p {
  color: #ffffff !important;
}
.hero-section h1 {
  font-size: 2rem;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* 60% Black overlay for high contrast against logo */
}

/* Original Hero Logo Sizing */
.hero-logo {
  max-width: 500px;
  height: auto;
  animation: fadeIn 0.5s ease-in-out forwards;
  opacity: 0;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .hero-logo {
    max-width: 80%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =====================================
   5. THE FOCUS SYSTEM
   ===================================== */
.focus1, .focus2, .focus3 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  box-sizing: border-box;
  overflow: hidden;
}

.focus1 > *, .focus2 > *, .focus3 > * {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* Focus Typography Overrides */
.focus1 h1, .focus1 h2, .focus1 h3, .focus2 h1, .focus2 h2, .focus2 h3, .focus3 h1, .focus3 h2, .focus3 h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.focus1 h1, .focus2 h1, .focus3 h1 {
  font-size: 4rem;
  color: #ffffff !important;
}
.focus1 h2, .focus2 h2, .focus3 h2 {
  font-size: 3.5rem;
  color: #ffffff !important;
}
.focus1 h3, .focus2 h3, .focus3 h3 {
  font-size: 2.5rem;
  color: #ee2526 !important;
}
.focus1 p, .focus2 p, .focus3 p {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* --- FOCUS 1: Parallax (Dark Content Area) --- */
.focus1 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.focus1 h1, .focus1 h2, .focus1 h3 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.focus1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Darkened for readability */
  z-index: 1;
}
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
  .focus1 {
    background-attachment: scroll !important;
    background-position: center center !important;
  }
}

/* --- FOCUS 2: Gradient (Red Theme) --- */
.focus2 {
  background: linear-gradient(135deg, #ee2526 0%, #b51c1c 100%);
}
.focus2 h1, .focus2 h2, .focus2 h3 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.focus2 h3 {
  color: #ffffff !important;
}
.focus2 { /* Make h3 white on red background */ }

/* --- FOCUS 3: Light Theme --- */
.focus3 {
  background-color: #f9f9f9; /* Off-white background */
  color: #1C1C1C !important;
  /* Revert text colors for light background */
}
.focus3 h1, .focus3 h2 {
  color: #1C1C1C !important;
  text-shadow: none !important;
}
.focus3 h3 {
  color: #ee2526 !important;
  text-shadow: none !important;
}
.focus3 p, .focus3 strong, .focus3 b {
  color: #333333 !important;
  text-shadow: none !important;
}

/* --- COMPONENT: Focus Borders --- */
.focus-border {
  border: 1px solid rgba(28, 28, 28, 0.2);
  border-radius: 15px;
  padding: 2rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.focus-border:hover {
  border-color: #ee2526;
  background-color: rgba(238, 37, 38, 0.05);
  box-shadow: 0 0 15px rgba(238, 37, 38, 0.2);
  transform: translateY(-2px);
}

/* --- COMPONENT: Focus List Cards --- */
.focus-list,
.focus1 .wp-block-list,
.focus2 .wp-block-list,
.focus3 .wp-block-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.focus-list li,
.focus1 .wp-block-list li,
.focus2 .wp-block-list li {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.focus-list li:hover,
.focus1 .wp-block-list li:hover,
.focus2 .wp-block-list li:hover {
  border-color: #ee2526;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(238, 37, 38, 0.4);
  transform: translateY(-2px);
}

.focus3 .wp-block-list li {
  border-color: rgba(28, 28, 28, 0.15) !important;
  color: #1C1C1C;
}
.focus3 .wp-block-list li:hover {
  border-color: #ee2526 !important;
  background-color: rgba(238, 37, 38, 0.05) !important;
}

/* Nested List Reset */
.focus-list li ul, .focus1 .wp-block-list li ul, .focus2 .wp-block-list li ul, .focus3 .wp-block-list li ul {
  display: block;
  list-style: disc !important;
  padding-left: 20px !important;
  margin-top: 10px !important;
}
.focus-list li ul li, .focus1 .wp-block-list li ul li, .focus2 .wp-block-list li ul li, .focus3 .wp-block-list li ul li {
  border: none !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
  display: list-item;
}

/* --- BACKGROUND IMAGES --- */
.bg1 {
  background-image: url("https://cdn.greenphoenixny.com/feasta2/uploads/2026/03/Chicken_Fingers_and_Fries.jpg");
}

.bg2 {
  background-image: url("https://cdn.greenphoenixny.com/feasta2/uploads/2026/03/Diablo_Pizza.jpg");
}

.bg3 {
  background-image: url("https://cdn.greenphoenixny.com/feasta2/uploads/2026/03/Pasta_Meatball.jpg");
}

.bg4 {
  background-image: url("https://cdn.greenphoenixny.com/feasta2/uploads/2026/03/Sausage_Peppers_and_Onion_Sub.jpg");
}

/* =====================================
   6. NAV & FOOTER
   ===================================== */
header {
  height: auto;
  background-color: #ffffff;
}
header .container-fluid {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  header .container-fluid {
    width: 100% !important;
  }
}
header .container-fluid nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem !important;
  /* Logo Sizing Re-implemented */
}
header .container-fluid nav.navbar img {
  max-width: 250px;
  height: auto;
}
header .container-fluid nav.navbar {
  /* NAV LINKS */
}
header .container-fluid nav.navbar #navbarNavDropdown ul#menu-main-nav {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
header .container-fluid nav.navbar #navbarNavDropdown ul#menu-main-nav li {
  padding: 0 15px !important;
  list-style: none;
}
header .container-fluid nav.navbar #navbarNavDropdown ul#menu-main-nav li a {
  font-family: "Montserrat", sans-serif;
  color: #ffffff !important; /* White Default */
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
header .container-fluid nav.navbar #navbarNavDropdown ul#menu-main-nav li a:hover {
  color: #ee2526 !important; /* Feasta Red Hover */
}

@media (max-width: 768px) {
  header nav.navbar {
    flex-direction: column;
    align-items: center;
  }
  header #navbarNavDropdown ul#menu-main-nav {
    flex-direction: column;
    text-align: center;
  }
  header #navbarNavDropdown ul#menu-main-nav li {
    padding: 10px 0 !important;
  }
  header .navbar img {
    margin-bottom: 15px;
  }
}
.navbar-toggler {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.footer-copyright-section {
  padding: 40px 0 !important;
  text-align: center;
  background-color: #111; /* Dark Footer */
  color: #ffffff;
  /* Footer Logo sizing fallback */
}
.footer-copyright-section .footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer-copyright-section .footer-logo {
    max-width: 200px;
  }
}

/* --- UTILITY: Hide text visually but keep for SEO/Screen Readers --- */
.seo-icon {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================
   HERO & FOOTER LINKS 
   ===================================== */
/* 1. Hero Section Links (White -> Feasta Red) */
/* The Hero has a dark overlay, so these stay white */
.hero-section a:not(.btn) {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero-section a:not(.btn):hover {
  color: #ee2526 !important; /* Feasta Red */
}

/* 2. Footer Section Links (Dark -> Feasta Red) */
.footer-copyright-section a:not(.btn) {
  color: #ee2526 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-copyright-section a:not(.btn):hover {
  color: #333333 !important;
}

/* Social Icons specific hover tweak */
.footer-social a i {
  /* Set default color to Feasta Red (matches the inline style we added) */
  color: #ee2526 !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover i {
  /* Darken the red slightly on hover, and add a little lift */
  color: rgb(184.1404255319, 14.3595744681, 15.2042553191) !important;
  transform: translateY(-2px);
}

/* =====================================
   PANORAMA ROW
   ===================================== */
.panorama-row {
  background-image: url("https://cdn.greenphoenixny.com/feasta2/uploads/2026/03/Diablo_Pizza.jpg"); /* Replaced with Pizza Image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px; /* Fixed height strip */
  width: 100%;
  display: block;
  background-attachment: fixed; /* Added parallax to panorama */
  /* Hide on Mobile */
}
@media (max-width: 768px) {
  .panorama-row {
    display: none;
  }
}

.single-column-section h1, .single-column-section h2, .single-column-section h3, .single-column-section h4, .single-column-section h5, .single-column-section h6, .single-column-section p, .single-column-section a {
  color: #ffffff !important;
}
.single-column-section a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=custom-styles.css.map */