:root {
    --blue: #00d2ff;
    --pink: #f000ff;
    --purple: #8a00ff;
    --yellow: #f6ff00;
    --green: #42ff00;
    --dark: #111111;
    --light: #ffffff;
}

body, html {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:wght@400;700&display=swap');

.navbar-brand {
    font-family: 'Old Standard TT', serif;
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
}
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 20px;
    }
}

.navbar {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 60px;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--light);
  transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--light);
  transition: all 0.3s;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  top: 10px;
}

.navbar-toggler:focus {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 1rem;
  background-color: var(--yellow);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--yellow);
  display: inline-block;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

.navbar-nav .nav-item.dropdown .nav-link::after {
  display: none;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent; 
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--light);
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.dropdown-item {
  color: var(--light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: var(--purple);
  color: var(--light);  
}

@media (max-width: 992px) {
  .navbar {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    height: auto;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
  }

  .navbar-nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }

  .navbar-nav .nav-link::after {
    left: 0;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }

  .navbar-toggler {
    border-color: var(--light);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .dropdown-menu {
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .dropdown-item {
    padding: 0.5rem 1.5rem;
  }
}

.logo-image {
  height: 60px;
  width: auto;
  display: block;
}

#hero {
    height: 100vh;
    background-image: url('images/desktophero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    #hero {
        background-image: url('images/tihero2.jfif');
    }
}

@media (max-width: 768px) {
    #hero {
        background-image: url('images/tihero2.jfif');
    }
}

#hero .container {
    text-align: center;
}

#hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 5rem;
    margin-bottom: 1rem;
}

#hero p {
    color: var(--light);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-30px) translateX(-50%); }
    60% { transform: translateY(-15px) translateX(-50%); }
}

#aktiv-produktion {
    background-color: var(--dark);
    padding: 4rem 0;
}

#aktiv-produktion h2 {
    color: var(--yellow);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

#aktiv-produktion h3 {
    color: var(--purple);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.production-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.production-info {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-container {
    flex: 1;
    max-width: 40%;
    max-height: 700px;
}

#actorCarousel {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--purple);
    border-color: var(--purple);
    color: var(--light);
}

.btn-outline-primary {
    border: 2px solid var(--purple);
    color: var(--purple);
    background-color: transparent;
}

.btn-primary:hover, .btn-outline-primary:hover {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--light);
    transform: translateY(-3px);
}

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-section.main-section {
    flex: 2;
    min-width: 300px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: var(--yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--yellow);
    padding: 0.5rem 1rem;
    border: 1px solid var(--yellow);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--yellow);
    color: #111;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section, .footer-section.main-section {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section:last-child {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .production-content {
        flex-direction: column;
        align-items: center;
    }
    
    .production-info, .carousel-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100svh;
    }

    #hero h1 {
        font-size: 3.5rem;
    }
    
    #hero p {
        font-size: 1.2rem;
    }
    
    #aktiv-produktion h2 {
        font-size: 2rem;
    }
    
    #aktiv-produktion h3 {
        font-size: 1.7rem;
    }

    .scroll-indicator {
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    #hero h1 {
        font-size: 3rem;
    }

    #hero p {
        font-size: 1rem;
    }

    #aktiv-produktion h2 {
        font-size: 1.8rem;
    }
    
    #aktiv-produktion h3 {
        font-size: 1.5rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* aktuellt */

/* Aktuellt styles */
.aktuellt-main {
    background-color: var(--dark);
    color: var(--light);
}

.aktuellt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.aktuellt-content {
    margin-bottom: 4rem;
}

.aktuellt-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.aktuellt-info {
    flex: 1;
}

.aktuellt-poster-container {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aktuellt-poster-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    margin-bottom: 2rem;
}

.aktuellt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    margin-top: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.aktuellt-author {
    font-size: 1.5rem;
    color: var(--pink);
    margin-bottom: 2rem;
}

.aktuellt-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.aktuellt-buy-button {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.aktuellt-buy-button:hover {
    background-color: var(--pink);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(246, 255, 0, 0.4);
}

.aktuellt-cast {
    margin-top: 6rem;
}

.aktuellt-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 3rem;
    position: relative;
}

.aktuellt-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--purple);
}

.aktuellt-cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.aktuellt-cast-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.aktuellt-cast-member:hover {
    transform: translateY(-10px);
}

.aktuellt-member-image {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
    transition: box-shadow 0.3s ease;
}

.aktuellt-cast-member:hover .aktuellt-member-image {
    box-shadow: 0 15px 30px rgba(246, 255, 0, 0.3);
}

.aktuellt-member-name {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.aktuellt-member-role {
    font-size: 1rem;
    color: var(--pink);
}

.aktuellt-credits {
    margin-top: 4rem;
    text-align: center;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .aktuellt-credits {
        margin-top: 0;
    }
}
.aktuellt-credits p {
    margin-bottom: 0.5rem;
}

@media (max-width: 1200px) {
    .aktuellt-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .aktuellt-flex-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .aktuellt-poster-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .aktuellt-title {
        font-size: 3rem;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .aktuellt-container {
        padding: 2rem 1rem;
    }

    .aktuellt-title {
        font-size: 2.5rem;
    }

    .aktuellt-author {
        font-size: 1.3rem;
    }

    .aktuellt-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .aktuellt-section-title {
        font-size: 2rem;
    }

    .aktuellt-cast-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .aktuellt-title {
        font-size: 2rem;
    }

    .aktuellt-author {
        font-size: 1.1rem;
    }

    .aktuellt-buy-button {
        width: 100%;
    }

    .aktuellt-section-title {
        font-size: 1.8rem;
    }

    .aktuellt-cast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .aktuellt-member-name {
        font-size: 1rem;
    }

    .aktuellt-member-role {
        font-size: 0.9rem;
    }

    .aktuellt-credits {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 380px) {
    .aktuellt-title {
        font-size: 1.8rem;
    }

    .aktuellt-author {
        font-size: 1rem;
    }

    .aktuellt-section-title {
        font-size: 1.6rem;
    }

    .aktuellt-cast-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Förbättrade Om oss styles */
.om-oss-main {
    background-color: var(--dark);
    color: var(--light);
}

.om-oss-hero {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-top: 80px;
}

.om-oss-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.om-oss-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.om-oss-content {
    text-align: left;
}

.om-oss-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.om-oss-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.om-oss-text p {
    margin-bottom: 1.5rem;
}

.om-oss-image-container {
    margin-top: 3rem;
    text-align: center;
}

.om-oss-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .om-oss-title {
        font-size: 3rem;
    }
    
    .om-oss-container {
        padding: 3rem 1.5rem;
    }
    
    .om-oss-text {
        font-size: 1rem;
    }
    
    .om-oss-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .om-oss-title {
        font-size: 2.5rem;
    }
    
    .om-oss-container {
        padding: 2rem 1rem;
    }
    
    .om-oss-text h2 {
        font-size: 1.8rem;
    }
}
/* ensemblen */

.ensemble-main {
    background-color: var(--dark);
    color: var(--light);
}

.ensemble-hero {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-top: 80px;

}

.ensemble-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ensemble-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.ensemble-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin: 2rem 0 1rem;
}

.ensemble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ensemble-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.ensemble-member:hover {
    transform: translateY(-5px);
}

.ensemble-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.ensemble-member:hover .ensemble-image {
    box-shadow: 0 6px 12px rgba(246, 255, 0, 0.3);
}

.ensemble-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ensemble-member.active .ensemble-name {
    color: var(--yellow);
}

.ensemble-member:not(.active) {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .ensemble-title {
        font-size: 3rem;
    }
    
    .ensemble-section-title {
        font-size: 2rem;
    }
    
    .ensemble-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ensemble-title {
        font-size: 2.5rem;
    }
    
    .ensemble-section-title {
        font-size: 1.8rem;
    }
    
    .ensemble-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .ensemble-name {
        font-size: 1rem;
    }
}

/* tre systrar */

.tre-systrar-main {
    background-color: var(--dark);
    color: var(--light);
}

.tre-systrar-hero {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-top: 80px;
}

.tre-systrar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tre-systrar-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.tre-systrar-content {
    text-align: left;
}

.tre-systrar-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.tre-systrar-image-container {
    margin: 2rem 0;
    text-align: center;
}

.tre-systrar-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tre-systrar-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--pink);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.om-forestallningen p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.medverkande ul {
    list-style-type: none;
    padding-left: 0;
}

.medverkande li {
    margin-bottom: 0.5rem;
}

.produktion-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.recension {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.recension-text {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.recension-forfattare {
    text-align: right;
    font-weight: bold;
    color: var(--yellow);
}

@media (max-width: 768px) {
    .tre-systrar-title {
        font-size: 3rem;
    }
    
    .tre-systrar-subtitle {
        font-size: 1.8rem;
    }
    
    .tre-systrar-container {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .tre-systrar-title {
        font-size: 2.5rem;
    }
    
    .tre-systrar-subtitle {
        font-size: 1.5rem;
    }
}

/* kontakt */

/* Förbättrade Kontakt styles */
.kontakt-main {
    background-color: var(--dark);
    color: var(--light);
}

.kontakt-hero {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-top: 80px;
}

.kontakt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.kontakt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.kontakt-content {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.kontakt-info, .kontakt-form {
    flex: 1;
}

.kontakt-info h2, .kontakt-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 2rem;
}

.kontakt-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.kontakt-list {
    list-style-type: none;
    padding: 0;
}

.kontakt-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.kontakt-list i {
    color: var(--yellow);
    font-size: 1.4rem;
    margin-right: 1.5rem;
    width: 20px;
}

.kontakt-list a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.kontakt-list a:hover {
    color: var(--yellow);
}

.form-group {
    position: relative;
    margin-bottom: 3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--light);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--light);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1.1rem;
    color: var(--light);
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.9rem;
    color: var(--yellow);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--yellow);
}

.btn-send {
    background-color: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 30px;
}

.btn-send:hover {
    background-color: var(--pink);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(246, 255, 0, 0.4);
}

@media (max-width: 992px) {
    .kontakt-container {
        padding: 4rem 2rem;
    }

    .kontakt-content {
        flex-direction: column;
        gap: 4rem;
    }

    .kontakt-info, .kontakt-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .kontakt-title {
        font-size: 3rem;
    }

    .kontakt-info h2, .kontakt-form h2 {
        font-size: 2rem;
    }

    .kontakt-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .kontakt-title {
        font-size: 2.5rem;
    }

    .kontakt-container {
        padding: 2rem 1rem;
    }

    .kontakt-info h2, .kontakt-form h2 {
        font-size: 1.8rem;
    }

    .kontakt-info p, .kontakt-list a, .form-group input, .form-group textarea, .btn-send {
        font-size: 1rem;
    }
}

/* Aktuellt banner styles */

.aktuellt-banner {
    background-color: rgba(138, 0, 255, 0.1);
    padding: 2rem 0;
}

.aktuellt-banner .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.aktuellt-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.aktuellt-banner p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.aktuellt-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.aktuellt-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.aktuellt-buttons .btn-primary {
    background-color: var(--purple);
    border-color: var(--purple);
    color: var(--light);
}

.aktuellt-buttons .btn-outline-primary {
    border: 2px solid var(--purple);
    color: var(--purple);
    background-color: transparent;
}

.aktuellt-buttons .btn:hover {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--light);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .aktuellt-banner h2 {
        font-size: 2rem;
    }

    .aktuellt-banner p {
        font-size: 1rem;
    }

    .aktuellt-buttons {
        flex-direction: column;
        gap: 0rem;
    }

    .aktuellt-buttons .btn {
        width: 100%;
    }
}

