/* FunReel Proposal - Custom CSS */

/* ====== Variables ====== */
:root {
    --primary: #8A2BE2;          /* Bright purple */
    --primary-dark: #6A1CB2;     /* Darker purple */
    --secondary: #6C757D;        /* Medium gray */
    --light: #F8F9FA;            /* Very light gray */
    --lighter: #FFFFFF;          /* White */
    --dark: #333333;             /* Dark gray for text */
    --gray: #6c757d;             /* Medium gray */
    --gradient-primary: linear-gradient(45deg, var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(45deg, var(--secondary), var(--secondary-dark));
    --gradient-light: linear-gradient(to bottom, var(--lighter), var(--light));
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --primary-light: #9B4DEB;
}

/* ====== General Styles ====== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--dark);
    background-color: var(--lighter);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.bg-light-gradient {
    background: var(--gradient-light);
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

/* ====== Navigation ====== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-brand span:first-child {
    color: var(--primary);
}

.navbar-brand span:last-child {
    color: var(--primary-light);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--secondary) !important;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary);
}

.dropdown-item i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(138, 43, 226, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== Hero Section ====== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--light);
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
}

.hero-backdrop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hero-pattern.svg') center center;
    opacity: 0.1;
}

.hero-section h1 {
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    font-size: 3.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-light {
    border: 2px solid var(--light);
    background: transparent;
    color: var(--light);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ====== Stats Cards ====== */
.stat-card {
    background: var(--lighter);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow);
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--primary);
}

.stat-title {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
    margin: 0;
}

/* ====== Feature List ====== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    margin-bottom: 24px;
    position: relative;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.feature-icon i {
    color: var(--light);
    font-size: 20px;
}

.feature-list h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-list p {
    font-size: 16px;
    margin: 0;
    color: var(--gray);
}

/* ====== Feature Cards ====== */
.feature-card {
    background: var(--lighter);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover:before {
    opacity: 0.05;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.feature-card-icon i {
    color: white;
    font-size: 30px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.feature-card-text {
    color: var(--gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-card-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.feature-card-link:hover {
    color: var(--primary-dark);
}

.feature-card-link:hover i {
    transform: translateX(5px);
}

/* ====== Timeline ====== */
.timeline-overview {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

.timeline-overview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(138, 43, 226, 0.2);
}

.timeline-phase {
    position: relative;
    margin-bottom: 40px;
}

.timeline-phase:last-child {
    margin-bottom: 0;
}

.timeline-phase-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: -38px;
    top: 10px;
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.3);
    z-index: 1;
}

.timeline-phase-content {
    padding-bottom: 20px;
}

.timeline-phase-content h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

/* ====== Budget Chart ====== */
.budget-chart-container {
    height: 240px;
    margin-bottom: 20px;
    position: relative;
}

.budget-stat {
    background: var(--lighter);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow);
}

.budget-stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary);
}

.budget-stat-label {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ====== Footer ====== */
.footer-section {
    background-color: var(--light);
    color: var(--gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links, .contact-info, .footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .contact-info li {
    margin-bottom: 12px;
}

.footer-links a, .contact-info a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover, .contact-info a:hover {
    color: var(--primary);
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary);
}

.footer-section h4, .footer-section h5 {
    color: var(--dark);
}

address {
    margin-bottom: 0;
    font-style: normal;
}

.social-links a {
    color: var(--gray);
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.05);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 16px;
    }
}

/* ====== Responsive Styles ====== */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
}

/* Class to overwrite previous dark theme */
.dramabox-dark {
    background-color: var(--lighter);
    color: var(--dark);
}

.bg-dark-gradient {
    background: var(--light);
}

/* Common Components */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50%;
    height: 3px;
    background: var(--primary);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Card Styles */
.card {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Progress Bar */
.progress {
    background-color: rgba(138, 43, 226, 0.1);
}

.progress-bar {
    background-color: var(--primary);
}

/* Utilities */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

/* Mobile Navigation Styles */
.offcanvas {
    max-width: 300px;
}

.offcanvas-title span {
    font-weight: bold;
}

.offcanvas .nav-link {
    border-radius: 0.5rem;
    margin: 0.2rem 0;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    background-color: rgba(138, 43, 226, 0.1);
    color: var(--primary) !important;
}

.offcanvas .nav-link i {
    width: 24px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-toggler,
    .offcanvas {
        display: none !important;
    }
} 