/**
* Template Name: PhotoFolio - v1.0.0
* Template URL: https://bootstrapmade.com/photofolio-bootstrap-photography-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, sans-serif;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Cardo", sans-serif;

  --color-default: #000;
  --color-primary: #fff;
  --color-secondary: #C41D24;

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: var(--color-primary);
}

a {
  color: var(--color-default);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.section-header {
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-primary);
}

.section-header h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #5bd9a9;
  margin: 4px 10px;
}

.section-header p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #000;
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  padding: 120px 0 60px;
  min-height: 30vh;
  position: relative;
}

.page-header h2,
.page-header p {
  color: #fff;
  font-family: var(--font-secondary);
}

.page-header h2 {
  font-size: 56px;
  font-weight: 500;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .cta-btn {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
}

.page-header .cta-btn:hover {
  background: #2cbc85;
}

@media (max-width: 768px) {
  .page-header h2 {
    font-size: 36px;
  }
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: -15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 99999;
  background: var(--color-primary);
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(39, 167, 118, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  padding: 30px 0;
  background-color: #fff;
}

.header .logo {
  & img {
    max-height: 120px;
    margin-right: -220px;
  }

  & h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 400;
    color: #000;
    font-family: var(--font-secondary);
  }

  & i {
    font-size: 32px;
    margin-right: 8px;
    line-height: 0;
  }
}

.header .header-social-links {
  padding-right: 15px;

  & a {
    color: #000;
    padding-left: 15px;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    font-size: 16px;

    &:hover {
      color: #C41D24;
    }
  }
}

/* CSS for styling the dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 575px) {
  .header .logo {
    & img {
      max-height: 90px;
    }

    & h1 {
      font-size: 26px;
    }

    & i {
      font-size: 24px;
    }
  }

  .header .header-social-links a {
    padding-left: 5px;
  }
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #C41D24;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #fff;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #BE3245;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    color: #BE3245;
    font-weight: 600;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #1D5B89;
    font-weight: 600;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid black;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(22, 23, 24, 0.8);
    z-index: 9996;
  }
}

/* CSS for styling the dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Media query for desktop view (e.g., larger than 768px) */
@media (max-width: 1279px) {
  .dropdown-content {
    background-color: #BE3245;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


.hero {
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-container {
  width: 100%;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  color: #333333;
}

.hero p {
  color: #666666;
}

.overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.375rem;
}

.album-art:hover .overlay-hover {
  opacity: 1;
}


.hero-container img {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 10%;
}

.text-overlay {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 15px;
}

.text-overlay h1 {
  color: white;
  margin: 0;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .text-overlay h1 {
    font-size: 1.5rem;
  }
 
  .hero img {
    width: 100%;
    padding-top: 40%;
  }
 }
 
 @media (min-width: 768px) and (max-width: 1024px) {
  .text-overlay h1 {
    font-size: 2rem;
  }
 
  .hero img {
    width: 100%;
    padding-top: 20%;
  }
 }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 2rem 0 3rem;
  background-color: #fff;
  font-size: 24px;
}

.footer a {
  color: #000;
  padding: 0.4rem;
}

.footer a:hover {
  color: #C41D24;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .footer {
    display: none;
  }
  
  /* .video-item-last {
    padding-bottom: 1em;
  } */
}

/*--------------------------------------------------------------
# MailChimp CSS
--------------------------------------------------------------*/

form {
  background: #fff;
  border-radius: 12px;
  padding: 200px;
  font-size: 20px;
  position: relative;
  border: #000;
}

form input {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #BE3245;
  height: 68px;
  padding: 15px;
  background: #fff;
  color: #000;
  transition: 0.5s;
}

form input:focus {
  outline: none;
  box-shadow: 0px 10px 30px -20px 000;
  filter: contrast(85%)
}

form label {
  color: #000;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

form .subscribe {
  max-width: 300px;
  height: auto;
  background: #BE3245;
  border: #BE3245 2px solid;
  border-radius: 45px;
  font-weight: bold;
  line-height: normal;
  margin: 0 auto -80px;
  color: #fff;
}

form .subscribe:hover {
  cursor: pointer;
}

form .mc-field-group {
  margin-bottom: 35px;
}

form .indicates-required {
  color: #CCCDCF;
  font-size: 0.5em;
  margin: 35px 0;
  text-align: center;
}

form input+.mce_inline_error {
  display: inline-block;
  font-size: 0.5em;
  position: relative;
}

form #mce-success-response {
  background: green;
  padding: 25px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  transition: 1s;
  animation: response 1s forwards;
}

form #mce-error-response {
  background: #6B0505;
  padding: 25px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  transition: 1s;
  animation: response 1s forwards;
}

#mc_embed_signup input.mce_inline_error {
  border: 1px solid #dc3545;
  padding-top: 20em;
}

form #mce-error-response a {
  color: #fff;
}

form label .asterisk {
  color: 000;
  font-size: 0.5em;
  vertical-align: super;
}

@keyframes response {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  form input {
    width: 200%;
    margin-left: -2.5em;
  }

  form .subscribe {
    font-size: 12px;
    margin-left: -4em;
  }
}

/*--------------------------------------------------------------
# Songkick
--------------------------------------------------------------*/

.songkick {
  margin-top: 200px;
  text-align: center;
  font-family: var(--font-primary);
}

@media (max-width: 575px) {
  .songkick {
    margin-top: 100px;
    font-family: var(--font-primary);
  }
}.scroll-top {
  position: fixed;
  right: 15px;
  bottom: -15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 99999;
  background: #333333;  /* Changed from white to dark */
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;  /* Changed to white for contrast */
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);  /* Using brand red color on hover */
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* Adjust main section padding */
main {
  padding-top: 2rem; /* Reduce from default spacing */
}

/* Update video section spacing */
.video {
  padding-top: 2rem; /* Reduce top padding */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  main {
    padding-top: 3rem;
  }
  
  .video {
    padding-top: 1rem;
  }
}


/*--------------------------------------------------------------
# Gig Section
--------------------------------------------------------------*/
.gig-announcement {
  padding: 4.5rem 0;
  background: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gig-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gig-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .gig-announcement {
    padding: 3rem 0;
  }
  
  .gig-image {
    padding: 0 0.5rem;
  }
  
  .gig-image img {
    max-width: 100%;
  }
}