/* addon */

#aktiv-produktion {
    background-color: var(--dark) !important;
    padding: 4rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
}

#aktiv-produktion::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1 !important;
}

#aktiv-produktion .container {
    position: relative !important;
    z-index: 2 !important;
}

#aktiv-produktion h2 {
    color: #fff; !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 4rem !important;
    position: relative !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

#aktiv-produktion h2::after {
    content: '' !important;
    display: block !important;
    width: 100px !important;
    height: 3px !important;
    background-color: var(--purple) !important;
    margin: 1rem auto 0 !important;
}

.production-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.production-info {
    flex: 1 !important;
    max-width: 50% !important;
}

.production-info h3 {
    color: var(--pink) !important;
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.production-info p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    color: var(--light) !important;
}

.production-info strong {
    color: var(--yellow) !important;
    font-weight: 600 !important;
}

.btn-primary {
    background-color: var(--yellow) !important;
    border: none !important;
    color: var(--dark) !important;
}

.btn-outline-primary {
    border: 2px solid var(--yellow) !important;
    color: var(--yellow) !important;
    background-color: transparent !important;
}

.btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover {
    background-color: var(--pink) !important;
    color: var(--light) !important;
}

.btn-outline-primary:hover {
    background-color: var(--yellow) !important;
    color: var(--dark) !important;
}

