/* About Page Specific Styles */

.hero-section {
    background: #000000;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #00ffff, #ff1493);
    z-index: 1;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-cta {
    margin-top: 2rem;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #FF1493; /* Pink color */
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

.video-btn:hover {
    background-color: #ffffff;
    color: #FF1493;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.7);
}

.play-icon {
    margin-right: 10px;
}

.hero-content-centered .section-title {
    color: #00ffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.founder-story {
    position: relative;
    background-color: rgba(10, 10, 10, 0.8);
    overflow: hidden;
}

.founder-story::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 3rem 1rem;
}

.story-content .section-title {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-text {
    background-color: rgba(20, 20, 20, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #00ffff;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.emotional-hook {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 20%, rgba(255, 20, 147, 0.2) 50%, rgba(0, 255, 255, 0.2) 80%, #0a0a0a 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.emotional-hook::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.emotional-hook::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite reverse;
    z-index: 1;
    pointer-events: none;
}

.emotional-hook .container {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.emotional-hook .section-title {
    color: #00ffff;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 255, 255, 0.3);
}

.what-if-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.what-if-card {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.what-if-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 255, 0.3);
}

.what-if-card h3 {
    color: #FF1493;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.what-if-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-tonics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-preview-card {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-preview-card.energy-card {
    border-color: rgba(255, 215, 0, 0.3);
}

.product-preview-card.energy-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.product-preview-card.relax-card {
    border-color: rgba(76, 165, 255, 0.3);
}

.product-preview-card.relax-card:hover {
    border-color: #4CA5FF;
    box-shadow: 0 0 20px rgba(76, 165, 255, 0.3);
}

.product-preview-card.euphoria-card {
    border-color: rgba(162, 86, 229, 0.3);
}

.product-preview-card.euphoria-card:hover {
    border-color: #A256E5;
    box-shadow: 0 0 20px rgba(162, 86, 229, 0.3);
}

.product-preview-card.social-card {
    border-color: rgba(255, 122, 69, 0.3);
}

.product-preview-card.social-card:hover {
    border-color: #FF7A45;
    box-shadow: 0 0 20px rgba(255, 122, 69, 0.3);
}

.product-preview-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-preview-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close-modal:hover {
    color: #fff;
}

.video-container {
    text-align: center;
}

.video-placeholder {
    background-color: #333;
    padding: 4rem 2rem;
    border-radius: 8px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* "Why I Created Tongue Tonic" section mobile sizing */
    .hero-content-centered .section-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.35rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2.5rem !important;
        font-weight: 400 !important;
    }
    
    /* Founder's story section mobile sizing */
    .story-content .section-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 2rem !important;
    }
    
    .story-text p {
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.8rem !important;
    }
    
    .what-if-grid {
        grid-template-columns: 1fr;
    }
    
    .about-tonics-grid {
        grid-template-columns: 1fr;
    }
}