@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

.drape-share-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Tenor Sans', sans-serif;
}

/* Hero Section Styles */
.drape-hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.drape-hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    /* Dark overly for text readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.drape-hero-content {
    max-width: 800px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.beta-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.magic-text {
    font-style: italic;
    color: #ff6b6b;
    /* Reddish coral color */
    font-family: serif;
    /* Fallback */
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .drape-hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

.drape-share-header {
    text-align: center;
    margin-bottom: 50px;
}

.drape-share-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.drape-share-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.drape-share-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.drape-share-image {
    flex: 1;
    min-width: 300px;
}

.drape-share-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.drape-share-video-section {
    flex: 1;
    min-width: 300px;
}

.video-label {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    display: block;
}

.highlight-text {
    color: #e53935;
    font-weight: 600;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.drape-share-features {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.feature-text:last-child {
    margin-bottom: 0;
}

.drape-share-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.btn-primary-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #1e2d3b;
    border: 1px solid #1e2d3b;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    /* Matching standard button radius */
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #1e2d3b;
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .drape-share-content {
        flex-direction: column;
    }

    .drape-share-title {
        font-size: 32px;
    }

    .drape-share-intro {
        font-size: 16px;
    }
}