.carousel-container {
    flex: 0 0 auto !important;
    max-width: 40% !important;
    width: 500px !important;
}

#actorCarousel {
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

.carousel-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

.carousel-control-prev, .carousel-control-next {
    width: 10% !important;
    opacity: 1 !important;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-image: none !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease !important;
}

.carousel-control-prev-icon:before, .carousel-control-next-icon:before {
    content: '' !important;
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border-top: 2px solid white !important;
    border-left: 2px solid white !important;
}

.carousel-control-prev-icon:before {
    transform: rotate(-45deg) !important;
    margin-left: 4px !important;
}

.carousel-control-next-icon:before {
    transform: rotate(135deg) !important;
    margin-right: 4px !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6) !important;
}
@media (max-width: 1200px) {
    .production-content {
        flex-direction: column !important;
        align-items: center !important;
    }

    .production-info, .carousel-container {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    #aktiv-produktion {
        padding: 4rem 0 !important;
    }

    #aktiv-produktion h2 {
        font-size: 2.9rem !important;
    }

    .production-info h3 {
        font-size: 2rem !important;
    }

    .button-group {
        flex-direction: column !important;
    }
}

@media (max-width: 576px) {
    #aktiv-produktion h2 {
        font-size: 2rem !important;
    }

    .production-info h3 {
        font-size: 1.8rem !important;
    }

    .production-info p {
        font-size: 1rem !important;
    }
}

/* ensemble personlig */

.ensemble-member-main {
    background-color: var(--dark);
    color: var(--light);
}

.ensemble-member-hero {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-top: 80px;
}

.ensemble-member-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ensemble-member-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.ensemble-member-content {
    margin-bottom: 3rem;
}

.ensemble-member-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.ensemble-member-info {
    flex: 1;
}


.ensemble-member-description p {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ensemble-member-roles {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ensemble-member-roles h3 {
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ensemble-member-roles ul {
    list-style-type: none;
    padding-left: 0;
}

.ensemble-member-roles li {
    margin-bottom: 0.75rem;
}

.ensemble-member-roles a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ensemble-member-roles a:hover {
    background-color: var(--pink);
    color: var(--dark);
    transform: translateX(5px);
}

.ensemble-member-roles a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ensemble-member-roles a:hover::after {
    transform: translateX(5px);
}

.ensemble-member-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 2rem;
    position: relative;
}

.ensemble-member-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--purple);
}

.ensemble-member-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.ensemble-member-gallery-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ensemble-member-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(246, 255, 0, 0.3);
}

.ensemble-member-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ensemble-member-gallery-item:hover .ensemble-member-gallery-image {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .ensemble-member-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .ensemble-member-flex-container {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    

    .ensemble-member-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ensemble-member-container {
        padding: 2rem 1rem;
    }

    .ensemble-member-title {
        font-size: 2.5rem;
    }

    .ensemble-member-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ensemble-member-section-title {
        font-size: 2rem;
    }

    .ensemble-member-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ensemble-member-hero {
        height: 25vh;
    }

    .ensemble-member-title {
        font-size: 2rem;
    }


    .ensemble-member-section-title {
        font-size: 1.8rem;
    }

    .ensemble-member-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ensemble-member-roles a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* extras */

