html {
  font-size: 20px;
}

@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem rgb(158, 46, 42), 0 0 0 0.25rem #CCCCCC;
}
.text-center{
  color: #CCCCCC;
  position: center;
  margin: 20px;
  text-align: left;
}

.text-left{
  color: #CCCCCC;
  position: center;
  text-align: left;
  margin: 20px;
  font-size: x-large;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .text-left {
    font-size: medium; /* Adjust the font size for mobile devices */
  }
}

.text-color
{
  color: rgb(158, 46, 42);;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
  color: rgb(158, 46, 42);;
    
}

.navbar{
  border-bottom: none; /* Remove the bottom border */
  box-shadow: none;
  border: none !important;
  outline: none !important;
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-nav .nav-link:hover {
  color: rgb(158, 46, 42);;
}



.image-home {
  width: 100%;
  height: auto;
  position: center;
  justify-content: center;
  align-items: center;
  object-fit: contain; 
  overflow: hidden; 
}

.image-orkester {
  margin: 0;
  padding: 0;
  width: 100%;
}

.image-center{
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; 
  position: center;
}

.image-dikt-metall{
  width: 80%;           /* Set the width to 80% of the container */
  height: auto;         /* Maintain aspect ratio */
  max-height: 40px;     /* Set the maximum height to 30px */
  object-fit: contain; 
  justify-content: center; /* Center horizontally */
  align-items: center; 
  position: center;
}

.kontakt-logo{
  width: 80%;           /* Set the width to 80% of the container */
  height: auto;         /* Maintain aspect ratio */
  max-height: 100px;     /* Set the maximum height to 30px */
  object-fit: contain; 
  justify-content: center; /* Center horizontally */
  align-items: center; 
  position: center;
}

.center-div{
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; 
  position: center;
}

.center-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  height: 90vh;   
  width: 90vw;        /* Full viewport height */
}

.center-image {
  max-width: 40%;
  height: auto;
  justify-content: center;
}

.footer-link {
  color: darkgray !important;
  text-decoration: none;
  
}

.footer-link:hover {
  text-decoration: underline;
  color: darkgray;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  padding-top: 76px;
    margin-bottom: 10px;
    background-color: #000000;
    
}

.input-group {
  display: flex;
  align-items: center;
}

.form-control{
  max-width: 350px;
  margin-right: 4px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(158, 46, 42);
  background-color: #CCCCCC;
}


.news-post {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid rgb(158, 46, 42);
  border-radius: 5px;
  transition: background-color 0.3s;
}

.news-post:hover {
  background-color: #333333;
}

.news-title {
  font-size: x-large;
  color: #CCCCCC;
}

.news-content {
  display: flex;
  align-items: flex-start;
}

.news-image {
  width: 100px; /* Adjust the size as needed */
  height: auto;
  margin-right: 10px; /* Space between image and text */
}

.news-text {
  font-size: small;
  color: #CCCCCC;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4; /* Limit to 4 lines */
  line-clamp: 4; /* Limit to 4 lines */
  
}

.news-link {
  color: #CCCCCC;
  text-decoration: underline;
}

.news-link:hover {
  color: darkgray;
  text-decoration: underline;
}

.news-post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-post-link:hover .news-post {
  background-color: #333333;
}

.news-section-divider {
  border: 0;
  height: 1px;
  background: #CCCCCC;
  margin: 20px 0;
}

.news-section-title {
  font-size: medium;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 20px;
}

.news-post-box {
  border: 2px solid rgb(158, 46, 42);
    border-radius: 8px;
    padding: 20px 20px;
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.news-post-box h3 {
    color: rgb(158, 46, 42); /* Samme rødfarge som navbar og DiktOgMetall */
    margin-top: 0;
    font-weight: bold;
}

.news-post-box p {
    color: #CCCCCC; /* Same color as main text */
    margin: 15px 0;
    line-height: 1.6;
}

.news-post-box .quote {
    font-size: small;
    padding-left: 15px;
    font-style: italic;
    color: #CCCCCC; /* Same color as main text */
    border-left: 3px solid rgb(158, 46, 42); /* Red border like the title */
}

.row.text-left {
    /* gap brukes for å gi avstand mellom kolonner og rader (Bootstrap .row er flex) */
    gap: 12px;        /* horisontal mellom kolonner */
    row-gap: 24px;    /* vertikal mellom rader */
}

/* ...existing code... */

.concerts-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.concert-card {
    border: 2px solid rgb(158, 46, 42);
    border-radius: 8px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.concert-card:hover {
    background-color: rgba(158, 46, 42, 0.1);
    box-shadow: 0 4px 8px rgba(158, 46, 42, 0.3);
}

.concert-date {
    color: rgb(158, 46, 42);
    font-weight: bold;
    font-size: large;
    margin-bottom: 10px;
}

.concert-venue {
    color: #CCCCCC;
    font-weight: bold;
    font-size: medium;
    margin-bottom: 5px;
}

.concert-city {
    color: #AAAAAA;
    font-size: small;
    margin-bottom: 15px;
}

.btn-concert {
    background-color: rgb(158, 46, 42);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-concert:hover {
    background-color: rgb(178, 66, 62);
    color: white;
}

.btn-merch {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    background-color: rgb(158, 46, 42);
    color: #CCCCCC;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-merch:hover {
    background-color: rgb(178, 66, 62);
    color: white;
}
.merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
  }
@media (max-width: 768px) {

.merch-grid {
grid-template-columns: 1fr;
gap: 16px;
transition: all 0.3s ease;
}
}

.merch-item  {
border: 2px solid rgb(158, 46, 42);
border-radius: 8px;
padding: 20px;;

}

.merch-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  
}

.merch-title {
  color: rgb(158, 46, 42);
  text-align: center;
  margin: 8px 0;
  font-size: 1.1rem;
}

.merch-desc {
color: #CCCCCC;
font-size: 0.95rem;
margin: 8px 0;
}

.video-container-instagram {
    position: relative;
    max-width: 400px; /* Instagram-bredde */
    width: 100%;
    margin: 10px auto;
   aspect-ratio: 9 / 16; /* Instagram vertikal format */
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.video-container-instagram video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-blur-edges {
    filter: blur(0.2px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Responsiv på små skjermer */
@media (max-width: 768px) {
    .video-container-instagram {
        max-width: 100%;
    }
}


/* ...existing code... */


@keyframes pulsate {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.1);
      opacity: 0.7;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

.pulsate {
  animation: pulsate 2s infinite;
}