.background-navbar {
  background: #281301;
}

.margin-main {
  margin-top: calc(56px + 1rem);
}

.heading-top {
  margin-top: 170px;
}

.container-margin {
  margin-left: 100px;
  margin-right: 100px;
}

.full-width-bg {
  position: relative;
}

.full-width-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  height: 100%;
  background-color: #f8f9fa;
  z-index: -1;
}

.ms-7 {
  margin-left: 7rem!important;
}

.ms-6 {
  margin-left: 6rem!important;
}

html {
  overflow-y: scroll;
}

/* event Image */
.event-img-large {
    height: 100% !important;
    width: 850px !important;
    object-fit: cover;
}


/* Zusätzliche CSS-Regeln für die neuen Sections */

/* Konsistente Section-Abstände */
section {
    padding: 4rem 0;
}

/* Hero Section Optimierungen */
.min-vh-70 {
    min-height: 70vh;
}

/* Card Hover Effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Icon Backgrounds */
.icon-bg-primary {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
}

/* Border Utilities */
.border-light-opacity {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Background Opacity Utilities */
.bg-opacity-10 {
    background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Zusätzliche Margin Utilities */
.mt-6 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}