/* ======== GENERAL STYLING ======== */
body {
  font-family: 'Rubik', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Headings */
h1, h5 {
  font-family: 'Playfair Display', serif;
}

/* ======== NAVBAR ======== */
.navbar {
    background-color: #121212 !important; 
    padding-top: 1.2rem;  
    padding-bottom: 1.2rem; 
  }
  
  .navbar-brand {
    font-weight: 500;
    font-size: 1.6rem; 
    letter-spacing: 0.5px;
  }
  
  .nav-link {
    font-weight: 400;
    margin-right: 20px;
    font-size: 1.05rem;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #e41e20 !important;
  }
  

/* ======== HERO SECTION ======== */
.hero {
  background: url('assets/images/alb_muse.jpg') no-repeat center 0%/cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  color: white;
}


.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

/* ======== CARDS ======== */
.card {
  border-radius: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-title {
  color: #e41e20;
  font-weight: bold;
}

.btn-outline-danger {
  border-color: #e41e20;
  color: #e41e20;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background-color: #e41e20;
  color: white;
}

/* ======== MODAL ======== */
.modal-content {
  border-radius: 1rem;
  padding: 1rem;
}

.modal-header,
.modal-footer {
  border: none;
}

/* ======== FOOTER ======== */
footer {
  background-color: #212529;
  font-size: 0.9rem;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e41e20;
}

/* detail‐section cards */
.detail-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* card titles */
.detail-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #121212;
}

/* paragraphs */
.detail-card .card-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* accent line on the left */
.detail-card .card-body {
  position: relative;
  padding-left: 1.5rem;
}
.detail-card .card-body::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 4px;
  height: calc(100% - 1.5rem);
  background-color: #e41e20;
  border-radius: 2px;
}

