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

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #F4D03F;
    color: #000000;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    padding: 2rem;
}

.hero-title {
    font-family: 'Staatliches', cursive;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hero-performers {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: url('assets/arepa-incident-website-comedians.png') bottom center/cover no-repeat;
    background-size: contain;
    background-position: bottom center;
}

@media (max-width: 480px) {
    .hero-performers {
        height: 25%;
        background-size: cover;
    }
}

/* About Section */
.about {
    background-color: #000000;
    color: #F4D03F;
    padding: 4rem 2rem;
    text-align: center;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.about-description {
    background-color: #F4D03F;
    color: #000000;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 8px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Performers Section */
.performers {
    padding: 4rem 2rem;
}

.performer-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* All performer profiles use the same grid structure */
.performer-profile {
    grid-template-columns: 1fr 1fr;
}

/* Desktop layout: Pedro and Gaby images on the right for variety */
@media (min-width: 769px) {
    .performer-profile.pedro .performer-image,
    .performer-profile.gaby .performer-image {
        order: 2;
    }
}

.performer-info h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #000000;
}

.social-handle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.performer-bio {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    color: #333;
}

.performer-bio strong {
    color: #000000;
}

.performer-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.performer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 8px;
}

.hector-img {
    background: 
        url('assets/bio-hector-nobg-improved.png'),
        /*radial-gradient(circle 120px at 25% 75%, #FF6B35 0%, #FF6B35 100%),*/
        radial-gradient(circle 80px at 80% 20%, #FFE082 0%, #FFE082 100%),
        radial-gradient(circle 60px at 10% 30%, #ff8800 0%, #ff8800 100%),
        linear-gradient(135deg, #333333 0%, #333333 100%);
    background-position: center center, 25% 75%, 80% 20%, 10% 30%, 0 0;
    background-size: 80%, 240px 240px, 160px 160px, 120px 120px, 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .hector-img {
        background-size: 70%, 180px 180px, 120px 120px, 90px 90px, 100% 100%;
    }
}

@media (max-width: 480px) {
    .hector-img {
        background-size: 65%, 140px 140px, 90px 90px, 70px 70px, 100% 100%;
    }
}


.pedro-img {
    background: 
        url('assets/bio-pedro-nobg.png'),
        /*radial-gradient(circle 140px at 70% 30%, #2196F3 0%, #2196F3 100%),*/
        radial-gradient(circle 90px at 20% 80%, #1976D2 0%, #1976D2 100%),
        radial-gradient(circle 70px at 85% 85%, #64B5F6 0%, #64B5F6 100%),
        linear-gradient(45deg, #81D4FA 0%, #42A5F5 100%);
    background-position: center 20%, 70% 30%, 20% 80%, 85% 85%, 0 0;
    background-size: 100%, 280px 280px, 180px 180px, 140px 140px, 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .pedro-img {
        background-size: 90%, 210px 210px, 135px 135px, 105px 105px, 100% 100%;
    }
}

@media (max-width: 480px) {
    .pedro-img {
        background-size: 80%, 160px 160px, 100px 100px, 80px 80px, 100% 100%;
    }
}


.vanessa-img {
    background: 
        url('assets/bio-vane-nobg.png'),
        /*radial-gradient(circle 110px at 30% 70%, #E91E63 0%, #E91E63 100%),*/
        radial-gradient(circle 85px at 80% 25%, #9C27B0 0%, #9C27B0 100%),
        radial-gradient(circle 65px at 15% 15%, #F48FB1 0%, #F48FB1 100%),
        linear-gradient(225deg, #F8BBD9 0%, #E1BEE7 100%);
    background-position: center 20%, 30% 70%, 80% 25%, 15% 15%, 0 0;
    background-size: 75%, 220px 220px, 170px 170px, 130px 130px, 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .vanessa-img {
        background-size: 65%, 165px 165px, 127px 127px, 97px 97px, 100% 100%;
    }
}

@media (max-width: 480px) {
    .vanessa-img {
        background-size: 60%, 130px 130px, 100px 100px, 75px 75px, 100% 100%;
    }
}


.gaby-img {
    background: 
        url('assets/bio-gaby-nobg.png'),
        /*radial-gradient(circle 130px at 60% 40%, #FF1744 0%, #FF1744 100%),*/
        radial-gradient(circle 95px at 20% 75%, #FFCDD2 0%, #FFCDD2 100%),
        radial-gradient(circle 75px at 85% 20%, #e85d8b 0%, #e85d8b 100%),
        linear-gradient(315deg, #FF4081 0%, #FF4081 100%);
    background-position: center center, 60% 40%, 20% 75%, 85% 20%, 0 0;
    background-size: 80%, 260px 260px, 190px 190px, 150px 150px, 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .gaby-img {
        background-size: 70%, 195px 195px, 142px 142px, 112px 112px, 100% 100%;
    }
}

@media (max-width: 480px) {
    .gaby-img {
        background-size: 65%, 150px 150px, 110px 110px, 85px 85px, 100% 100%;
    }
}


/* Contact Section */
.contact {
    background-color: #000000;
    color: #F4D03F;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-phone,
.contact-email {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #F4D03F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero-performers {
        height: 30%;
    }
    
    .performer-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    /* Make all bios consistent: image first, then info */
    .performer-profile .performer-image {
        order: 1;
    }
    
    .performer-profile .performer-info {
        order: 2;
    }
    
    .performer-image {
        height: 300px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .performer-info {
        margin-top: 1rem;
    }
    
    .performer-info h3 {
        margin-bottom: 0.5rem;
    }
    
    .social-handle {
        margin-bottom: 1rem;
    }
    
    .performer-bio {
        padding: 1.2rem;
        margin-top: 0.5rem;
        text-align: left;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-header p,
    .about-description {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(3rem, 12vw, 8rem);
        line-height: 0.8;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 2rem;
    }
    
    .about,
    .performers,
    .contact {
        padding: 2rem 1rem;
    }
    
    .performer-profile {
        margin-bottom: 2.5rem;
        gap: 1.5rem;
    }
    
    .performer-image {
        height: 250px;
        max-width: 300px;
    }
    
    .performer-info h3 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 0.3rem;
        text-align: center;
    }
    
    .social-handle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .performer-bio {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: 1rem;
        line-height: 1.6;
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .about-description {
        margin: 1.5rem auto;
        padding: 1.5rem;
    }
}