/* Custom Video Page  */

@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

main {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: normal;
    margin: 20px auto;
    padding: 0 20px;
    max-width: 1200px;
    color: #fff;
}

/* Hero Text Section */
.hero-text {
    text-align: center;
    color: white;
    margin: 60px 0 40px;
}
.hero-text h1 {
    color: white;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-text p {
    color: white;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 4px;
    margin: 0 auto 40px;
    max-width: 850px;
    text-align: left;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}
.how-it-works h2 {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.how-it-works ol {
    list-style: decimal !important;
    margin-left: 1.5rem;
    padding-left: 0;
}

.how-it-works li {
    list-style: decimal !important;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}
.how-it-works a {
    color: #007bff;
    text-decoration: underline;
}
.how-it-works a:hover {
    color: #0056b3;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 40px auto;
    max-width: 850px;
}
.faq-section h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-item .question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    background-color: #f1f1f1;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
}
.faq-item .answer {
    display: none;
    padding: 10px;
    color: #000;
}
.faq-item.active .answer {
    display: block;
}

/* Tagline Section */
.tagline-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 40px auto;
    max-width: 850px;
}

.tagline-section h2 {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Models Section */
.model-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
    max-width: 850px;
}

.model-section {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    text-align: center;
}

.model {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model .title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.images-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.model img {
    width: 100%;
    max-width: 180px;
    border-radius: 6px;
}

/* Panels Section */
.panel-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
    max-width: 850px;
}

.panel-block {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.panel-images {
    width: 100%;
}

.panel-images img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid #000;
}

.panel-info {
    padding: 20px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
}

.panel-info p {
    margin: 6px 0;
    color: #000;
    font-size: 1.1rem;
}

.panel-performers a {
    color: #000033;
    text-decoration: underline;
    font-weight: 500;
    margin: 0 4px;
}

.panel-date,
.panel-limits {
    font-size: 1rem;
}

/* Responsive */
@media (min-width: 600px) {
    .model img {
        max-width: 200px;
    }
}
@media (min-width: 900px) {
    .model img {
        max-width: 225px;
    }
}
@media (min-width: 1200px) {
    .model img {
        max-width: 250px;
    }
}