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

:root {
    --primary: #E55B5B;
    --primary-hover: #d14a4a;
    --secondary: #6366F1;
    --dark: #1E293B; /* Slightly softer dark blue */
    --darker: #0F172A;
    --light: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 12px;
}

.drag-active {
    border-color: var(--primary) !important;
    background-color: var(--white) !important;
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.upload-area *, .upload-zone * {
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Updated Navbar Styles */
.nav-standard {
    background-color: var(--dark) !important;
    border-bottom: 2px solid var(--primary); /* Accent line instead of light gray */
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white) !important;
}

.logo-img {
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05); /* Modern hover effect instead of brightness filters */
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(229, 91, 91, 0.05) 0px, transparent 50%);
    padding: 80px 0;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--darker);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

/* Cards & Tool Layout */
.tool-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.tool-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.platform-grid-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    padding: 24px;
    background: var(--white);
    height: 100%;
}

.platform-grid-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.bg-subtle {
    background-color: var(--gray-100);
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.platform-icon {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.12));
    transition: transform 0.3s ease;
}

/* YouTube Section */
.video-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    aspect-ratio: 16 / 9;
}

/* Footer Section */
.site-footer {
    background-color: var(--darker);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* Newsletter in Footer */
.newsletter-form-footer {
    position: relative;
    margin-top: 20px;
}

.newsletter-input-footer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 12px 18px;
    color: white;
    width: 100%;
}

.newsletter-input-footer:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    border-color: var(--primary);
}

/* Alerts & Status */
.alert-premium {
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-sm);
}

/* Utility Animations */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
}
