/* FONTS */
@font-face {
    font-family: Made-Tommy-Black;
    src: url(assets/fonts/MADE-TOMMY-Black.otf);
}

@font-face {
    font-family: Made-Tommy-ExtraBold;
    src: url(assets/fonts/MADE-TOMMY-ExtraBold.otf);
}

@font-face {
    font-family: Made-Tommy-Bold;
    src: url(/assets/fonts/MADE-TOMMY-Bold.otf);
}

@font-face {
    font-family: Made-Tommy-Regular;
    src: url(/assets/fonts/MADE-TOMMY-Regular.otf);
}

@font-face {
    font-family: Made-Tommy-Light;
    src: url(/assets/fonts/MADE-TOMMY-Light.otf)
}

@font-face {
    font-family: Made-Tommy-Medium;
    src: url(/assets/fonts/MADE-TOMMY-Medium.otf)
}

@font-face {
    font-family: Dunbrough;
    src: url(/assets/fonts/Dunbrough.otf)
}

body, html{
    background-color: #272422;
    font-family: 'Made-Tommy-Bold', sans-serif;
    color: #f9f9f9;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.wtv-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    padding: 20px 0 20px 50px;
    display: flex;
    justify-content: flex-end;
    z-index: 5;
    padding-top: 50px;
}

/* NAVIGATION */
.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-end;
    z-index: 4;
    padding-top: 50px;
  }

.nav-bar.scrolled {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
  
.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    padding-right: 40px;
  }
  
.nav-links {
    display: flex;
    gap: 30px;
    display: flex;
    align-items: center;
  }

.nav-link {
    color: #f9f9f9;
    font-family: 'Made-Tommy-Bold', sans-serif;
    text-decoration: transparent;
    background: none;
    border: none;
    font-size: 1rem;
  }

.nav-link:hover {
    color: #F15D2A;
    font-family: 'Made-Tommy-Bold', sans-serif;
    text-decoration: underline;
    transition: text-decoration 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }

#download-nav-btn {
    border: 2px solid #F15D2A;
    font-family: 'Made-Tommy-Bold', sans-serif;
    color: #f9f9f9;
    font-size: 1rem;
    border-radius: 50px;
    padding: 5px 10px;
    background-color: #F15D2A;
    cursor: pointer;
}

#download-nav-btn:hover {
    color: #f9f9f9;
    background-color: transparent;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}
  
.hamburger {
    display: none;
    font-size: 3.125em;
    cursor: pointer;
    color: white;
  }

@media (max-width: 1080px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #231F20;
        border: 1px solid #F15D2A;
        padding: 10px;
        z-index: 3;
    }
  
    .nav-links.show {
        display: flex;
        }
    
    .hamburger {
        display: block;
        font-size: 2.75em;
        position: relative;
        top: -30px;
        }
    }

    @media (min-width: 1081px) {
    .hamburger {
        display: none;
    }
  }

/* HERO SECTION */

#hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #272422),
                url('assets/images/WTV+-ShowGrid-1920X1080_June2025.png') no-repeat center/cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero-background {
position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-top: 200px;
}

#wtv-logo-big {
  position: absolute;
  top: 30%; /* center in hero */
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 400px;
  transition: all 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
  z-index: 999;
}

#wtv-logo-big.sticky {
  position: fixed;
  top: 10px;    /* align with nav-bar padding-top */
  left: -80px;   /* align with nav-container padding */
  transform: translate(0, 0) scale(0.3);
  opacity: 0.5;
  pointer-events: auto;
  z-index: 999;
}

#hero-pricing{
    display: flex;
    justify-content: space-evenly;
    align-items: end;
    margin: 0 auto;
    max-width: 90%;
    padding-top: 30px;
}

.hero-option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

h1, h3, #monthly-price {
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

h3 {
    font-size: 3em;
    margin-bottom: 12px;
}

#monthly-price {
    font-family: 'Made-Tommy-Regular', sans-serif;
    font-size: 0.5em;
    margin-top: 0;
    padding-top: 0;
}

.download-btn, .main-btn {
    font-family: "Made-Tommy-ExtraBold", sans-serif;
    font-size: 1.75em;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 2px black;
    width: 100%;
    cursor: pointer;
}

.download-btn {
    background-color: transparent;
    border: 3px solid #F15D2A;
    color: #f9f9f9;
}

