/* Custom styles for BeerFund website */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* Base font family */
body {
    font-family: 'Sora', system-ui, sans-serif;
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(to right, #1affe3, #00f3b1);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.btn-secondary {
    background: white;
    color: #00c091;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 2px solid #80ffef;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-secondary:hover {
    background: #e6fffb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Realistic iPhone Mockup */
.phone-mockup {
    width: 384px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* Logo styles */
.logo-hero {
    height: 4rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-hero {
        height: 5rem;
    }
}

@media (min-width: 1024px) {
    .logo-hero {
        height: 6rem;
    }
}

.logo-footer {
    height: 3rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-footer {
        height: 4rem;
    }
}

/* Custom animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(10deg); 
    }
}

@keyframes confetti {
    0% { 
        transform: translateY(-20px) rotate(0deg); 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(20px) rotate(360deg); 
        opacity: 0; 
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce 2s infinite;
}

.animate-confetti {
    animation: confetti 3s ease-in infinite;
}

/* Floating emojis - hidden on mobile */
.floating-emoji {
    display: none;
}

@media (min-width: 768px) {
    .floating-emoji {
        display: block;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phone-mockup {
        width: 336px;
        transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
    }
    
    .phone-mockup:hover {
        transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 288px;
        transform: perspective(600px) rotateY(-5deg) rotateX(2deg);
    }
    
    .phone-mockup:hover {
        transform: perspective(600px) rotateY(-2deg) rotateX(1deg);
    }
} 