/* ==========================================================================
   BASE STYLES
   ========================================================================== */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
              url('bg4.png') center/cover no-repeat;
}

.hero h1, 
.hero h2 {
  text-align: left;
  padding-left: 12px;
  line-height: 1;
  margin: 0;
}

.hero h1 {
  font-size: 3rem;
}

.hero h2 {
  font-size: 2.1rem;
  color: #f8ade1c6;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  /* top, right, bottom, left */
  padding: 20px 20px 0 20px; 
}

/* ==========================================================================
   ICONS
   ========================================================================== */
.icon-img, 
.icon-img2 {
  object-fit: contain;
  margin-bottom: 5px;
}

.icon-img  { width: 50px; height: 50px; }
.icon-img2 { width: 40px; height: 40px; }

/* ==========================================================================
   SQUARE BUTTONS (CARDS)
   ========================================================================== */
.card-btn, 
.card-btn2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.322);
}

.card-btn {
  height: 120px;
  color: #ffffff;
  background: rgba(238, 172, 230, 0.178);
}

.card-btn2 {
  height: 90px;
  margin-top: -10px;
  color: #f1be87;
  background: rgba(233, 187, 108, 0.557);
}

.card-btn p, 
.card-btn2 p {
  margin: 0;
}

.card-btn p  { font-size: 14px; }
.card-btn2 p { font-size: 12px; }

.card-btn:hover, 
.card-btn2:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   HORIZONTAL BUTTONS
   ========================================================================== */
.btn-custom, 
.btn-custom2 {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.btn-custom {
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.2); /* Adjusted from 1.9 for a more natural pop */
}

.btn-custom:active {
  transform: translateY(-1px);
}

/* Color Palette */
.btn-violet { background: #d6b3ff; }
.btn-orange { background: #ffa94d; }
.btn-green  { background: #8ce99a; }
.btn-pink   { background: #f245fb; }
.btn-pink2  { background: #f18af7; }
.btn-pink3  { background: #c870b4; }
.btn-blue   { background: #4588fb; }
.btn-brown1 { background: #8a6240; }
.btn-brown2 { background: #633d23; }
.btn-brown3 { background: #865534; }
.btn-brown4 { background: #836637; }

/* ==========================================================================
   MODALS & GLASSMORPHISM
   ========================================================================== */
.glass-modal {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  border: none;
  color: rgba(255, 255, 255, 0.85);
}

.menu-link {
  display: block;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.329);
  transition: background 0.3s;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.4);
}

.back-btn {
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
}

.cancel-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(244, 86, 86, 0.65);
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.cancel-btn:hover {
  background: rgba(255, 0, 0, 0.9);
}

.modal-backdrop.show {
  opacity: 0.9;
  background-color: #000;
  backdrop-filter: blur(80px);
}

/* ==========================================================================
   CAROUSEL & LAYOUT UTILITIES
   ========================================================================== */
.carousel {
  margin-bottom: 5px !important;
}

.carousel-inner {
  cursor: grab;
}

.carousel-inner:active {
  cursor: grabbing;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s;
}

.carousel-item img:hover {
  transform: scale(1.05);
}

.custom-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  margin-bottom: 10px;
}

.new-acquisitions-title {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.row.mt-4, 
.button-grid-container {
  margin-top: -20px !important;
}

/* ==========================================================================
   VERTICAL LINE
   ========================================================================== */

/* This targets the row containing the 4 main buttons */
.row.g-3 {
    position: relative;
}

.row.g-3::after {
    content: "";
    position: absolute;
    top: 10%;      /* Adjust to make line shorter/longer */
    bottom: 45%;   /* Adjust based on where your horizontal divider starts */
    left: 50%;
    width: 1px;
    background-color: rgba(248, 179, 110, 0.653); 
    transform: translateX(-50%);
}

/* ==========================================================================
  expandable links
   ========================================================================== */

/* Style for the expandable links */
.menu-link {
    text-decoration: none;
    color: #5d4037; /* Brown color to match your theme */
    background: rgba(255, 255, 255, 0.5);
    padding: 5px;
    border-radius: 8px;
    transition: background 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    font-weight: bold;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.222);
    color: #000;
}

/* Optional: Rotate the arrow when expanded */
.menu-link[aria-expanded="true"] {
    background: #8d6e63;
    color: white;
}

/* Background for the revealed content */
.collapse.show {
    background-color: rgba(58, 27, 5, 0.205) !important;
    border-left: 4px solid #8d6e63;
}

/* Target the content inside the expanded area */
.collapse {
    font-size: .2 rem; /* Makes it about 13.6px */
    line-height: 1.2;    /* Improves readability for smaller text */
    color: #cdc4c4;        /* Softens the color slightly so it looks secondary */
}

