/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1f1f1f 50%, #2a2a2a 75%, #1a1a1a 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(128, 0, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

h2 {
    font-size: 2.2rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

h3 {
    font-size: 1.5rem;
    color: #da70d6;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(218, 112, 214, 0.5);
}

p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 3px solid #ffd700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo i {
    font-size: 2.5rem;
    color: #ffd700;
    animation: swing 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

@keyframes swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.nav a:hover {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.hero-content h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: left;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.hero-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #1a1a1a;
    border: 2px solid rgba(255, 107, 107, 0.5);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

/* Jazz Cat Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.jazz-cat {
    position: relative;
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.cat-body {
    position: absolute;
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 60px 60px 40px 40px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cat-head {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cat-ears {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #ffd700;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.cat-ears::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #ffed4e;
    top: 5px;
    left: -12px;
}

.cat-eyes {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 50%;
    top: 35px;
    left: 25px;
    box-shadow: 18px 0 0 #1a1a1a;
}

.cat-nose {
    position: absolute;
    width: 6px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 50%;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}

.cat-mouth {
    position: absolute;
    width: 20px;
    height: 10px;
    border: 2px solid #1a1a1a;
    border-top: none;
    border-radius: 0 0 20px 20px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.saxophone {
    position: absolute;
    width: 60px;
    height: 120px;
    background: linear-gradient(45deg, #da70d6, #9370db);
    border-radius: 30px 30px 0 0;
    right: -20px;
    top: 40px;
    transform: rotate(15deg);
    box-shadow: 0 8px 25px rgba(218, 112, 214, 0.4);
}

.saxophone::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    top: 80px;
    right: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Story Section */
.story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Friends Group Illustration */
.friends-group {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.friend {
    width: 60px;
    height: 80px;
    border-radius: 30px 30px 20px 20px;
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.friend-1 {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    left: 20px;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.friend-2 {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.friend-3 {
    background: linear-gradient(45deg, #da70d6, #9370db);
    right: 20px;
    animation-delay: 2s;
    box-shadow: 0 0 20px rgba(218, 112, 214, 0.5);
}

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

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

.note {
    position: absolute;
    font-size: 2rem;
    color: #ffd700;
    animation: noteFloat 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.note-1 {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
}

.note-2 {
    top: 60px;
    right: 40px;
    animation-delay: 1.5s;
}

.note-3 {
    bottom: 40px;
    left: 50%;
    animation-delay: 3s;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Music Section */
.music {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.music-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.card-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.social-link i {
    font-size: 2rem;
}

.youtube i {
    color: #ff0000;
}

.spotify i {
    color: #1db954;
}

.instagram i {
    color: #e4405f;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #ffd700;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .story {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-text p {
        text-align: left;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
