/* CSS Variables */
:root {
  --animate-delay: 0.3s;
}

/* Navigation */
.navbar-brand {
  color: #fdf5df;
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler i {
  color: #fdf5df;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.navbar-toggler i:hover {
  opacity: 1;
}

/* Custom Offcanvas */
.custom-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(20px);
  background: rgba(24, 24, 24, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease-in-out, visibility 0.75s ease-in-out;
}

.custom-offcanvas.active {
  opacity: 1;
  visibility: visible;
}

.btn-close-custom {
  position: absolute;
  top: 2.5rem;
  right: 4rem;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 1.75rem;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #fdf5df;
}

.btn-close-custom:hover {
  opacity: 1;
}

.btn-close-custom:focus {
  outline: none;
  box-shadow: none;
}

.offcanvas-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.custom-offcanvas .navbar-nav {
  padding: 0;
  text-align: center;
}

.custom-offcanvas .nav-item {
  margin-bottom: 2rem;
}

.custom-offcanvas .nav-link {
  color: #fdf5df !important;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.custom-offcanvas .nav-link:hover {
  transform: scale(1.1);
}

/* Hero Section */
#hero {
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.5);
  pointer-events: none;
  z-index: 2;
}

#hero .carousel-item img {
  object-fit: cover;
}

/* Hero Content */
#hero-content {
  color: white;
  text-shadow: 2px 2px 4px rgba(24, 24, 24, 0.8);
  min-height: 30vh;
  z-index: 3;
}

#hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  font-size: calc(2 * 2vw);
}

#hero-content .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #fdf5df;
  color: #fdf5df;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-shadow: none;
}

#hero-content .btn:hover {
  transform: translateY(-5px);
  background: #fdf5df;
  color: #181818;
}


@media (max-width: 768px) {
  #hero-content h1 {
    font-size: calc(4 * 2vw);
  }
}

/* footer */
footer {
    z-index: 2;
    color: #fdf5df;
}
