/* Main Styles for Vibcast Website */

/* Global Styles */
:root {
    --primary-color: #ff4500; /* Vibrant Mars-inspired red-orange */
    --secondary-color: #00b4d8; /* Ocean blue for the shark */
    --accent-color: #ffd700; /* Playful gold accent */
    --dark-color: #121212;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --heading-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 56px; /* For fixed navbar */
    background-color: #f9f7f2; /* Subtle off-white background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color) !important;
}

.navbar-dark {
    background-color: #1a1a2e !important; /* Deep space blue */
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    margin-bottom: 2rem;
}

/* Feature Boxes */
.feature-box {
    transition: transform 0.3s ease;
    background-color: #fff;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #e03d00; /* Darker shade of primary */
    border-color: #e03d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Signup Form */
.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.signup-form .form-control {
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
}

.signup-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25);
}

/* Platform Links */
.platform-link {
    display: block;
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.platform-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

/* Episode List */
.episode-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.episode-item:hover {
    transform: translateX(5px);
}

.episode-item:last-child {
    border-bottom: none;
}

/* About Page */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Background Image Callout Section */
.bg-image-callout {
    /* Use our custom generated image */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/monkeys_shark_mars_banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
    margin-top: -56px; /* To offset the padding-top on body for fixed navbar */
}

.bg-image-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.6) 0%, rgba(0, 180, 216, 0.6) 100%);
    z-index: 1;
}

.bg-image-callout .container {
    position: relative;
    z-index: 2;
}

.wizard-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.callout-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.callout-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-callout {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    font-weight: 700;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-callout:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-color: #ffdf00; /* Slightly darker gold */
    color: var(--dark-color);
}

/* Sections */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Background colors */
.bg-light {
    background-color: #f0f8ff !important; /* Light blue tint */
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

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

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 3rem 0;
}

footer a {
    color: var(--secondary-color);
}

footer a:hover {
    color: var(--accent-color);
}
