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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F1E8;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header Navigation */
.header-navigation {
    width: 100%;
    height: 40px;
    padding: 20px 20px 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(245, 241, 232, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 624px;
    padding: 20px;
    margin-top: 90px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Hero Image Container */
.hero-image-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 595px;
    height: 627px;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Text Labels */
.text-label {
    position: absolute;
    background-color: white;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: black;
    letter-spacing: -0.09px;
    line-height: 1.45;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    box-sizing: border-box;
    max-width: 100%;
}

.text-label:hover {
    opacity: 0.8;
}

.text-label p {
    margin: 0;
    line-height: 1.45;
}

/* Desktop Layout (1280px and above) */
@media (min-width: 1280px) {
    .header-navigation {
        max-width: 1280px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-section {
        max-width: 1280px;
        margin: 90px auto 0;
        padding: 20px;
        height: 624px;
        overflow: hidden;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-image-container {
        width: 595px;
        height: 627px;
    }
    
    .label-yoga-iyengar {
        left: 193px;
        top: 194px;
        width: 160px;
        height: 24px;
    }
    
    .label-miguel-jaime {
        left: 840px;
        top: 105px;
        width: 160px;
        height: 24px;
    }
    
    .label-la-clase {
        left: 731px;
        top: 280px;
        width: 160px;
        height: 24px;
    }
    
    .label-horarios {
        left: 278px;
        top: 356px;
        width: 160px;
        height: 24px;
    }
}

/* Tablet Layout (768px to 1279px) */
@media (min-width: 768px) and (max-width: 1279px) {
    .header-navigation {
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-section {
        max-width: 800px;
        margin: 90px auto 0;
        padding: 20px;
        height: 624px;
    }
    
    .hero-image-container {
        width: 501px;
        height: 476px;
    }
    
    .label-yoga-iyengar {
        left: 37px;
        top: 207px;
        width: 139px;
        height: 21px;
    }
    
    .label-miguel-jaime {
        right: 60px;
        top: 128px;
        width: 139px;
        height: 21px;
    }
    
    .label-la-clase {
        right: 147px;
        top: 293px;
        width: 139px;
        height: 21px;
    }
    
    .label-horarios {
        left: 77px;
        top: 370px;
        width: 139px;
        height: 21px;
    }
}

/* Mobile Layout (up to 767px) */
@media (max-width: 767px) {
    .hero-section {
        max-width: 375px;
        margin: 50px auto 0;
        padding: 20px;
        height: 624px;
    }
    
    .hero-image-container {
        width: 382px;
        height: 362px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .label-yoga-iyengar {
        left: 13px;
        top: 10px;
        width: 160px;
        height: 24px;
    }
    
    .label-miguel-jaime {
        right: 33px;
        top: 129px;
        width: 139px;
        height: 21px;
    }
    
    .label-la-clase {
        left: 220px;
        top: 335px;
        width: 139px;
        height: 21px;
    }
    
    .label-horarios {
        left: 13px;
        top: 449px;
        width: 139px;
        height: 21px;
    }
}

/* Small Mobile (very small screens) */
@media (max-width: 374px) {
    .hero-section {
        max-width: 100%;
        padding: 10px;
    }
    
    .hero-image-container {
        width: calc(100% - 40px);
        max-width: 382px;
        height: auto;
        aspect-ratio: 382 / 362;
    }
    
    .text-label {
        font-size: 16px;
        padding: 0 10px;
    }
}
