
:root {
    --primary-color: #000000;
    --secondary-color: #123658;
    --dark-color: #212529;
    --light-color: #ffffff;
    --gold-color: #B58D1B;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #232526 0%, #414345 100%);
}

body {
    font-family: "Figtree", sans-serif;
    line-height: 1.5;
}

.newsletter-banner {
    background: var(--dark-color) !important;
    position: relative;
    z-index: 1040;
}

.newsletter-banner a {
    color: var(--light-color);
    text-decoration: none;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-bagani {
    background-color: var(--secondary-color) !important;
}

.bg-white {
    background-color: var(--light-color) !important;
}

.bagani__icons a {
    text-decoration: none;
    font-size: 1.6rem;
}

.navbar-toggler {
    border-color: #333;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}

.nav-link {
    color: var(--dark-color) !important;
    margin: 0 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0; /* start from left */
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.icon-burger {
    display: block;
    position: relative;
    width: 26px;
    height: 18px;
}

.icon-burger .line {
  display: block;
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  transition: transform 0.4s, opacity 0.4s, width 0.4s;
  border-radius: 1px;
  background-color: currentColor;
}
.icon-burger .line-1 {
  top: 0;
}
.icon-burger .line-2 {
  top: calc(50% - 1px);
}
.icon-burger .line-3 {
  bottom: 0;
}

.section-header {
    position: relative;
    width: 100%;
    min-height: 600px;
    z-index: 1;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Slight grey overlay */
    z-index: 2;
}

/* Make sure your text/content comes above the overlay */
.section-header-content {
    position: relative;
    z-index: 3;
}

/* Transform to X when NOT collapsed (menu open) */
.icon-burger.open .line-1 {
  transform: translateX(5px) translateY(8px) rotate(45deg);
}

.icon-burger.open .line-2 {
  opacity: 0;
}

.icon-burger.open .line-3 {
  transform: translateX(5px) translateY(-8px) rotate(-45deg);
}

.hero-section {
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(255,58,48,0.3), rgb(0 ,123, 255, 0.3), rgba(255, 204, 1, 0.2)); */
    z-index: 2;
}

.hero-content {
    z-index: 3;
    padding: 2rem;
}

.hero-content h1 {
    font-weight: 900;
    letter-spacing: 3px;
}

.hero-content h2 {
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-buttons .btn {
    background-color: var(--light-color);
    border-radius:  0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: var(--primary-color);
}

.hero-buttons h4 {
    font-weight: bolder;
    color: var(--gold-color);
    font-size: 1.5rem;
}
.hero-buttons h3 {
    font-weight: bolder;
    color: var(--light-color);
    font-size: 1.8rem;
}
.hero-buttons .btn p {
    font-weight: bold;
    font-size: 2rem;
}

.tour-dates .card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tour-dates .card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.date-info {
    min-width: 80px;
}

.btn-bagani {
    border: 2px solid var(--primary-color);
    padding: 0.3rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: .8rem;
}

.btn-bagani:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-bagani-lg {
    border: 2px solid var(--primary-color);
    padding: .8rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-bagani-lg:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}



.btn-dark {
    background-color: var(--dark-color);
    padding: .8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-gold {
    background-color: var(--gold-color);
    padding: .8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-play {
    border: 3px solid var(--light-color);
    transition: all 0.3s ease;
    color: var(--light-color);
    font-size: 1rem;
}

.btn-play:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.newsletter{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.form-control-custom{
    font-size: 1rem !important;
}
footer .list-unstyled a {
    position: relative;
    color: #b8c3cd !important
}

footer .list-unstyled a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0; /* start from left */
    background-color: #fff;
    transition: width 0.3s ease;
    width: 100%;
    display: none;
}

footer .list-unstyled a:hover {
    color: #fff !important;
}
footer .list-unstyled a:hover::before {
    display: block;
}


footer .social-links svg {
    fill: #fff;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: transform .2s ease;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}
.social-links svg {
    min-width: 22px;
    height: 22px;
}

.player-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.player-modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
}

.player-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.quill-container p {
    margin: 0;
    padding: 0;
}

.quill-container ol[data-list="bullet"] {
  list-style-type: disc;
  margin-left: 1.5rem;
  padding-left: 1rem;
}

.quill-container li[data-list="bullet"]::marker {
  content: "• ";
}


.countdown-item {
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.coupon-code {
    letter-spacing: 2px;
    border: 2px dashed #ffc107;
}

@media (max-width: 768px) {
    .countdown-item {
        padding: 1.5rem 1rem !important;
    }
    
    .countdown-item .h2 {
        font-size: 1.5rem;
    }
}