/* ----------------------
   Base Typography & Body
---------------------- */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f6;
  color: #222;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  cursor: url('data:image/svg+xml;utf8,<svg fill="black" height="16" width="16" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="3"/></svg>'), auto;
}
body.loaded {
  opacity: 1;
}

h1, h2, h3, h5 {
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* ----------------------
   Navigation Styling
---------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 999;
}

.site-header .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .nav-link {
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #222;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

#authControls a,
#authControls button {
  white-space: nowrap;
}

/* ----------------------
   Buttons
---------------------- */
.btn-outline-light:hover,
.btn-outline-dark:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* ----------------------
   Welcome Message
---------------------- */
#welcomeMsg {
  display: none;
  background-color: #d4af37;
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ----------------------
   Footer (Minimal)
---------------------- */
.site-footer {
  background-color: #f3f3ef;
  padding: 40px 20px;
  font-size: 15px;
  color: #666;
  border-top: 1px solid #e0e0dc;
}

.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-nav a {
  margin-left: 20px;
  color: #555;
  transition: color 0.2s ease;
}

.site-footer .footer-nav a:hover {
  color: #000;
}

.social-icon {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #555;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: #000;
}

/* ----------------------
   Image & Section Effects
---------------------- */
.image-feature {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.image-feature:hover {
  transform: scale(1.035);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Glass section */
.glass-section {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ----------------------
   Responsive Layout
---------------------- */
@media (max-width: 768px) {
  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-nav a {
    margin: 10px;
  }
}

/* Typography overrides */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f7f3;
  color: #333;
}

h1, h2, h5 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Navbar background */
.navbar {
  background-color: #fff;
}

/* Hero section */
.hero {
  background: url('/img/hero-background.jpg') no-repeat center center/cover;
  min-height: 80vh;
}

.hero h1 {
  font-size: 3.2rem;
}

.hero .btn {
  padding: 12px 32px;
  border-radius: 32px;
}

/* Image feature cards */
.image-feature {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.image-feature:hover {
  transform: scale(1.035);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.image-feature img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer refinements */
.site-footer {
  font-size: 0.9rem;
}

.footer-nav a {
  color: #DDE5B6;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #111;
}

/* ---------------------------
   Luxury Beige Button Styles
----------------------------*/

/* Profiel button (subtle outline) */
.btn-beige-outline {
  background-color: transparent;
  color: #5a5a50;
  border: 1px solid #c8c5b9;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-beige-outline:hover {
  background-color: #f0eee9;
  color: #333;
  border-color: #b3b1a7;
}

/* Uitloggen button (soft beige-filled version) */
.btn-beige-filled {
  background-color: #e8e6dc;
  color: #4d4d4d;
  border: 1px solid #d0cec4;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-beige-filled:hover {
  background-color: #dcdad0;
  color: #111;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

footer.site-footer {
  flex-shrink: 0;
}
