/* =========================================
   IMPORT GOOGLE FONTS
========================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* =========================================
   ROOT VARIABLES
========================================= */
:root {
  --hero-height: min(82vh, 820px);
  --radius-xxl: 1.25rem;

  /* =========================================
     COLOR VARIABLES
  ========================================= */

  --color-black: #323937;
  --color-white: #fff;
  --color-gray-50: #fbf9fa;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #f2edee;
  --color-gray-400: #4b5563;
  --color-gray-800: #1f2937;
  --color-gray-900: #101828;
  --color-primary: #323937;
  --color-secondary: #fff;
  --color-overlay-dark: rgba(0, 0, 0, 0.75);
  --color-overlay-light: rgba(0, 0, 0, 0.2);
  --color-overlay-gradient-dark: rgba(0, 0, 0, 0.55);
  --color-shadow: rgba(0, 0, 0, 0.3);
--background-tan: #F5F1E8;
--dark-tan: #E5E2DB;


    /* New Color Variables */

    --color-iron: #323937;
    --color-oak: #BEA876;
    --color-teal: #214446;

}

/* =========================================
   GLOBAL RESET & BASE STYLES
========================================= */
* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-tan) !important;
  color: var(--color-black);
}



a {
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Aleo", serif;
  font-optical-sizing: auto;
  font-weight: 600;
}



.rounded {
  border-radius: 1.25rem !important;
}

p,
li,
a,
span,
div,
input,
textarea,
button,
label {
  font-family: "Montserrat", sans-serif;
}


hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    
}

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

/* footer {
  color: white;
  background: var(--color-black);
} */

footer {
  color: white;
  background: var(--color-iron);
}

footer li {
  font-size: 16px !important;

}

footer .logo {
 width: 80%;

}

footer .container,
footer .row,
footer .col,
footer div {
  background-color: transparent !important;
}




/* =========================================
   LAYOUT UTILITIES
========================================= */
.container {
  max-width: 1250px;
  margin: auto;
  padding: 0 40px;
}
.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}


.text-muted {
  --bs-text-opacity: unset !important;
  color: unset !important;
  color: var(--color-black) !important;
}


.bg-white {
  background-color: white !important;
}


.bg-light {
  background-color: var(--background-tan) !important;
}

.dark-tan {
  background-color: var(--dark-tan) !important;
}


.navbar .phone-number {
  font-family: "Montserrat", sans-serif;
  color: var(--color-black) !important;
}

/* =========================================
   NAVBAR STYLES
========================================= */
.navbar .ml-steaks-logo {
  height: 80px;
}

.navbar .nav-link {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-black) !important;
}




/* =========================================
   HERO SECTION
========================================= */
.hero {
  height: var(--hero-height);
}

.hero-header-text {
  font-weight: 500;
  line-height: 1.2;
}


.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-overlay-light),
    var(--color-overlay-gradient-dark)
  );
  border-bottom-left-radius: var(--radius-xxl);
  border-bottom-right-radius: var(--radius-xxl);
}
header.hero .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* =========================================
   SECTION HEADINGS & TEXTS
========================================= */
.section_heading {
  color: var(--color-black);
  font-size: 2.25rem;
}
.section_desc {
  max-width: 48rem;
  margin: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--color-gray-400);
}

/* =========================================
   CAROUSEL
========================================= */
.carousel img {
  height: 400px;
  object-fit: cover;
}




/* =========================================
   BUTTON STYLES
========================================= */
.btn_common {
  display: inline-flex;
  padding: 0 1.5rem;
  border: none;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.375rem;
  outline: none;
  height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark button */
.btn_dark {
  background-color: var(--color-black);
  color: var(--color-white);
}
.btn_dark:hover {
  background-color: var(--color-gray-800);
}

/* Light button */
.btn_light {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn_light:hover {
  background-color: var(--color-gray-200);
}




/* =========================================
   LIST GROUP ITEMS
========================================= */
.list-group-item {
  background: var(--color-gray-50);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 24px;
}

/* =========================================
   ABOUT SECTION
========================================= */
.heading-h3 {
  font-size: 1.875rem;
  color: var(--color-black);
}
.about-section img {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.about-body {
  font-size: 1rem;
  line-height: 1.6;
}
.about-body strong {
  font-weight: 600;
}




/* =========================================
   UTILITIES
========================================= */
.object-fit-cover {
  object-fit: cover;
}
.rounded-4 {
  border-radius: var(--radius-xxl) !important;
}

/* =========================================
   HAPPY HOUR SECTION
========================================= */
.happy-hour-section {
    background-color: var(--color-black);
    padding: 8rem 0;
    margin-bottom: 7rem !important;
}
.card-custom {
  border-radius: 1rem;
  padding: 24px;
  height: 294px;
}
.card-custom .icons svg {
  width: 40px;
  height: 40px;
}
.icon-large {
  font-size: 3rem;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

/* =========================================
Specials
========================================= */


#specials {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                    url('../img/cr-steakhouse-steak-dinner-altamonte-springs.png');
  background-size: cover;
  background-position: center;
}

/* =========================================
   PARTIES & EVENTS SECTION
========================================= */
.parties-events-section {
  /* padding: 80px 0; */
  min-height: 400px;
}

/* #parties-events .ready-plan-form {
padding: 0rem 3rem;
} */

 .ready-plan-form {
padding: 0rem 3rem;
}






.parties-events-section svg {
  width: 24px;
  height: 24px;
  /* margin-right: 0.5rem; */
}
.parties-events-section img {
  border-radius: 10px;
}
.parties-events-section h3 {
  font-size: 1.875rem;
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-tan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}
.icon-circle svg {
  width: 24px;
  height: 24px;
  color: var(--color-black);
}


.accordion-button:not(.collapsed) {

    background-color: var(--color-gray-300);
}



.three-photos-section  {
  margin-bottom: 120px !important;
}


/* ========== PERFECT FOR ANY OCCASION ======== */

.pefect-occasion svg {

  margin-right: 0.5rem;

}




/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  background-color: var(--color-gray-50);
  padding: 80px 0;
}
.contact-section img {
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}
.contact-section i {
margin-right: 10px;
padding-top: 2px;
}


/* =========================================
MENU WEB PAGE
========================================= */


#menu  {
  padding-top: 80px !important;
  min-height: 30rem !important;


}

#menu-page #menu-food-pics {
  margin: 4rem 0;
}