.download-btn:hover, .download-btn:active {
    background-color: #f15d2a;
    color: #21201e;
    border: 3px solid #F15D2A; 
    box-shadow: none;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    transition: background-color 0.4s ease-in-out;
}

.main-btn {
    background-color: #F15D2A;
    border: 3px solid transparent;
    color: #21201e;
}

.main-btn:hover, .main-btn:active {
    background-color: transparent;
    color: #f9f9f9;
    border: 3px solid #F15D2A; 
    box-shadow: none;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    transition: background-color 0.4s ease-in-out;
}

.learn-btn {
    color: #f9f9f9;
    font-family: 'Made-Tommy-Regular', sans-serif;
    text-decoration: underline;
    background: none;
    border: none;
    padding-top: 10px;
    font-size: 1em;
    cursor: pointer;
}

.learn-btn:hover, .learn-btn:active {
    color: #F15D2A;
    font-family: 'Made-Tommy-Bold', sans-serif;
    text-decoration: underline;
    transition: text-decoration 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

#app-store-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2em;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.app-btn {
    max-width: 160px;
    display: block;
    height: auto;
}

/* GLOBAL SETTINGS */

.title {
    font-family: 'Dunbrough', sans-serif;
    font-size: 3.125em;
    color: #f15d2a;
}

p, li {
    font-family: 'Made-Tommy-Regular', sans-serif;
    padding: 0;
    list-style: none;
}

.content-spacer {
    position: relative;
    border-bottom: 1px solid #F15D2A;
    width: 60%;
    padding: 20px 0;
    display: flex;
    margin: 0 auto;
}

/* .fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
} */

/* BENEFITS SECTION */
#the-benefits {
    margin: 0 auto;
    width: 100%;
    padding-bottom: 20px;
}

.devices {
    display: flex;
    justify-content: space-evenly;
}

video {
    width: 35%;
    margin-right: 0;
    padding-right: 0;
    display: block;
    border-bottom: none;
}

.benefits-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.green-text {
   color: #95A110;
   font-family: 'Made-Tommy-Bold', sans-serif;
}

.wtv-benefits-copy {
    font-size: 1.25rem;
}

.wtv-benefits {
    display: flex;
}

.check-icon-big {
    width: 3em;
    padding-right: 20px;
}

/* JOIN THE WOLF PACK SECTION */
#watch-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.watch, .title {
    margin-top: 30px;
    text-align: center;
}

#platform-logos{
    max-width: 800px;
    padding: 0;
    padding-bottom: 30px;
    margin: 0;
}

.pricing-tiers {
    display: flex;
    justify-content: center;
    text-align: center;
}

.price-container {
    border: 2px solid #F15D2A;
    margin: 8px;
    padding: 15px 20px;
    max-width: 300px;
    position: relative;
}

.best-value-badge{
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    transform: translate(30%, -45%);
}

#free{
    border: 1px solid #F15D2A;
}

#monthly{
    border: 3px solid #F15D2A;
}
#yearly{
    border: 5px solid #F15D2A;
}

.price {
    color: #F15D2A;
    padding: 0;
}

.tier-benefits-list {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.tier-benefit-item {
    font-family: 'Made-Tommy-Medium', sans-serif;
}

.check-icon {
    width: 2vh;
}

.tier-benefit-item-free {
    font-family: 'Made-Tommy-Medium', sans-serif;
}

#join-the-wolf-pack h2, h3, h4{
    padding: 0;
}

#join-the-wolf-pack h2 {
    font-size: 1.875em;
}

#free h2 {
    margin-bottom: 20px;
}

#join-the-wolf-pack h3 {
    font-size: 1.563em;
    margin: 0;
    padding: 0;
}


#monthly h3{
    margin-bottom: 20px;
}

#join-the-wolf-pack h4 {
    font-family: 'Made-Tommy-Medium', sans-serif;
    margin-bottom: 20px;
}

.grey {
    color: grey;
    font-family: 'Made-Tommy-Bold', sans-serif;
}

.orange-check{
    color: #F15D2A;
}

.free-btn, .monthly-btn, .yearly-btn{
    max-width: 300px;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: 'Made-Tommy-Bold', sans-serif;
    text-decoration: none;
    box-shadow: 2px 2px 2px black;
    cursor: pointer;
    font-size: 1.25em;
}

