/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafafa;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%);
    overflow: hidden;
}

.hero-section h1 {
    color: #9c27b0;
}

.hero-section p {
    color: rgba(156, 39, 176, 0.8);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="50" cy="50" r="1" fill="rgba(156,39,176,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(156, 39, 176, 0.1);
}

.navbar-scrolled .navbar-brand {
    color: #9c27b0 !important;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Interactive Countdown Timer */
.countdown-container {
    margin: 3rem 0;
}

.countdown-title {
    color: rgba(156, 39, 176, 0.9);
    font-weight: 600;
    font-size: 1.2rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.countdown-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.1);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.5s ease;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.2);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9c27b0;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(156, 39, 176, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Interactive Newsletter Section */
.newsletter-section {
    max-width: 600px;
    margin: 3rem auto;
}

.newsletter-section h4 {
    color: #9c27b0;
    font-weight: 600;
    font-size: 1.3rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.input-group {
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.15);
}

.form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-control:focus {
    box-shadow: none;
    background: #fff;
    transform: scale(1.02);
}

.form-control::placeholder {
    color: #666;
}

.btn-warning {
    background: linear-gradient(45deg, #9c27b0, #e1bee7);
    border: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 600;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
    background: linear-gradient(45deg, #e1bee7, #9c27b0);
}

/* Interactive Social Links */
.social-links {
    margin-top: 3rem;
}

.social-link {
    display: inline-block;
    color: rgba(156, 39, 176, 0.8);
    transition: all 0.4s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin: 0 0.8rem;
    border: 1px solid rgba(156, 39, 176, 0.2);
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: #9c27b0;
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.2);
}

/* Interactive Progress Bar */
.progress-container {
    max-width: 400px;
    margin: 2rem auto 0;
}

.progress-label {
    color: rgba(156, 39, 176, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.progress {
    height: 8px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.progress-bar {
    background: linear-gradient(45deg, #9c27b0, #e1bee7);
    border-radius: 10px;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

/* Interactive Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(156, 39, 176, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    animation: tooltipFadeIn 0.3s ease;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(156, 39, 176, 0.9);
    z-index: 1000;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Additional Interactive Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Alert Styling */
.alert-success {
    background: rgba(76, 175, 80, 0.9);
    border: none;
    color: #fff;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #9c27b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .social-link {
        margin: 0 0.4rem;
        padding: 0.8rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.8rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .social-link {
        margin: 0 0.3rem;
        padding: 0.6rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #9c27b0, #e1bee7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #e1bee7, #9c27b0);
} 