

#video {
    background: url("../../img/poster.4783dc812705.jpg") center/cover no-repeat;
    cursor: pointer;
}

.below-video{
    font-size: 1.2rem;
    padding: 1.5rem;
    background-color: var(--hero-item-bg);
    color: var(--hero-hdr-text);
}

/* Hero Section */
.hero {
    padding: 1rem;
    text-align: center;
    max-width: 36rem;
    margin: auto;
    & h1{
        font-size: 1.6rem;
        font-weight: bold;
        margin: 0;
        margin-top: -4px;
        background-color: var(--hero-ok-bg);
        color: var(--hero-hdr-text);
        padding: 0.5rem;
    }
    & h2{
        padding: 0.5rem;
        color: var(--hero-hdr-text);
        font-size: 1.4rem;
        /* text-align: left; */
        font-weight: bold;
    }
    & p{
        line-height: 1.4rem;
        background-color: var(--hero-p-bg);
        color: var(--hero-p-text);
        margin: 0;
        padding: 0.2rem 1rem 0.5rem 6.6rem;
        /* text-indent: 3.6em; */
        
    }
}

.problem-headline{
    position: relative;
    height: 2rem;
    margin: 0;
    background-color: var(--hero-item-bg);
    color: var(--hero-hdr-text);
    border-top: 1px solid var(--hero-nr-border);
    border-bottom: 1px solid var(--hero-nr-border);
    /* padding: 0.2rem 0.5rem 0.2rem 2rem; */

}

.problem-icon{
    position: absolute;
    left: 0.6rem;
    top: -0.3rem;
    font-size: 2rem;
}

.problem-nr {
    position: absolute;
    top: -9px;
    left: 3rem;
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-weight: bold;
    display: inline-block;
    width: 45px;
    height: 45px;
    border: 2px solid var(--hero-nr-border);
    background-color:  var(--hero-nr-bg);
    color:  var(--hero-nr);
    border-radius: 50%;
}

.problem-hl-text{
    position: absolute;
    left: 6.6rem;
    top: 0.2rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    & ul{
        width: 60%;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background-color: var(--light-background);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 90%;
    margin: auto;
}

@media (max-width: 1000px) {
  .steps{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .steps{
    grid-template-columns: 1fr;
  }
}

.step {
    text-align: center;
    position: relative;
    max-width: 100%;
    /* background-color: #57514b; */
    & .title{
        font-size: 1.4rem;
        padding-top: 0.6rem;
    }
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: #886c4b;
    border: 2px solid #c7a069;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
    font-size: 3rem;
    font-weight: 800;
    color:#c7a069;
}

/* Pricing Section */

.pricing-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1rem;
}

@media (max-width: 1000px) {
  .pricing-box{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .pricing-box{
    grid-template-columns: 1fr;
  }
}


.pricing-card {
    display: grid;
    grid-template-rows: subgrid;
    background-color: var(--card-bg);
    overflow: hidden;
    grid-row: span 4;
    padding: 0;
    border-radius: 2rem;
    border: 2px solid #ffffff55;
    & .heading{
        background-color: darkgrey;
        color: black;
        font-size: 1.8rem;
        font-weight: 500;
        padding: 0.4rem;
    }
    & .free{
        background-color: #3c6c48;
        color: #e8d0b8;
    }
    & .basic{
        background-color: #884b4b;
        color: #e8d0b8;
    }
    & .plus{
        background-color: #304475;
        color: #e8d0b8;
    }
    & .pro{
        background-color: #886c4b;
        color: #e8d0b8;
    }
    & .price{
        font-size: 1.8rem;
        color:var(--price-color);
        padding: 0.4rem;
    }
    & ul{
        padding: 0 0.5rem 0 1.7rem;
        text-align: left;
        line-height: 1rem;
        width: 80%;
    }
    & li{
        padding: 0.2rem;
    }
}

.pricing-card.free {
    background: var(--light-background);
}

.pricing-card.premium {
    background: var(--dark-background);
    color: var(--light-text);
}

/* 1. Container */
.video-container {
    position: relative;
    max-width: 1280px;
    /* margin: 2rem auto; */
    background: #000; /* Prevents white flash */
}

#videoPlaceholder {
    transition: opacity 0.3s ease;
}

.fade-in {
    transition: opacity 0.3s ease;
}
/* 2. Media Elements */
.video-container img,
.video-container video {
    width: 100%;
    display: block;
}

/* 3. Video Placeholder */
#videoPlaceholder {
    position: relative;
    cursor: pointer;
}

/* 4. Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: hsl(0deg 42.72% 25.53% / 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button::before {
    content: "";
    border-style: solid;
    border-width: 20px 0 20px 32px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 8px;
}

/* 5. Hover States */
.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* 6. Video Element */
.video-container video {
    cursor: pointer;
}

/* 7. Dark Theme Support */
[data-theme='dark'] .video-container {
    background: transparent;
}

@media (max-width: 700px) {

    /* home page */

    .hero{
        padding:0;
        & h1{
            font-size: 1.4rem;
        }
        & h2{
            font-size: 1.2rem;
        }

    }
    .problem-hl-text{
        font-size: 1.1rem;
        top: 0.4rem;
        left: 6.4rem;
    }



}