.monthly-btn, .yearly-btn{
    max-width: 300px;
    min-width: 250px;
    padding: 10px 20px;
    background-color: #F15D2A;
    border: 3px solid transparent;
    border-radius: 100px;
    font-family: 'Made-Tommy-Bold', sans-serif;
    color: black;
    text-decoration: none;
    box-shadow: 2px 2px 2px black;
    cursor: pointer;
}

.monthly-btn:hover, .yearly-btn:hover, .monthly-btn:active, .yearly-btn:active {
    background-color: transparent;
    color: #f9f9f9;
    border: 3px solid #F15D2A; 
    box-shadow: none;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    transition: background-color 0.4s ease-in-out;
}

.free-btn {
    background-color: transparent;
    border: 2px solid #F15D2A;
    color: #f9f9f9;
}

.free-btn:hover {
    background-color: #f15d2a;
    border: 2px solid #F15D2A;
    color: #21201e;
    transition: background-color 0.4s ease-in-out;
}

.yearly-btn {
    margin-bottom: 23px;
}

/* Mock Swimlane Section */

.swimlane {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 90%;
}

.mock-swimlane-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.swimlane-image {
    width: 15%;
    border: 2px solid #f9f9f9;
    border-radius: 10px;
}

.swimlane-title {
    text-align: left;
    padding-left: 130px;
    padding-top: 20px;
    margin-bottom: 0;
}

/* FAQ Section */

#faqs .title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 18px;
    margin-bottom: 5px;
    display: none;
    overflow: hidden;
    background-color: #F15D2A;
    color: #231F20;
    width: 90%;
    box-sizing: border-box;
}

.faq-group a {
    color: #0466c8;
    font-family: 'Made-Tommy-Regular', sans-serif;
}

.faq-group li {
    list-style:circle;

}

.list-header {
    font-family: 'Made-Tommy-Medium', sans-serif;
}

.collapsible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  color: #f9f9f9;
  cursor: pointer;
  padding: 15px;
  width: 90%;
  border: none;
  border-bottom: 2px solid #F15D2A;
  margin: 0 auto;
  text-align: left;
  outline: none;
  font-size: 17px;
  font-family: 'Made-Tommy-Medium', sans-serif;
  box-sizing: border-box;
}

.collapsible-icon {
  font-size: 18px;
  color: #f9f9f9;
  margin-left: 10px;
}

/* Active state */
.collapsible.active {
  background: none;
  color: #f9f9f9;
}

.collapsible.active .collapsible-icon {
  color: #f9f9f9;
  content: "-";
}

#faq p {
    font-family: 'Made-Tommy-Regular', sans-serif;
    font-size: 15px;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-tab {
  padding: 10px 20px;
  background: #f9f9f9;
  color: #21201e;
  text-decoration: none;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 50px;
}

.faq-tab:hover {
    background-color: #f9f9f9;
    color: #F15D2A;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.faq-tab.active {
  background: #F15D2A;
  color: white;
  text-decoration: none;
}

/* POP-UP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: transparent;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  max-width: 90%;
  width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  font-size: 3rem;
  cursor: pointer;
  color: #f9f9f9;
  font-family: "Made-Tommy-Light", sans-serif;
}

#popup-img {
    width: 100%;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 10px;
}

/* Back to Top Button */

#scrollTopBtn {
    display: none;
}


#scrollTopBtn, #scrollTopBtn:active {
    opacity: 70%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 24px;
    background-color: #f9f9f9;
    color: black;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 2px 2px 4px black;
}

/* COOKIE CONSENT */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-size: 14px;
}

#cookie-banner button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
}

#accept-all {
  background-color: #f9f9f9;
  color: #F15D2A;
}

#reject-all {
  background-color: #f15d2a;
  color: #f9f9f9;
}

