/*
Theme Name: LMMS
Theme URI: lokalmatador-media-systems.de
Author: LMMS
Author URI: lokalmatador-media-systems.de
Description: Custom Bootstrap 5 theme with awesome features.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lmms
*/


/* Custom CSS can go here */

:root {
	/* Override Bootstrap's default colors */
	--bs-primary: #134e75 !important;       /* New primary (blue) */
	--bs-primary-rgb: 19, 78, 117; /* Convert #134e75 to RGB */
	--bs-secondary: #6c757d;     /* New secondary (gray) */
	--bs-success: #28a745;       /* New success (green) */
	--bs-danger: #dc3545;        /* New danger (red) */
	--bs-warning: #ffc107;       /* New warning (yellow) */
	--bs-info: #17a2b8;          /* New info (teal) */
  
	/* Optional: Add custom colors */
	--bs-custom-pink: #ff6b6b;
  }

  .btn {
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 50px;
    transition: all ease .3s;
  }

  /* .btn:hover {
    border-radius: 5px;
   } */

  /* In your style.css - MUST load after Bootstrap */
.bg-primary {
	background-color: #134e75 !important;
	background-image: none !important; /* Kills gradient versions */
  }
  
  /* Nuclear option for all possible primary variants */
  .bg-primary, 
  .bg-primary-hover:hover, 
  .bg-primary-gradient, 
  .text-bg-primary {
	background-color: #134e75 !important;
	background-image: none !important;
  }
  

/* Backgrounds */
.bg-primary, .text-bg-primary {
	--bs-bg-opacity: 1;
	background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  }
  
  /* Text */
  .text-primary {
	--bs-text-opacity: 1;
	color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  }
  
  /* Borders */
  .border-primary {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  }

  /* OVERRIDE BOOTSTRAP'S BG UTILITIES */
.bg-primary, .text-bg-primary {
	--bs-bg-opacity: 1;
	background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  }

  /* Solid Primary Button */
.btn-primary {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
  }
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active {
	background-color: #0a3a5a !important; /* Darker shade for hover */
	border-color: #0a3a5a !important;
  }
  
  /* Outline Primary Button */
  .btn-outline-primary {
	color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
  }
  .btn-outline-primary:hover,
  .btn-outline-primary:focus,
  .btn-outline-primary:active {
	background-color: var(--bs-primary) !important;
	color: white !important;
  }


body {
	font-family: 'Raleway', sans-serif;
}

.main-container {
  min-height: calc(100vh - 720px);
}

a { text-decoration: none; }

.container p {
  max-width: 900px;
}

.carousel-inner {
  
	background-image: url('http://temp.lokalmatador-media-systems.de/wp-content/uploads/2025/06/unterslider_leistungen-1.png');
	/* background-image: url('https://www.lokalmatador-media-systems.de/fileadmin/user_upload/Bilder/Produkte/unterslider_leistungen.png'); */
	/* background-image: url('https://www.lokalmatador-media-systems.de/fileadmin/user_upload/Bilder/Startseite/hintergrund.png'); */

  animation: lmms-slider 60s linear;
  background-size: cover;
  background-position: 0 0;
  opacity: 1;
  overflow: hidden;
}

@keyframes lmms-slider {
  100% {
    background-position: center center;
  }
}

/* ===== MAIN MENU - Guaranteed to Work ===== */
.navbar-nav li a {
    /* Base Styles */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem !important; /* Required to override BS padding */
    margin: 0 0.25rem; /* Space between buttons */
    border-radius: 50px;
    transition: all 0.3s ease !important;
	text-decoration: none;
	color: #134e75;
}
.navbar-nav li.current-menu-item a, .navbar-nav li.current-menu-item a:hover{
   background-color: #134e75 !important;
        color: white !important;
        transform: translateY(-2px);
}


.navbar-nav li a:hover {opacity: .8;}



/* Circle Base Styles */
.circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #134e75;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(19, 78, 117, 0.3);
}

.circle:hover {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(45deg, #134e75, #000);
}

/* Icon inside circle */
.circle i {
    font-size: 3rem;
    color: #fff;
    transition: all 0.5s ease;
}

/* Hover Effects */
.circle:hover {
    /* transform: rotateY(180deg) scale(1.1); 3D flip + grow */
    /* border-color: #ff6b6b; Change border color */
    /* background: #134e75; */
}

.circle:hover i {
    color: white;
    transform: rotateY(-180deg); /* Counter-rotate icon */
}

/* Optional: Pulse animation on hover */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.circle:hover {
    animation: pulse 1s; /* Only plays once on hover */
}

.w-100 img {
	width: 100% !important;
}

.featured-banner {
  position: relative;
  min-height: 120px;
  padding: 100px 0;
  background-color: #134e75;


  animation: lmms-featured 30s linear;
  background-size: cover;
  background-position: 0 0;
  opacity: 1;
  overflow: hidden;
}

@keyframes lmms-featured {
  100% {
    background-position: center center;
  }
}

.featured-banner h1 {
  color: white;
}

footer .container{
  opacity: .6;
}

footer h5 {
  font-size: 1.1rem;
}

footer p {
  font-size: 13px;
}

footer a {
  font-size: inherit;
  color: white !important
}

.footer-nav {
  margin: 0;
  padding: 0;
}

.footer-nav li {
  display: inline;
  list-style-type: none;
  padding: 0; margin: 0 0 0 10px;
}

.footer-nav li a {
  font-size: 13px;
}







.custom-slide {
  padding: 40px 20px;
  gap: 30px;
  justify-content: center;
}

.custom-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-caption {
  max-width: 500px;
}

.custom-caption h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.custom-caption p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  color: white;
}

@media (max-width: 768px) {
  .custom-caption h1 {
    font-size: 1.5rem;
  }
  .custom-caption p {
    font-size: 0.95rem;
  }
  .custom-slide {
    text-align: center;
  }
}






/* Mobile Menu Adjustments */
@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
  body .navbar-nav  {
      display: block;
      margin-top: 1rem;
      padding-top: 1rem;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-top: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2;
  }

  body .navbar-nav li {
      display: block;
  }

  body .navbar-nav li a {
      padding: 1rem 1rem !important;
      margin: 0.2rem 0 !important;
      display: block !important;
      text-align: center !important;
  }

  .circle-wrapper {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 3rem;
  }

  .circle {
    margin-top: 3rem;
  }
}
