/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette - top to bottom baby blue to white gradient theme */
    --primary-bg: linear-gradient(to bottom, #e3f2fd 0%, #f0f8ff 30%, #f8f9ff 60%, #ffffff 100%);
    --secondary-bg: rgba(255, 255, 255, 0.9);
    --accent-bg: rgba(255, 255, 255, 0.7);
    --text-primary: #1565c0;
    --text-secondary: #1976d2;
    --text-muted: #42a5f5;
    --accent-color: #0d47a1;
    --accent-hover: #1565c0;
    --border-color: rgba(33, 150, 243, 0.2);
    --shadow: 0 4px 6px -1px rgba(33, 150, 243, 0.1), 0 2px 4px -1px rgba(33, 150, 243, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(33, 150, 243, 0.1), 0 4px 6px -2px rgba(33, 150, 243, 0.05);
    
    /* Typography */
    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-bg: linear-gradient(to bottom, #0d47a1 0%, #1a237e 30%, #000051 60%, #000000 100%);
        --secondary-bg: rgba(13, 71, 161, 0.9);
        --accent-bg: rgba(13, 71, 161, 0.7);
        --text-primary: #e3f2fd;
        --text-secondary: #bbdefb;
        --text-muted: #90caf9;
        --border-color: rgba(187, 222, 251, 0.2);
    }
}

body {
    font-family: var(--font-family);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dynamic geometric background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(33, 150, 243, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 60% 70%, rgba(33, 150, 243, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(33, 150, 243, 0.05) 49%, rgba(33, 150, 243, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(33, 150, 243, 0.03) 49%, rgba(33, 150, 243, 0.03) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(33, 150, 243, 0.02) 49%, rgba(33, 150, 243, 0.02) 51%, transparent 52%);
    background-size: 80px 80px, 60px 60px, 100px 100px;
    animation: drift 25s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(60px) translateY(60px);
    }
}

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

.shape {
    position: absolute;
    opacity: 0.2;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: blur(0.5px);
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.4), rgba(33, 150, 243, 0.15));
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-name: float1, pulse1;
    animation-duration: 12s, 3s;
    animation-iteration-count: infinite, infinite;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.2);
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.2), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 20%;
    right: 15%;
    animation-name: float2;
    animation-delay: -3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.25), rgba(33, 150, 243, 0.08));
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation-name: float3, pulse2;
    animation-duration: 12s, 4s;
    animation-iteration-count: infinite, infinite;
    animation-delay: -7s, -2s;
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.15);
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.25), transparent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 60%;
    right: 30%;
    animation-name: float4;
    animation-delay: -10s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.08));
    border-radius: 50% 20% 50% 20%;
    bottom: 10%;
    right: 10%;
    animation-name: float5;
    animation-delay: -5s;
}

.shape-6 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.25), rgba(33, 150, 243, 0.08));
    border-radius: 30px;
    top: 30%;
    left: 5%;
    animation-name: float6, pulse3;
    animation-duration: 12s, 5s;
    animation-iteration-count: infinite, infinite;
    animation-delay: -8s, -1s;
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.2);
}

.shape-7 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.25), transparent);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 70%;
    right: 5%;
    animation-name: float7;
    animation-delay: -12s;
}

.shape-8 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.18), rgba(33, 150, 243, 0.06));
    border-radius: 50%;
    top: 5%;
    left: 50%;
    animation-name: float8;
    animation-delay: -15s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
    50% { transform: translateY(-10px) translateX(-15px) rotate(180deg); }
    75% { transform: translateY(-40px) translateX(10px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-25px) translateX(-20px) rotate(120deg); }
    66% { transform: translateY(-15px) translateX(25px) rotate(240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(45deg); }
    50% { transform: translateY(-35px) translateX(30px) rotate(225deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(-10px) rotate(90deg); }
    50% { transform: translateY(-30px) translateX(15px) rotate(180deg); }
    75% { transform: translateY(-10px) translateX(-25px) rotate(270deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    40% { transform: translateY(-25px) translateX(20px) rotate(144deg); }
    80% { transform: translateY(-15px) translateX(-20px) rotate(288deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-40px) translateX(30px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-20px) translateX(-25px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-50px) translateX(15px) rotate(270deg) scale(1.05); }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    30% { transform: translateY(-35px) translateX(-30px) rotate(120deg); }
    60% { transform: translateY(-20px) translateX(40px) rotate(240deg); }
    90% { transform: translateY(-45px) translateX(-10px) rotate(360deg); }
}

@keyframes float8 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    20% { transform: translateY(-30px) translateX(25px) rotate(72deg) scale(1.2); }
    40% { transform: translateY(-15px) translateX(-20px) rotate(144deg) scale(0.8); }
    60% { transform: translateY(-40px) translateX(35px) rotate(216deg) scale(1.1); }
    80% { transform: translateY(-25px) translateX(-15px) rotate(288deg) scale(0.9); }
}

@keyframes pulse1 {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

@keyframes pulse2 {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

@keyframes pulse3 {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.08); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-6);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Header styles */
.site {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}



.Title h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.Title p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 400;
}

/* Navigation tabs */
.tabs {
    display: flex;
    gap: var(--space-2);
    background-color: var(--accent-bg);
    padding: var(--space-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: fit-content;
}

.tab {
    background: none;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tab:hover {
    color: var(--text-primary);
    background-color: var(--secondary-bg);
}

.tab[aria-selected="true"] {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.tabs a.tab {
    text-decoration: none;
    color: var(--text-secondary);
}

.tabs a.tab:hover {
    color: var(--text-primary);
}

/* Content wrapper */
.content-wrapper {
    flex: 0;
}



/* Content panels */
.content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section styles */
.section {
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-8);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-2);
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
    border-radius: var(--radius-sm);
}

/* Grid layouts */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background-color: var(--secondary-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    margin-bottom: var(--space-4);
}

.card-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.card-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.card-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.card-content li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    line-height: 1.6;
}

.card-content li::before {
    content: '•';
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.card-meta {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag {
    background-color: var(--accent-bg);
    color: var(--text-secondary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Music specific styles */
.music-player {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.music-player h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.play-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-xl);
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Contact section */
.contact {
    background-color: var(--accent-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    margin-top: var(--space-16);
}

.contact h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ffff00;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: var(--space-4);
    }
    
    .brand {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .Title h1 {
        font-size: 3rem;
    }
    
    .tabs {
        width: 100%;
        justify-content: center;
    }
    
    .tab {
        flex: 1;
        text-align: center;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .Title h1 {
        font-size: 2.5rem;
    }
    
    .Title p {
        font-size: var(--font-size-base);
    }
    
    .card {
        padding: var(--space-4);
    }
    
    .music-player {
        padding: var(--space-4);
    }
}

/* Interactive hover effects for shapes */
.shape:hover {
    opacity: 0.6 !important;
    transform: scale(1.2) !important;
    filter: blur(0px) !important;
    transition: all 0.3s ease !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape:hover {
        opacity: 0.2 !important;
        transform: scale(1) !important;
    }
}

/* Focus styles */
.tab:focus,
.contact-link:focus,
.play-button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .tabs,
    .play-button,
    .contact {
        display: none;
    }
    
    .content {
        display: block !important;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Responsive video embed */
.video-embed {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto var(--space-4);
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: var(--shadow);
}

/* Instagram link styling */
.instagram-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.instagram-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.instagram-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.play-icon {
    font-size: 3rem;
    margin-bottom: var(--space-2);
}

.instagram-placeholder p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
}