/* Styles for screens 950px and under */
@media only screen and (max-width: 950px) {

    body, html{
        background-color: #21201e;
    }

    .nav-link {
        text-decoration: transparent;
    }

    .nav-bar.scrolled {
        opacity: 1;
    }

    /* Hero Section Mobile */

    #download-nav-btn {
        border: none;
        border-radius: 0;
        padding: 0;
        background-color: transparent;
    }

    #download-nav-btn:hover {
        color: #F15D2A;
        font-family: 'Made-Tommy-Bold', sans-serif;
        text-decoration: underline;
        transition: text-decoration 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

    #wtv-logo-big {
        top: 25%;
        width: 180px;
    }

    #wtv-logo-big.sticky {
        top: 40px;
        left: 20px;
        width: 100px;
        transform: translate(0, 0) scale(0.6);
    }

    #hero-section {
        min-height: 45vh;
    }

    #hero-section {
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, #21201e 100%),
        url('assets/images/WTV+-ShowGrid-1632x1920_June2025.png') no-repeat center/cover;
}

    #hero-background {
        padding-top: 80px;
    }

    #hero-pricing {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 10px;
        width: 100%;
        margin: 0 auto;
    }

    #hero-pricing .hero-option {
        flex: 1 1 calc(33.33% - 10px);
        min-width: 120px;
        padding: 15px 0;
        border-radius: 10px;
        box-sizing: border-box;
        text-align: center;
    }

    #hero-section h1 {
        font-size: 0.75em;
        width: 100%;
    }

    #hero-section h3 {
        font-size: 1.25em;
        width: 100%;
    }

    .main-btn, .download-btn {
        font-size: 0.8em;
        padding: 5px 10px;
    }

    .learn-btn {
        font-size: 0.75em;
    }

    #app-store-logos {
        padding-top: 0.5em;
        margin-top: 0px;
        gap: 20px;
    }

    .app-btn {
        max-width: 115px;
    }

    /* The Benefits Mobile */

    #the-benefits {
        padding-top: 0;
        margin-top: 0;
    }

    .devices {
        display: block;
    }

    #device-loop{
        display: block;
        margin: 0 auto;
        max-width: 350px;
        padding: 0;
        width: 90%;
        margin-top: 20px;
        padding-top: 0;
    }

    .benefits-text{
        max-width: 400px;
        margin: 0 auto;
        width: 90%;
    }

    .wtv-devices {
        display: block;
        margin: 0 auto;
        max-width: 350px;
        padding: 0;
    }

    .wtv-benefits {
        display: flex;
        justify-content: left;
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .wtv-benefits-check {
        padding-left: 5px;
    }

    .content-spacer {
        padding: 0;
    }

    /* Join the Wild Side Mobile */

    #platform-logos {
        width: 300px;
        padding-bottom: 0;
    }

    .pricing-tiers {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 0;
        justify-content: flex-start;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE & Edge */
        padding-left: 20px;
        padding-right: 20px;
        scroll-padding-right: 20px;
        scroll-padding-left: 20px;
        padding-bottom: 30px;
    }

    .price-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin-top: 35px;
        height: 700px;
        box-sizing: border-box;
    }

    .price-container h4 {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .tier-benefits-list {
        margin-top: 0;
    }

    .pricing-tiers::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .pricing-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .pricing-dots .dot {
        width: 10px;
        height: 10px;
        background-color: #999;
        border-radius: 50%;
        transition: background-color 0.3s ease-in-out;
    }

    .pricing-dots .dot.active {
        background: #F15D2A; /* your orange brand color */
    }

    #free {
        margin-left: 0;
    }

    .title {
        display: flex;
        justify-content: center;
        font-size: 2.5em;
    }

    .best-value-badge{
        position: absolute;
        top: 0;
        right: 0;
        width: 75px;
        transform: translate(30%, -50%);
    }

    #scrollTopBtn {
        display: none;
    }

    /* Mock Swimlanes Mobile */

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

    .mock-swimlane-images {
        gap: 1rem;
        flex-wrap: wrap;
        margin: 10px 0;
    }

    .swimlane-image {
        width: 25%;
    }

    .swimlane-title {
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
        margin-bottom: 0;
    }

    #adventure-swimlane {
        margin-bottom: 20px;
    }

    /* FAQ Mobile */

    .faq-tabs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        width: 95%;
        max-width: 900px; 
    }

    .faq-tab {
        margin-bottom: 5px;
    }

    .content {
            max-width: 95%;
            padding: 15px;
        }

    .collapsible {
        max-width: 95%;
        padding: 15px;
    }

    /* POP UP */
    .close-btn {
        position: absolute;
        top: -30px;
        right: 20px;
        font-size: 3rem;
        cursor: pointer;
        color: #f9f9f9;
        font-family: "Made-Tommy-Light", sans-serif;
    }

}