/* 
 * InSnap Website Styles
 * Custom CSS for InSnap AI Influencers Platform
 */

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.gradient-text {
    background: linear-gradient(90deg, #fcc200, #e0ae00, #fcc200);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Cards */
.video-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Influencer Cards */
.influencer-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.influencer-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gold Theme */
.gold-gradient {
    background: linear-gradient(90deg, #fcc200, #e0ae00, #fcc200);
}

.gold-text {
    color: #fcc200;
}

.gold-border {
    border-color: #fcc200;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #fcc200, #e0ae00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e0ae00;
}

/* Image Effects */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

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

/* Button Styles */
.btn-gold {
    background: linear-gradient(90deg, #fcc200, #e0ae00);
    color: white;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(90deg, #e0ae00, #d19e00);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(252, 194, 0, 0.3);
}

.btn-outline-gold {
    border: 2px solid #fcc200;
    color: #fcc200;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: linear-gradient(90deg, #fcc200, #e0ae00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(252, 194, 0, 0.3);
}

/* Badges */
.badge-gold {
    background: linear-gradient(90deg, #fcc200, #e0ae00);
    color: white;
}

/* Feature Icons */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #fcc200, #e0ae00);
    margin-bottom: 1rem;
}

/* Responsive Video Containers */
.video-container {
    position: relative;
    padding-bottom: 177.77%;
    /* 9:16 aspect ratio for vertical videos */
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Content Sections */
.content-section {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}