/* public/css/landing.css */

/* Style for the content wrapper to align video and text side by side */
.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.video-container {
    flex: 1;
    max-width: 50%;
}

.video-container video {
    width: 100%;
    height: auto;
}

.text-container {
    flex: 1;
    max-width: 50%;
}

.text-container p {
    margin: 10px 0;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .video-container,
    .text-container {
        max-width: 100%;
    }
}

/* Style for the CTA section */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

/* Style for the CTA container */
.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px; /* Increases the gap between the Learn More button and the sponsor section below */
}

/* Style for the CTA button (Learn More) */
.cta-button {
    padding: 15px 30px;
    background-color: #007bff; /* Primary blue color */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Style for the podcaster preview section */
.podcaster-preview {
    margin-bottom: 20px;
    text-align: center;
}

.podcaster-preview h3 {
    margin-bottom: 10px;
}

.podcaster-preview p {
    font-style: italic;
    color: #666;
}

/* Style for the podcaster section */
.podcaster-section {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.podcaster-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.podcaster-section input[type="url"],
.podcaster-section textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.podcaster-section button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.podcaster-section button:hover {
    background-color: #0056b3;
}

/* Style for the cancel button */
.cancel-button {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    margin-left: 15px;
}

.cancel-button:hover {
    background-color: #5a6268;
}

/* Style for the podcaster attribution section */
.podcaster-attribution {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.podcaster-attribution p {
    margin: 0;
    font-size: 1.1em;
}

.podcaster-attribution strong {
    color: #007bff;
}

/* Style for the prompt section */
.prompt-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prompt-section h2 {
    color: #28a745;
    margin-bottom: 10px;
}

.prompt-section p {
    margin: 10px 0;
    font-size: 1.1em;
}

.prompt-buttons {
    margin-top: 20px;
}

.customize-button, .skip-button {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    margin: 0 10px;
}

.customize-button {
    background-color: #007bff;
    color: white;
}

.customize-button:hover {
    background-color: #0056b3;
}

.skip-button {
    background-color: #6c757d;
    color: white;
}

.skip-button:hover {
    background-color: #5a6268;
}

/* Sponsor Section */
.sponsor-section {
    margin: 40px 0;
    text-align: center;
}

.sponsor-content {
    display: flex;
    flex-direction: row; /* Ensures horizontal alignment on desktop */
    align-items: flex-start; /* Aligns the top of the logo and text */
    justify-content: center;
    gap: 5px; /* Space between logo and text */
    padding: 20px 0;
    border: none;
    background-color: transparent;
}

.sponsor-logo {
    flex: 0 0 auto;
}

.sponsor-logo-image {
    width: 120px !important; /* Forces width to 120px */
    height: auto !important; /* Allows height to scale proportionally */
    max-height: 6em !important; /* Caps height to fit within 4 text lines */
    object-fit: contain !important; /* Ensures the image scales without distortion */
}

.sponsor-info {
    flex: 1;
    text-align: left; /* Left-justified text */
}

.sponsor-info p {
    font-size: 1.2em; /* Matches screenshot font size */
    font-weight: bold; /* Matches screenshot bold text */
    color: #333;
    line-height: 1.5; /* Ensures proper spacing for two lines */
    margin: 0; /* Removes default margin for better alignment */
}

/* Features List (Bullet Points) */
.features-list {
    text-align: center; /* Centers the entire block */
    margin: 40px 0;
}

.features-list ul {
    display: inline-block; /* Allows the ul to be centered */
    text-align: left; /* Keeps bullet points left-aligned within the centered block */
    padding-left: 20px; /* Adjusts the default padding for bullet points */
    margin: 0 auto; /* Centers the ul horizontally */
    max-width: 600px; /* Limits the width to bring bullet points closer to the center */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sponsor-content {
        flex-direction: column; /* Stacks vertically on mobile */
        text-align: center;
    }

    .sponsor-info {
        text-align: center;
    }

    .sponsor-info p {
        font-size: 1.1em; /* Slightly smaller on mobile */
    }

    .sponsor-logo {
        margin-bottom: 10px;
    }

    .features-list ul {
        max-width: 90%; /* Adjusts width on mobile for better fit */
        padding-left: 15px; /* Slightly smaller padding on mobile */
    }

    .cta-container {
        margin-bottom: 20px; /* Slightly smaller gap on mobile for better spacing */
    }
}