/* /assets/css/style.css - ViralVerse "Later" Inspired Theme */

/* --- 1. Root Variables & Global Styles --- */
:root {
    --light-bg: #FFFFFF;
    --text-primary: #000000;
    --text-secondary: #555555;
    --border-color: #E2E8F0;
    --button-bg: #000000;
    --button-hover: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #E0E7FF 0%, #F9FAFB 50%, #FFFFFF 100%);
    color: var(--text-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Use container-fluid for full-width sections */
.container-fluid {
    padding-left: 4vw;
    padding-right: 4vw;
}

/* --- 2. Navigation Bar --- */
.navbar {
    background-color: transparent !important;
    padding: 1.5rem 4vw;
    border-bottom: none;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--text-primary) !important;
}

.navbar .btn-dark {
    background-color: var(--button-bg);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.navbar .btn-dark:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

/* --- 3. Hero Section --- */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-primary);
}

/* --- Hero Image Collage --- */
.hero-image-collage {
    margin-top: 4rem;
    position: relative;
    height: 350px; /* Adjust as needed */
}
.collage-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
    border: 4px solid #fff;
    transition: all 0.3s ease;
}
.collage-img:hover {
    transform: translateY(-10px) scale(1.05) !important;
    z-index: 10;
}
.collage-img-1 {
    width: 200px;
    height: 280px;
    object-fit: cover;
    left: 10%;
    top: 20%;
    transform: rotate(-8deg);
}
.collage-img-2 {
    width: 220px;
    height: 320px;
    object-fit: cover;
    left: 25%;
    top: 0;
    z-index: 2;
    transform: rotate(2deg);
}
.collage-img-3 {
    width: 240px;
    height: 260px;
    object-fit: cover;
    left: 45%;
    top: 10%;
    z-index: 1;
    transform: rotate(-4deg);
}
.collage-img-4 {
    width: 210px;
    height: 300px;
    object-fit: cover;
    right: 25%;
    top: 5%;
    z-index: 2;
    transform: rotate(5deg);
}
.collage-img-5 {
    width: 200px;
    height: 280px;
    object-fit: cover;
    right: 10%;
    top: 20%;
    transform: rotate(10deg);
}

/* --- How It Works Section --- */
.how-it-works-section {
    padding: 100px 0;
    background-color: #fff;
}
.step-card {
    text-align: center;
    border: none;
    background-color: transparent;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--border-color);
}
.step-card h5 {
    font-weight: 700;
}

/* --- 8. Content Protection --- */
.ugc-card-preview, .ugc-media-wrapper {
    position: relative;
    overflow: hidden;
}

.protective-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2; /* Sits on top of the media */
    cursor: pointer;
}

.ugc-card-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
    pointer-events: none; /* Allows clicks to go through to the link */
    z-index: 3;
    transition: all 0.3s ease;
}

.ugc-card:hover .ugc-card-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

