/* okaykayo - dreamy pastel website styles */

:root {
    /* Pastel Color Palette */
    --pastel-pink: #FFB6C1;
    --pastel-blue: #B8C6DB;
    --pastel-purple: #D4A5D4;
    --pastel-lavender: #E6E6FA;
    --soft-white: #FEFEFE;
    --dreamy-gradient: linear-gradient(135deg, #FFB6C1 0%, #B8C6DB 50%, #D4A5D4 100%);
    --glow-shadow: 0 0 20px rgba(255, 182, 193, 0.6);
    
    /* Typography */
    --font-main: 'Comfortaa', cursive;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --hover-scale: scale(1.05);
    --float-duration: 6s;
}

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

body {
    font-family: var(--font-main);
    background: var(--dreamy-gradient);
    min-height: 100vh;
    color: var(--soft-white);
    overflow-x: hidden;
    position: relative;
}

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

.flower, .butterfly {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float var(--float-duration) ease-in-out infinite;
}

.flower-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.flower-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.flower-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.butterfly-1 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.butterfly-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.butterfly-3 {
    top: 70%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo a {
    font-size: 2rem;
    font-weight: 600;
    color: var(--soft-white);
    text-decoration: none;
    text-shadow: var(--glow-shadow);
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 15px;
}

.logo a:hover {
    transform: var(--hover-scale);
    text-shadow: 0 0 30px rgba(255, 182, 193, 0.9);
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 182, 193, 0.3);
    box-shadow: var(--glow-shadow);
    transform: var(--hover-scale);
    border-color: rgba(255, 182, 193, 0.5);
}

/* Page-specific backgrounds */
.listen-page {
    background: linear-gradient(135deg, #9B59B6 0%, #3498DB 50%, #2980B9 100%);
}

.follow-page {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FF69B4 100%);
}

.bio-page {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 50%, #DDA0DD 100%);
}

.support-page {
    background: linear-gradient(135deg, #98FB98 0%, #90EE90 50%, #87CEEB 100%);
}

.videos-page {
    background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 50%, #9370DB 100%);
}

.subscribe-page {
    background: linear-gradient(135deg, #DDA0DD 0%, #DA70D6 50%, #FF1493 100%);
}

/* Main Content */
main {
    padding-top: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Homepage Styles */
.homepage {
    justify-content: center;
    text-align: center;
    padding-top: 0;
}

.main-logo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: var(--glow-shadow);
    animation: gentleGlow 3s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes gentleGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 182, 193, 0.6);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 182, 193, 0.9), 0 0 40px rgba(184, 198, 219, 0.5);
    }
}

/* Content Pages */
.listen-content,
.follow-content,
.bio-content,
.support-content,
.videos-content,
.subscribe-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: var(--glow-shadow);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Listen Page */
.listen-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 280px);
    padding: 20px;
    padding-top: 0px;
    max-width: 800px;
    margin: 0 auto;
}

.content-card {
    background: none;
    padding: 40px;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: none;
    margin-top: 20px;
}

.latest-release {
    margin: 30px 0 40px 0;
}

.latest-release .album-art {
    margin-bottom: 20px;
}

.latest-release h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.latest-release p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.placeholder-art {
    font-size: 4rem;
    margin-bottom: 20px;
}

.platform-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--soft-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    min-height: 55px;
}

.platform-link:hover {
    background: rgba(255, 182, 193, 0.4);
    transform: var(--hover-scale);
    box-shadow: var(--glow-shadow);
    border-color: rgba(255, 182, 193, 0.6);
}

.platform-icon {
    font-size: 1.5rem;
}

/* Follow Page */
.follow-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--soft-white);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-link:hover {
    background: rgba(255, 182, 193, 0.3);
    transform: var(--hover-scale);
    box-shadow: var(--glow-shadow);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.social-link span {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.social-link p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Bio Page */
.bio-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.bio-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.favorite-lyric {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    font-style: italic;
    margin: 30px 0;
    border-left: 4px solid var(--pastel-pink);
}

.favorite-lyric cite {
    display: block;
    text-align: right;
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.polaroid {
    background: var(--soft-white);
    padding: 15px 15px 40px;
    border-radius: 10px;
    color: #333;
    text-align: center;
    transform: rotate(-2deg);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

.photo-placeholder {
    font-size: 3rem;
    margin-bottom: 10px;
}

.polaroid p {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Support Page */
.support-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.support-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--soft-white);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.support-link:hover {
    background: rgba(255, 182, 193, 0.3);
    transform: var(--hover-scale);
    box-shadow: var(--glow-shadow);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.support-link span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.thank-you {
    margin-top: 50px;
    text-align: center;
}

.heart-message {
    font-size: 1.1rem;
    margin-top: 15px;
    color: var(--pastel-pink);
}

/* Videos Page */
.videos-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-card:hover {
    transform: var(--hover-scale);
    box-shadow: var(--glow-shadow);
}

.video-card.featured {
    grid-column: 1 / -1;
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.play-button {
    position: absolute;
    font-size: 2rem;
    background: rgba(255, 182, 193, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.play-button:hover {
    background: rgba(255, 182, 193, 1);
    transform: scale(1.1);
}

.video-card h3 {
    padding: 20px;
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 20px 20px;
    opacity: 0.8;
}

/* Subscribe Page */
.subscribe-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.subscription-form {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--soft-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: var(--pastel-pink);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 182, 193, 0.3);
}

.subscribe-btn {
    width: 100%;
    padding: 15px;
    background: var(--pastel-pink);
    border: none;
    border-radius: 25px;
    color: white;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subscribe-btn:hover {
    background: #FF91A4;
    transform: var(--hover-scale);
    box-shadow: var(--glow-shadow);
}

.confirmation-message {
    text-align: center;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-butterflies {
    margin-top: 20px;
}

.butterfly-fly {
    font-size: 2rem;
    margin: 0 10px;
    animation: fly 2s ease-in-out infinite;
}

.butterfly-fly:nth-child(2) {
    animation-delay: 0.5s;
}

.butterfly-fly:nth-child(3) {
    animation-delay: 1s;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-nav {
        top: 20px;
        padding: 15px 20px;
    }
    
    .logo a {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    main {
        padding-top: 220px;
    }
    
    .listen-content {
        padding-top: 0px;
    }
    
    .content-card {
        padding: 30px 20px;
        margin-top: 10px;
        background: none;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 400px;
    }
    
    .main-logo {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .bio-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bio-text {
        text-align: left;
    }
    
    .photo-gallery {
        flex-direction: row;
        justify-content: center;
    }
    
    .social-grid,
    .support-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card.featured {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .floating-elements .flower,
    .floating-elements .butterfly {
        font-size: 1.5rem;
    }
    
    .main-nav {
        padding: 10px 15px;
    }
    
    .subscription-form {
        padding: 25px;
    }
}