@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap');

:root {
    --primary-color: #00c2ff;
    --secondary-color: #ff0062;
    --dark-bg: #121212;
    --light-text: #ffffff;
    --beatport-color: #01FF95;
    --apple-color: #ffffff;
    --soundcloud-color: #ff7700;
    --instagram-color: #e1306c;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 320px;
    max-width: 450px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: -15px 0;
    mix-blend-mode: screen;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section con imagen ancha y difuminada */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: blur(3px);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.8));
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    z-index: 3;
    padding: 0 20px;
}

.dj-name {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.platform i {
    font-size: 42px;
    margin-bottom: 10px;
}

.platform span {
    font-weight: 600;
}

.platform.beatport {
    color: var(--beatport-color);
    border: 1px solid rgba(1, 255, 149, 0.3);
}

.platform.apple {
    color: var(--apple-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.platform.soundcloud {
    color: var(--soundcloud-color);
    border: 1px solid rgba(255, 119, 0, 0.3);
}

.platform.instagram {
    color: var(--instagram-color);
    border: 1px solid rgba(225, 48, 108, 0.3);
}

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

.platform.beatport:hover {
    box-shadow: 0 6px 15px rgba(1, 255, 149, 0.3);
}

.platform.apple:hover {
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.platform.soundcloud:hover {
    box-shadow: 0 6px 15px rgba(255, 119, 0, 0.3);
}

.platform.instagram:hover {
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
}

/* Events Section */
.events {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 700;
    margin-right: 20px;
}

.event-date .day {
    font-size: 24px;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.location {
    color: #999;
    font-size: 14px;
}

.event-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.event-button:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Music Section */
.music {
    padding: 100px 0;
}

.track-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.track {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.track-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.track-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.play-button i {
    font-size: 50px;
    color: var(--light-text);
}

.track:hover .play-button {
    opacity: 1;
}

.track:hover .track-image img {
    transform: scale(1.1);
}

.track-info {
    padding: 15px;
}

.track-info h3 {
    margin-bottom: 5px;
}

.track-info p {
    color: #999;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-media a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-media a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-color);
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #080808;
    padding: 30px 0;
    text-align: center;
}

footer p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .dj-name {
        font-size: 3.5rem;
    }
    
    .social-platforms {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .platform {
        width: 80%;
    }
    
    .event {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .event-details {
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    .event-button {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .dj-name {
        font-size: 2.5rem;
    }
    
    .platform i {
        font-size: 36px;
    }
} 
/* Estilos para el correo electrónico */
.email-contact {
    margin-top: 30px;
    text-align: center;
}

.email-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-contact a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.email-contact i {
    font-size: 1.3rem;
}