:root {
  --flo-black: #000000;
  --flo-white: #fff;
  --flo-gold: #C89A4B;
  --flo-champagne: #D4B483;
  --flo-wgray: #E5E5E5;
  --flo-charcoal: #333333;
  --flo-dark: #171717;
  --flo-burgundy: #800020;
  --flo-cream: #FAF3E0;
  --flo-expresso: #4B2E05;
  --flo-taupe: #CBB89D;
  --flo-rose: #CFAF9E;
  --flo-terracotta: #C86B4A;
  --flo-deepred: #A63A3A;
  --flo-offwhite: #F8F8F8;
  --flo-mblue: #1F2A5A;
  --flo-palegold: #D6C48B;
  --flo-beige: #EADAC0;
  --flo-navy: #1C1F33;
}

/* ==================== Text Colors ==================== */
.text-black { color: var(--flo-black) !important; }
.text-white { color: var(--flo-white) !important; }
.text-gold { color: var(--flo-gold) !important; }
.text-champagne { color: var(--flo-champagne) !important; }
.text-wgray { color: var(--flo-wgray) !important; }
.text-charcoal { color: var(--flo-charcoal) !important; }
.text-burgundy { color: var(--flo-burgundy) !important; }
.text-cream { color: var(--flo-cream) !important; }
.text-expresso { color: var(--flo-expresso) !important; }
.text-taupe { color: var(--flo-taupe) !important; }
.text-rose { color: var(--flo-rose) !important; }
.text-terracotta { color: var(--flo-terracotta) !important; }
.text-deepred { color: var(--flo-deepred) !important; }
.text-offwhite { color: var(--flo-offwhite) !important; }
.text-mblue { color: var(--flo-mblue) !important; }
.text-palegold { color: var(--flo-palegold) !important; }
.text-beige { color: var(--flo-beige) !important; }
.text-navy { color: var(--flo-navy) !important; }

/* ==================== Background Colors ==================== */
.bg-black { background-color: var(--flo-black) !important; }
.bg-white { background-color: var(--flo-white) !important; }
.bg-gold { background-color: var(--flo-gold) !important; }
.bg-champagne { background-color: var(--flo-champagne) !important; }
.bg-wgray { background-color: var(--flo-wgray) !important; }
.bg-charcoal { background-color: var(--flo-charcoal) !important; }
.bg-burgundy { background-color: var(--flo-burgundy) !important; }
.bg-cream { background-color: var(--flo-cream) !important; }
.bg-expresso { background-color: var(--flo-expresso) !important; }
.bg-taupe { background-color: var(--flo-taupe) !important; }
.bg-rose { background-color: var(--flo-rose) !important; }
.bg-terracotta { background-color: var(--flo-terracotta) !important; }
.bg-deepred { background-color: var(--flo-deepred) !important; }
.bg-offwhite { background-color: var(--flo-offwhite) !important; }
.bg-mblue { background-color: var(--flo-mblue) !important; }
.bg-palegold { background-color: var(--flo-palegold) !important; }
.bg-beige { background-color: var(--flo-beige) !important; }
.bg-navy { background-color: var(--flo-navy) !important; }
.bg-dark { background-color: var(--flo-dark) !important; }

/* ==================== Fonts ==================== */
@font-face {
  font-family: 'floparis';
  src: url('../fonts/Didot.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.flo-font {
  font-family: 'floparis', serif;
}

/* ==================== Placeholder ==================== */
.lazy-portrait {
  background: url('../images/placeholder.jpg') center center no-repeat;
  background-size: cover;  
  min-width: 180px; 
  min-height: 180px;   
}

/* ==================== Full Bg ==================== */
body {
  background-image: url("../images/coffeebeans-bg.webp");
  background-repeat: repeat;         
  background-size: auto;             
  background-position: top left;     
  background-attachment: fixed;      
  margin: 0;
  padding: 0;
}

/* ==================== CTA Buttons ==================== */
.cta-btn {
  background-color: #C89A4B;
  color: #000;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #a37d3c;
  color: #000;
}

.cta-btn1 {
  display: flex;
  justify-content: center; 
  align-items: center;       
  max-width: 400px; 
  width: 200px;            
  height: 48px;              
  background-color: transparent;
  color: #F8F8F8;
  border: 2px solid #F8F8F8;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.cta-btn1:hover {
  background-color: #F8F8F8;
  color: #000;
}

a.special-link:hover {
  color: #C89A4B !important;
}

/* ==================== Navigation ==================== */
.custom-toggler {
  border: none;
  outline: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-link {
  position: relative;
  color: #F8F8F8 !important;
  padding-bottom: 2px; 
  font-size: 20px;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #C89A4B; 
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #C89A4B !important;
}

/* ==================== Card ==================== */
.flo-card {
  position: relative;          
  overflow: hidden;             
  background-color: #fff;
  border-left: 8px solid #C6A664;
  border-right: 8px solid #C6A664;
  padding: 0;                   
  height: 797px;             
}

.flo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.flo-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); 
  z-index: 1;
}

