/* Default CSS  */
:root {
    --black-color: #000000;
    --dark-color: #444444;
    --white-color: #ffffff;

    --fixed-nav-bg: rgba(166, 29, 48, 0.9);
    --fixed-nav-color: #ffffff;
    --fixed-nav-hover: #e8f522;
    --fixed-nav-active: #e8f522;
    --nav-bg: #a71e2d;
    --nav-color: #ffffff;
    --nav-hover: #e8f522;
    --nav-active: #e8f522;

    --Roboto-font: "Roboto", Arial;
}

html {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--Roboto-font), Arial;
}

dl,
ol,
ul {
    margin-bottom: 0 !important;
}

ul {
    list-style-type: none;
    padding-left: 0 !important;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* CSS  */
/* navbar */
header {
    position: relative;
}

nav {
    background: var(--nav-bg);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.title-container .title {
    font-size: 30px;
    font-weight: 900;
    color: var(--black-color);
    text-align: center;
    text-transform: uppercase;
}

.title-container span {
    color: #a71e2d;
}

.title-container p {
    text-align: center;
    font-size: 18px;
    color: #000000;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.section {
    padding: 20px 0;
}

/* fixed nav */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--fixed-nav-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fixed-nav .links a {
    color: var(--fixed-nav-color);
}

.fixed-nav .links a:hover {
    color: var(--fixed-nav-hover);
}

/* .fixed-nav .links-container {
  height: auto !important;
} */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    font-size: 1.5rem;
    color: var(--fixed-nav-color);
    background: transparent;
    border-color: transparent;
    transition: all 0.3s linear;
    cursor: pointer;
}

.nav-toggle:hover {
    color: var(--fixed-nav-hover);
}

.logo img {
    height: 80px;
}

.links-container {
    height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
}

.show-links {
    height: 200px;
}


.links a {
    background: transparent;
    color: var(--nav-color);
    font-size: 17px;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s linear;
    font-weight: bold;
    padding: 0.75rem 0;
}

.links a:hover {
    color: var(--nav-hover);
}



/* NAVBAR RESPONSIVE  */
@media screen and (min-width: 768px) {
    nav {
        background: transparent;
    }

    .nav-center {
        width: 100%;
        /* max-width: 1240px;
        margin: 0 auto; */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-header {
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

    .links-container {
        height: auto !important;
    }

    .links {
        display: flex;
    }

    .links a {
        background: transparent;
        color: var(--nav-color);
        font-size: 16px;
        text-transform: uppercase;
        display: block;
        transition: all 0.3s linear;
        margin: 0 1rem;
        font-weight: bold;
        padding: 0;
    }

    .links a:hover {
        color: var(--nav-hover);
    }

    .scroll-link {
        text-decoration: none;
        padding: 0.5rem 1rem;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
    }

}

/* hero */


/* Banner Section */
/* Banner Section */
/* Banner Section */
#privacy,#cookie {
    height: 10vh;
    background-color: black;
}
#privacy.banner .carousel-item img {
    width: 100%;
    height: 10vh;
    object-fit: cover;
}

.banner {
width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner {
        margin-top: 100px;
        /* adjust based on your actual menu height */
    }
}
.carousel-inner {
    background-color: black;
}
.carousel-item{
    background-color: #000000;
    transition: transform 2s ease-out;
}
.banner .carousel-item img {
width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
    /* Try 'top', 'center top', or '50% 20%' */
}

.banner .carousel-caption h5 {
    color: #e8f522;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 900;
}

.banner .carousel-caption p {
    font-size: 18px;
}

.carousel-indicators .active {
    background-color: #a71e2d;
}

.bottom-shape1 {
    background: #000000;
    height: 150px;
    margin-top: -1px;
    width: 100%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Banner Section Responsive */
@media screen and (max-width: 573px) {
    .banner .carousel-caption h5 {
        font-size: 30px;
    }

    .bottom-shape1 {
        height: 60px;
    }
}


/* About Section */
/* About Section */
/* About Section */
.about-section {
    background: #ffffff;
}

.about-section .about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.about-section .about-container .about-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.about-section .about-container .about-details p {
    font-size: 18px;
    color: #444444;
    padding-bottom: 10px;
}

.about-section .about-container .about-video iframe {
    width: 100%;
    height: 450px;
}

.bottom-shape2 {
    height: 100px;
    background: #fafaf9;
    width: 100%;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* About Section Responsive */
@media screen and (max-width: 768px) {
    .about-section .about-container {
        grid-template-columns: 1fr;
    }

    .bottom-shape2 {
        height: 60px;
    }
}


/* Band Container */
/* Band Container */
/* Band Container */
.band-section {
    background: #fafaf9;
    display:none;
}

.band-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.band-container img {
    width: 100%;
}

.bottom-shape3 {
    height: 100px;
    background: #fafaf9;
    width: 100%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Band Section Responsive */
@media screen and (min-width: 769px) {
    .band-container .band2 {
        margin-top: 150px;
    }
}

@media screen and (max-width: 768px) {
    .band-container {
        grid-template-columns: 1fr;
    }

    .bottom-shape3 {
        height: 60px;
    }
}


.news-section {
    background: #fafaf9;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Services Section */
/* Services Section */
/* Services Section */
.services-section {
    padding: 40px 0;
}

.services-section .services-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-container .service-item {
    background: url(../images/pr-offers.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 15px;
}

.services-container .service-item .name {
    font-size: 18px;
    color: var(--white-color);
    font-weight: 800;
    text-transform: uppercase;
}

.services-container .service-item .title {
    font-size: 25px;
    color: #a71e2d;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 0;
}

.services-container .service-item img {
    width: 50%;
        /* Makes the image half the width of its container */
        display: block;
        /* Ensures it's treated as a block element */
        margin: 0 auto;
        /* Centers it horizontally */
}

.services-container .service-item p {
    font-size: 17px;
    color: var(--white-color);
    text-transform: uppercase;
}

.services-container .service-item a {
    font-size: 16px;
    color: #a71e2d;
    text-transform: uppercase;
    font-weight: 900;
}

.services-container .service-item a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/* Services Section Responsive */
@media screen and (max-width: 1080px) {
    .services-section .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .services-section .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-section .services-container {
        grid-template-columns: 1fr;
    }
}

/* Gigs Section */
/* Gigs Section */
/* Gigs Section */
.gigs-section {
    background: #000000;
    padding: 80px 0;
}

.gigs-section .title-container .title {
    color: #ffffff;
}

.gigs-section .title-container p {
    color: #ffffff;
}

.gigs-container {
    margin-top: 40px;
}

.gigs-container .table {
    margin-bottom: -1px;
}

.gigs-container tr th {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
    color: #e8f522;
}

.gigs-container tr td {
    font-size: 18px;
}

.top-shape1 {
    height: 100px;
    background: #000000;
    width: 100%;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    margin-bottom: -1px;
    margin-top: 40px;
}

.bottom-shape4 {
    height: 100px;
    background: #000000;
    width: 100%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    margin-top: -1px;
}

/* Gigs Section Responsive */
@media screen and (max-width: 768px) {
    .top-shape1 {
        height: 60px;
    }

    .bottom-shape4 {
        height: 60px;
    }
}


/* Merchandise Section */
/* Merchandise Section */
/* Merchandise Section */
.merchandise-section {
    padding: 60px 0;
}

.merchandise-container .product {
    position: relative;
    display: block;
}

.merchandise-container .product .product-image {
    width: 100%;
    height: auto;
    border: 1px solid #F6F5F4;
    padding: 20px;
}

.merchandise-container .product-details {
    margin-top: 20px;
}

.merchandise-container .product-title {
    font-weight: 800;
    margin-top: 10px;
    text-align: center;
}

.merchandise-container .product-price {
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
}

.merchandise-container .old-price {
    text-decoration: line-through;
    color: #808080;
    margin-right: 5px;
}

.merchandise-container .sale-badge {
    background-color: #000;
    box-sizing: border-box;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    line-height: 1;
    padding: 5px 7px 5px 5px;
    text-transform: uppercase;
    vertical-align: top;
    position: absolute;
    top: 0;
    right: 0;
}

.merchandise-container .sale-badge sup {
    font-size: 10px;
    line-height: normal;
    position: initial;
    padding-left: 5px;
}

.merchandise-container .product .button-container {
    margin-top: 20px;
}

.merchandise-container .product .button-container a {
    display: block;
    text-align: center;
    padding: 5px;
    border: 2px solid #a71e2d;
    color: #a71e2d;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease-out;
}

.merchandise-container .product .button-container a:hover {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}


/* Band T-Shirt Section */
/* Band T-Shirt Section */
/* Band T-Shirt Section */
.bandTShirt-section {
    background: #000000;
    padding-bottom: 60px;
}

.bandTShirt-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    display:none;
}

.bandTShirt-container img {
    width: 100%;
}

.top-shape2 {
    height: 150px;
    background: #000000;
    width: 100%;
    margin-bottom: -1px;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    margin-top: 40px;
}


/* Band Section Responsive */
@media screen and (min-width: 769px) {
    .bandTShirt-container .bandTShirt2 {
        margin-top: 150px;
    }
}

@media screen and (max-width: 768px) {
    .bandTShirt-container {
        grid-template-columns: 1fr;
    }

    .top-shape2 {
        height: 60px;
    }
}


/* Contact Section */
/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #000000;
}

.contact-section iframe {
    width: 100%;
    height: 720px;
}

@media screen and (max-width: 540px) {
    .contact-section iframe {
        height: 750px;
    }
}

@media screen and (max-width: 520px) {
    .contact-section iframe {
        height: 770px;
    }
}

@media screen and (max-width: 460px) {
    .contact-section iframe {
        height: 800px;
    }
}

@media screen and (max-width: 440px) {
    .contact-section iframe {
        height: 850px;
    }
}

@media screen and (max-width: 400px) {
    .contact-section iframe {
        height: 900px;
    }
}

@media screen and (max-width: 360px) {
    .contact-section iframe {
        height: 950px;
    }
}

@media screen and (max-width: 330px) {
    .contact-section iframe {
        height: 1000px;
    }
}


/* Footer Section */
/* Footer Section */
/* Footer Section */
.footer-section {
    background: #000000;
}

.footer-section .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section .footer-container .footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .footer-container .footer-links a {
    color: var(--white-color);
    font-size: 16px;
}

.footer-section .footer-container .footer-links a:hover {
    text-decoration: underline;
}

.footer-section .footer-container .social-links {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
}

.footer-section .footer-container .social-links img {
    width: 20px;
}

.footer-section .copyright {
    font-size: 14px;
    text-align: center;
    color: var(--white-color);
    margin-top: 30px;
}

/* Footer Section Responsive */
@media screen and (max-width: 568px) {
    .footer-section .footer-container {
        flex-direction: column;
        justify-content: center;
    }

    .footer-section .footer-container .footer-links {
        order: calc(2);
        margin-top: 20px;
    }

    .footer-section .footer-container .social-links {
        order: calc(1);
        justify-content: center;
    }
}

.carousel-logo {
    position: absolute;
    top: 10vh;
    /* 10% from top */
    left: 50%;
    transform: translateX(-50%);
    max-width: min(90vw, 1000px);
    /* Limits width to 90% of viewport or 1000px */
    width: auto;
    /* Keeps aspect ratio */
    max-height: 80vh;
    /* Prevents it from being too tall */
    z-index: 10;
    opacity:0.2;
}
@media (max-width: 768px) {
    .carousel-logo, .carousel-caption, .bottom-shape1{
        display: none;
    }
}

@media (max-width: 768px) {
    .bottom-shape1{
        display: none;
    }
}

.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* keeps 16:9 aspect ratio */
    height: 0;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }