/* ===== Base Styles with Fluid Typography ===== */
.Text {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: bold;
}

.Info {
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  max-width: 800px;
}

/* ===== Responsive Background Images ===== */
.slider-wrapper .slider-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .slider-wrapper .slider-item::before {
    background-position: center top;
  }
  .slider-indicator {
    margin-left: 12vw;
}
  
}

@media (max-width: 768px) and (min-width: 481px) {
  .slider-wrapper .slider-item::before {
    background-position: center center;
    background-size: cover;
  }
  .slider-indicator {
    margin-left: 12vw;
}
}

@media (max-width: 480px) {
  .slider-wrapper .slider-item::before {
    background-position: center;
    background-size: cover;
  }
  .slider-indicator {
    margin-left: 12vw;
}
}

@media (max-width: 1536px) {
  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination {
    width: 100%;
  }
  .slider-indicator {
    margin-left: 12vw;
}
}

@media (max-width: 1024px) {
  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination {
    width: 100%;
  }
  .slider-wrapper .slider-item .slide-content > * {
    max-width: 66%;
  }
  .slider-navigations button {
    top: unset;
    bottom: -20px;
    background: none;
  }
  .slider-navigations button:hover {
    background: none;
  }
  .slider-navigations button.material-symbols-rounded {
    font-size: 30px !important;
  }
  .slider-indicator {
    margin-left: 12vw;
}
}

@media (max-width: 768px) and (min-width: 481px) {
  .slider-wrapper .slider-item .slide-content > * {
    max-width: 100%;
  }
  .slider-item .slide-content .Text {
    font-size: clamp(1.8rem, 6vw, 3rem);
    white-space: normal;
    padding-left: 20px;
    margin-top: 0;
  }
  .slider-item .slide-content .Info {
    font-size: clamp(0.85rem, 2vw, 1.2rem);
    white-space: normal;
    padding-left: 20px;
  }
  .slider-navigations button.material-symbols-rounded {
    font-size: 24px !important;
  }
  .slider-indicator {
    margin-left: 12vw;
}
}

@media (max-width: 480px) {
  .tab-text {
    font-size: 0.5rem;
  }
  .slider-item .slide-content .Text {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    white-space: normal;
    padding-left: 15px;
    margin-top: 0;
  }
  .slider-item .slide-content .Info {
    font-size: clamp(0.8rem, 3vw, 1rem);
    white-space: normal;
    padding-left: 15px;
  }
  .slider-indicator {
    margin-left: 12vw;
}
}

/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer Panel - Solid Image Background */
.drawer {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background-image: url("../IMAGES/Group\ 194\ \(3\).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000; /* fallback in case image fails */
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.drawer.open {
  left: 0;
}

/* Close Button */
.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
}

/* Drawer Tabs (Mobile Nav) */
.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.drawer-nav li {
  padding: 0.8rem 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.drawer-nav .tab-text {
  font-size: 1rem;
}

/* Toggle Button */
.drawer-toggle {
  display: none;
  position: fixed;
  top: 15px;
  left: 15px;
  background: #333;
  color: #fff;
  border: none;
  padding: 0.6rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
}

/* Mobile Only */
@media (max-width: 768px) {
  .drawer-toggle {
    display: block;
  }
  .slider-controls {
    display: none !important;
  }
}

/* Drawer Content Spacing */
.drawer-tabs {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-tabs .slider-tab {
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.drawer-tabs .slider-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.drawer-tabs .tab-text {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  display: block;
  line-height: 1.3;
}



/* Burger Menu Button */
.drawer-toggle {
  background: transparent; 
  color: white;             
  border-radius: 6px;
  font-size: 1.5rem;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover: Change icon color only */
.drawer-toggle:hover {
  color: #a35bbe; 
}

/* Click: Change icon color only */
.drawer-toggle:active {
  color: #a35bbe;
  transform: scale(0.95); /* Optional small click animation */
}

/* Drawer Close (X Button) */
.drawer-close {
  background: transparent;
  color: white;
  border-radius: 6px;
  font-size: 2rem;
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Hover: Change icon color only */
.drawer-close:hover {
  color: #a35bbe;
}

/* Click: Change icon color only */
.drawer-close:active {
  color: #a35bbe;
  transform: scale(0.95);
}
/* Hide burger when drawer is open */
.drawer.open ~ .drawer-toggle {
  display: none;
}
/* Hover or Active tab state */
.drawer-tabs .slider-tab:hover,
.drawer-tabs .slider-tab.active {
  background: rgba(255, 255, 255, 0.1);
}


























