/* Global Styles */
:root {
    --primary-color: #6366f1; /* Electric Blue */
    --secondary-color: #f59e0b; /* Golden Amber */
    --accent-color: #ec4899; /* Neon Pink */
    --dark-bg: #0f0f23; /* Deep Space Blue */
    --card-bg: rgba(255, 255, 255, 0.1); /* Glass Effect */
    --text-color: #ffffff; /* White */
    --text-muted: rgba(255, 255, 255, 0.7); /* Muted White */
    --border-color: rgba(255, 255, 255, 0.2); /* Subtle Border */
    --glow-primary: 0 0 30px rgba(99, 102, 241, 0.5);
    --glow-secondary: 0 0 30px rgba(245, 158, 11, 0.5);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-bg: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 50%, #312e81 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.note-1 { top: 10%; left: 10%; animation-delay: 0s; }
.note-2 { top: 20%; right: 15%; animation-delay: 1s; }
.note-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.note-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.note-5 { top: 50%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float-slow 8s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.brand-section {
    margin-bottom: 3rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.vinyl-disc {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #000, #333);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
    animation: spin 4s linear infinite;
}

.vinyl-center {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.vinyl-grooves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.vinyl-grooves::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: var(--glow-primary);
}

.brand-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-style: italic;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.coming-soon-badge:hover::before {
    left: 100%;
}

.coming-soon-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-secondary);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.badge-content i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Progress Section */
.progress-section {
    max-width: 400px;
    margin: 0 auto;
}

.progress-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glow-primary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 75%;
    animation: progress-glow 2s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes progress-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.5); }
    50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.8); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

#progress-percentage {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
}

.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-secondary);
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-header i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-header h3 {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.contact-info {
    text-align: center;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--text-color);
    text-decoration: none;
    box-shadow: var(--glow-primary);
}

.email-link i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.email-link span {
    font-weight: 500;
    font-size: 1rem;
}

/* Social Section */
.social-section {
    margin-top: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 3.5rem;
    }
    
    .brand-subtitle {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .vinyl-disc {
        width: 100px;
        height: 100px;
    }
    
    .vinyl-center {
        width: 25px;
        height: 25px;
    }
    
    .vinyl-grooves {
        width: 80px;
        height: 80px;
    }
    
    .coming-soon-badge {
        padding: 1.2rem 2.5rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 2.8rem;
    }
    
    .brand-subtitle {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .vinyl-disc {
        width: 80px;
        height: 80px;
    }
    
    .vinyl-center {
        width: 20px;
        height: 20px;
    }
    
    .vinyl-grooves {
        width: 60px;
        height: 60px;
    }
    
    .coming-soon-badge {
        padding: 1rem 2rem;
    }
    
    .badge-content {
        gap: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .email-link {
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 1.2rem;
    }
} 

/* Contact Page Styles */
.contact-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: var(--glow-primary);
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.page-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-style: italic;
}

.contact-info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-secondary);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-header i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.card-header h3 {
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.contact-info-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-secondary);
}

.contact-details h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 500;
}

.contact-form-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.contact-form-card:hover::before {
    left: 100%;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-secondary);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
    backdrop-filter: blur(5px);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    outline: none;
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--glow-primary);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary);
}

.btn-submit i {
    margin-right: 0.8rem;
}

.success-message {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
}

.success-message h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.success-message p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Back to Home Link */
.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.back-home-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--text-color);
    text-decoration: none;
    box-shadow: var(--glow-primary);
}

.back-home-link i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.back-home-link:hover i {
    transform: translateX(-5px);
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.3rem;
    }
    
    .page-tagline {
        font-size: 1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .card-header i {
        font-size: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .page-tagline {
        font-size: 0.9rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.2rem;
    }
    
    .card-header i {
        font-size: 1.8rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-item {
        padding: 1rem 0;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .contact-form .form-control {
        padding: 1rem 1.2rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
    }
    
    .back-home-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 