/* The Vulture - Custom Styles */

/* Color Variables based on the vulture image */
:root {
    --vulture-yellow: #F4E4A6;
    --vulture-blue: #87CEEB;
    --vulture-orange: #FF8C42;
    --vulture-dark-orange: #E67E22;
    --vulture-black: #2C3E50;
    --vulture-white: #FFFFFF;
    --vulture-gray: #7F8C8D;
    --vulture-light-gray: #ECF0F1;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--vulture-blue) 0%, var(--vulture-orange) 100%);
    --gradient-yellow: linear-gradient(135deg, var(--vulture-yellow) 0%, #F1C40F 100%);
    --gradient-hero: linear-gradient(135deg, var(--vulture-yellow) 0%, var(--vulture-blue) 50%, var(--vulture-orange) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--vulture-black);
    background-color: var(--vulture-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    line-height: 1.2;
}

.text-highlight {
    color: var(--vulture-orange);
    font-weight: 700;
}

.text-orange {
    color: var(--vulture-orange);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(135, 206, 235, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--vulture-black) !important;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-badge {
    display: inline-block;
    background: var(--vulture-orange);
    color: var(--vulture-white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: super;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.nav-link {
    color: var(--vulture-black) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--vulture-orange) !important;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-signup {
    background: var(--gradient-primary);
    color: var(--vulture-white) !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.03"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.03"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--vulture-black);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--vulture-black);
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--vulture-black);
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: 3px solid var(--vulture-black);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-outline-dark {
    border: 2px solid var(--vulture-black);
    color: var(--vulture-black);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline-dark:hover {
    background: var(--vulture-black);
    color: var(--vulture-white);
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.vulture-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vulture-mascot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-notification {
    position: absolute;
    background: var(--vulture-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vulture-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 3s ease-in-out infinite;
}

.notification-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.notification-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.notification-3 {
    top: 60%;
    right: -20%;
    animation-delay: 2s;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--vulture-white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--vulture-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--vulture-gray);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: var(--vulture-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(135, 206, 235, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--vulture-white);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vulture-black);
}

.feature-card p {
    color: var(--vulture-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--vulture-light-gray) 0%, var(--vulture-yellow) 100%);
}

.testimonial-card {
    background: var(--vulture-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.stars {
    color: var(--vulture-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--vulture-black);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    margin: 0;
    color: var(--vulture-black);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--vulture-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--vulture-white);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--vulture-white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Google Signup Button */
.btn-google-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--vulture-white);
    color: var(--vulture-black);
    border: 2px solid #dadce0;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    min-width: 250px;
}

.btn-google-signup:hover {
    background: #f8f9fa;
    color: var(--vulture-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #c1c7cd;
    text-decoration: none;
}

.google-icon {
    flex-shrink: 0;
}


.signup-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--vulture-black);
    color: var(--vulture-white);
    padding: 3rem 0 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.footer-description {
    color: var(--vulture-gray);
    margin-bottom: 2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--vulture-gray);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--vulture-orange);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--vulture-gray);
    color: var(--vulture-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--vulture-orange);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: var(--vulture-gray);
    margin: 2rem 0 1rem;
}

.copyright {
    color: var(--vulture-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Beta Banner */
.beta-banner {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(135, 206, 235, 0.1) 100%);
    border-left: 4px solid var(--vulture-orange);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beta-banner-icon {
    font-size: 1.5rem;
    color: var(--vulture-orange);
}

.beta-banner-content {
    flex: 1;
}

.beta-banner-title {
    font-weight: 600;
    color: var(--vulture-black);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.beta-banner-text {
    color: var(--vulture-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Mobile-specific float animation with less movement */
@keyframes float-mobile {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .hero-cta .btn {
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .vulture-container {
        width: 300px;
        height: 300px;
        margin-top: 80px; /* Push down to avoid being covered by fixed header */
    }
    
    /* Reduce bounce animation on mobile so logo doesn't go under header */
    .vulture-mascot {
        animation: float-mobile 6s ease-in-out infinite;
    }
    
    .floating-notification {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .notification-1,
    .notification-2,
    .notification-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.5rem;
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn-google-signup {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .vulture-container {
        width: 250px;
        height: 250px;
        margin-top: 70px; /* Adjust for smaller screens */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: var(--vulture-light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--vulture-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vulture-dark-orange);
}
