/* ===== Global ===== */
:root {
  --primary: #ffc107;
  --dark: #111;
  --light: #f8f9fa;
  --transition: all 0.3s ease;
}

body {
  font-family: Arial, sans-serif;
  margin-top: 70px;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Premium Navbar Styling */
.premium-navbar {
  background-color: #000000 !important; /* pure black */
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #111; /* softer luxury border */
  z-index: 9999;
}

.premium-navbar .nav-link {
  color: #ffffff;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.premium-navbar .nav-link:hover {
  color: #ffc107; /* gold hover */
}

.premium-navbar .nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #ffc107;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.premium-navbar .nav-link:hover::after {
  width: 100%;
}

.premium-navbar .navbar-brand {
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.premium-navbar .btn-warning {
  font-weight: 600;
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
}

.premium-navbar .btn-warning:hover {
  background-color: #e6b800;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .premium-navbar .nav-link {
    padding: 0.5rem 0;
    text-align: center;
  }
}
/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-image: url('/assets/images/howto.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.5)
  );
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero p {
  max-width: 700px;
  margin: auto;
}

/* ===== Cards ===== */
.card {
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.card img {
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* ===== Buttons ===== */
.btn-warning {
  font-weight: 600;
  transition: var(--transition);
}

.btn-warning:hover {
  transform: translateY(-2px);
}

/* ===== Footer ===== */
footer {
  background: var(--dark);
}

footer a {
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ===== Weather ===== */
#weather {
  font-style: italic;
  opacity: 0.85;
  font-size: 0.85rem;
  user-select: none;
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  body {
    margin-top: 60px;
  }

  .hero {
    padding: 70px 15px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}