.flo-card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  background: rgba(0,0,0,0.55);  
  padding: 1.25rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(2px);     
  -webkit-backdrop-filter: blur(2px);
}

.flo-card-content h1 {
  font-size: 6rem;            
  letter-spacing: 0.15rem;    
  margin-bottom: 0.5rem;
}

.flo-card-content h2 {
  font-size: 4rem;
  letter-spacing: 0.7rem;     
  margin-bottom: 0.75rem;
}

.flo-card-content h3 {
  font-size: 2rem;
  letter-spacing: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.8);
  padding-top: 0.6rem;
  display: inline-block;      
}

.flo-card-content p {
  font-size: 2rem;
  letter-spacing: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.8);
  padding-top: 0.6rem;
  display: inline-block;      
}

.flo-card1 {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border-left: 8px solid #C6A664;
  border-right: 8px solid #C6A664;
  /* background: #111; keeps text readable */
  color: #f8f9fa;            
}

/* ============================================================= MENU STUFF ============================================================= */
.caption-bottom-right {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 1rem;
}

.carousel-caption.bottom-center {
  position: absolute;
  bottom: 40px; /* distance from bottom */
  left: 50%;    /* center horizontally */
  transform: translateX(-50%); /* true centering */
  right: auto !important;
  max-width: 400px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  background: rgba(0,0,0,0.6);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}

.carousel-caption.bottom-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: auto !important;
  transform: none;
  max-width: 400px;
  margin: 0;
  text-align: center;         
  background: rgba(0,0,0,0.6);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  width: fit-content;
}

.carousel-caption.bottom-right h3 {
  font-weight: 700;
  color: #fff;
  line-height: 1;        
  margin: 0;             
  display: flex;         
  align-items: center;   
  justify-content: center;
  height: 100%;         
}

/* Carousel Buttons with light background */

.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(245, 241, 233, 0.5); 
  border-radius: 50%; 
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(245, 241, 233, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 241, 233, 0.5);
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn.prev {
  left: 70px; 
}

.carousel-btn.next {
  right: 70px; 
}

.carousel-btn:hover {
  background: rgba(245, 241, 233, 0.5);
}

.carousel-caption.bottom-right h3 {
  font-weight: 700;
  color: #fff;
}

.carousel-caption.bottom-right p {
  color: #fff;
  margin-bottom: 0.5rem;
}

.carousel-caption.bottom-right .badge {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
}

@media (max-width: 768px) {
  .carousel-caption.bottom-right {
    bottom: 20px;
    right: 20px;
    max-width: 90%;
    width: auto;
    padding: 0.8rem;
    text-align: center;
  }

  .carousel-caption.bottom-right h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.carousel-item img {
  width: 100%;
  height: 92vh; 
  object-fit: cover;
}


.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #C89A4B;
  --bs-btn-border-color: #C89A4B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #C89A4B;
  --bs-btn-hover-border-color: #C89A4B;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #C89A4B;
  --bs-btn-active-bg: #C89A4B;
  --bs-btn-active-border-color: #C89A4B;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #C89A4B;
  --bs-btn-disabled-border-color: #C89A4B;
}
.text-red {
  color: #cc0000;
}
.myday {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
}
.mydaydisable {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
  background-color: #E9EAEB;
}