/* =========================================
   DAILY SPECIALS
========================================= */
.daily-specials-section {
  padding: 48px 0;
}

/* =========================================
   SPECIAL HERO
========================================= */
.specials-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black);
  overflow: hidden;
}
.specials-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.specials-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  padding: 0 1rem;
}
.specials-hero .hero-heading {
  font-size: 3rem;
  font-weight: 700;
}
.specials-hero .hero-subtext {
  font-size: 1.25rem;
  font-weight: 400;
}

/* =========================================
   SPECIAL CARD
========================================= */
.special-card {
  position: relative;
  height: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem var(--color-shadow);
}
.special-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlays */
.overlay {
  position: absolute;
  inset: 0;
  color: var(--color-white);
}
.overlay-dark-right {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    transparent
  );
}
.overlay-dark-top {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
}
.overlay-dark-left {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    transparent
  );
}
.content-box {
  position: relative;
  z-index: 1;
}
.text-shadow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* =========================================
   HAPPY HOUR (IMAGE BACKGROUND)
========================================= */
.happy-hour {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 48px 0;
}
.happy-hour img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.happy-hour::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
  z-index: 1;
}
.happy-hour .content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
}
.happy-hour .date {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}
.happy-hour h2 {
  font-weight: 700;
}
.happy-hour h3 {
  font-size: 1.5rem;
}

/* =========================================
   ICONS & LISTS
========================================= */
.icon {
  color: var(--color-white);
  width: 32px;
  height: 32px;
}
.list-unstyled li {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

/* =========================================
   EVENT SPACE SECTION
========================================= */
.event-space-section {
  padding: 80px 0;
}
.event-space-section .card {
  transition: box-shadow 0.3s ease;
}
.event-space-section .card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
.event-space-section .card .badge {
  display: inline-flex;
  overflow: hidden;
  padding: 0.125rem 0.5rem;
  margin-bottom: 0.75rem;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--color-gray-300);
  color: var(--color-black);
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */
.testimonial-section {
  padding: 80px 0;
  margin-bottom: 8rem;
}
.testimonial-section p {
  text-align: center;
}
.testimonial-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}



/* =========================================
 Keep it Easy
========================================= */


#parties-events .keep-it-easy  {
margin-bottom: 8rem !important;
}


/* =========================================
   EVENT FORM SECTION
========================================= */




.event-form-section {
  padding: 80px 0;
  background: var(--color-gray-50);
}
.event-form-section .header h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-black);
}
.event-form-section .header p {
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--color-gray-400);
}
.form-control {
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.event-form-section .form-label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  user-select: none;
}
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
  border-color: var(--color-black);
}
.btn-dark {
  transition: background-color 0.3s ease;
  background-color: var(--color-black);
}
.btn-dark:hover {
  background-color: #333;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  padding: 80px 0;
}
.faq-section .header h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-black);
}
.faq-section .header p {
  max-width: 48rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--color-gray-400);
}
.faq-section .accordion-button::after {
  background-size: 0.875rem;
}

/* =========================================
   CONTACT FORM SECTION
========================================= */
.contact-form-section {
  padding: 80px 0;
  background: var(--color-gray-50);
}

/* =========================================
   VIP CLUB SECTION
========================================= */
.vip-club-section {
  padding: 80px 0;
  background: var(--color-gray-50);
}

/* =========================================
   MAP SECTION
========================================= */
.map-section {
  padding: 80px 0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
}

/* =========================================
   FOOTER
========================================= */
.footer li {
  font-size: 0.875rem;

}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */
@media (max-width: 768px) {

  /* ========*** HOME PAGE ***========  */
  
  /* ===== ABOUT === */
  
  #about .icon-group {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  /* ===== READY TO PLAN FORM === */
  
  
  #parties-events .ready-plan-form {
    padding: 3rem 0rem;
  }
  
  
  
  
  .happy-hour .date {
    font-size: 1rem;
  }
  
  
  /* ===== READY TO PLAN FORM === */

  
#menu-page #menu-food-pics {
  margin: 4rem 0 2rem;
}

#menu-page #menu-food-pics img {
  margin-bottom: 2rem;
}


  
}
@media (min-width: 768px) {
  .happy-hour h2 {
    font-size: 3.5rem;
  }
  .specials-hero .hero-heading {
    font-size: 3.5rem;
  }
  .specials-hero .hero-subtext {
    font-size: 1.5rem;
  }
}
