/* Base Styles */
:root {
    --primary-color: #ff3366;
    --secondary-color: #6c63ff;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --text-color: #222222;
    --accent-color: #ff3366;
    --text-secondary: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links .nav-cta {
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transition: right 0.5s ease;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
        z-index: 2;
    }

    /* Navigation Active States */
    .nav-active {
        right: 0;
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Animation for Nav Links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--light-color);
    z-index: 1;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
    object-fit: cover;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button.pulse {
    background: var(--primary-color);
    color: var(--light-color);
    animation: pulse 2s infinite;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    backdrop-filter: blur(10px);
}

/* About Section */
.section-padding {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-container {
    position: relative;
    flex: 1;
}

.hover-effect {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hover-effect:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: -20px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
}

/* Skills and Achievements */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.skill-tag {
    padding: 8px 20px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    font-weight: 500;
}

.achievements {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.achievement-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact Section */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
}

/* Social Media Colors */
.instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok { 
    background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55, #000000);
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.fab-button:hover {
    transform: scale(1.1);
}

.phone {
    background: var(--primary-color);
}

.whatsapp {
    background: #25d366;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 20px 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .achievements {
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-btn {
        width: 80%;
        justify-content: center;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.services-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-items {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 20px;
    transition: 0.3s;
}

.menu-items.active {
    right: 0;
}

.menu-items a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.menu-items a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Music Mixes Styles */
.mixes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.mix-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mix-image {
    position: relative;
    aspect-ratio: 16/9;
}

.mix-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.mix-card:hover .mix-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.mix-info {
    padding: 20px;
}

.mix-info h3 {
    margin-bottom: 10px;
}

.mix-controls {
    margin-top: 15px;
}

.progress-bar {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    width: 0;
    border-radius: 2px;
}

.control-buttons {
    display: flex;
    gap: 10px;
}

.stream-btn, .download-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stream-btn {
    background: var(--primary-color);
    color: white;
}

.download-btn {
    background: #eee;
    color: var(--dark-color);
    text-decoration: none;
    padding: 8px 12px;
}

/* Mixes Section Styles */
.mixes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mix-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mix-card:hover {
    transform: translateY(-5px);
}

.mix-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mix-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mix-card:hover .mix-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--accent-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.mix-info {
    padding: 1.5rem;
}

.mix-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.mix-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.mix-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.mix-actions {
    display: flex;
    gap: 1rem;
}

.stream-btn, .download-btn {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.stream-btn {
    background: var(--accent-color);
    color: white;
}

.download-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

/* Audio Player Styles */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.player-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.player-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.player-controls {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 1rem;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    width: 0;
}

.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.control-buttons button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .mixes-grid {
        grid-template-columns: 1fr;
    }
    
    .player-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .player-controls {
        width: 100%;
        margin: 0;
    }
}

/* Mobile-Friendly Styles */

/* Base Mobile Styles */
@media screen and (max-width: 768px) {
    /* Navigation Adjustments */
    .glass-nav {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hero Section Adjustments */
    .hero-content {
        padding: 1rem;
        margin-top: 60px;
    }

    .hero-image img {
        width: 150px;
        height: 150px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        padding: 1rem;
    }

    .about-image-container {
        width: 100%;
        margin-bottom: 2rem;
    }

    .skills-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .skill-tag {
        margin: 0.3rem;
    }

    .achievements {
        flex-direction: column;
        gap: 1rem;
    }

    .achievement-card {
        width: 100%;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Mixes Section */
    .mixes-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .mix-card {
        margin-bottom: 1.5rem;
    }

    .mix-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    /* Contact Section */
    .quick-contact {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-btn {
        width: 100%;
    }

    /* Audio Player Adjustments */
    .audio-player {
        padding: 0.8rem;
    }

    .player-content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .now-playing {
        justify-content: center;
    }

    .player-controls {
        width: 100%;
    }

    /* FAB Adjustments */
    .fab-container {
        bottom: 1rem;
        right: 1rem;
        gap: 0.8rem;
    }

    .fab-button {
        width: 45px;
        height: 45px;
    }
}

/* Small Phone Optimization */
@media screen and (max-width: 375px) {
    .logo {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mix-info h3 {
        font-size: 1.2rem;
    }
}

/* Landscape Mode Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-links {
        padding-top: 60px;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero-content {
        margin-top: 80px;
    }

    .hero-image img {
        width: 100px;
        height: 100px;
    }
}

/* General Mobile Improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

input, 
button, 
select, 
textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
}

.section-padding {
    padding: 60px 1rem;
}

/* Touch-friendly hover states */
@media (hover: none) {
    .service-card:hover,
    .mix-card:hover,
    .gallery-item:hover {
        transform: none;
    }

    .nav-links a:active,
    .cta-button:active,
    .social-btn:active {
        opacity: 0.7;
    }
}

/* Loading Performance */
img {
    loading: lazy;
}

/* Smooth Scrolling for iOS */
html {
    -webkit-overflow-scrolling: touch;
}

/* Mobile Top Navigation */
.mobile-nav {
    display: flex; /* Use flexbox for layout */
    justify-content: space-around; /* Space items evenly */
    background-color: #fff; /* Set a background color */
    padding: 10px; /* Add some padding */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
    position: fixed; /* Keep it fixed at the top */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensure it stays on top */
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-item {
    color: #000; /* Text color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make text bold */
}

/* Change color on hover */
.mobile-nav-item:hover {
    color: #007bff; /* Change color on hover */
}

/* Small screen optimization */
@media screen and (max-width: 375px) {
    .mobile-nav-item {
        font-size: 0.8rem;
    }
    
    .mobile-nav-item i {
        font-size: 1.2rem;
    }
}
