/* Artesaos Page Styles - 75% scale from 1920px to 1440px */

.artesaos-page {
    min-height: 100vh;
    background: white;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Hero Section */
.artesaos-hero {
    padding: 250px 0 0 0;
    background: white;
    position: relative;
    min-height: 440px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    width: 1185.75px; /* 1581 * 0.75 = 1185.75px */
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 125px;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    background: #63BEA8;
    padding: 16px 45px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-badge span {
    color: white;
    font-family: 'Afacad', sans-serif;
    font-size: 22px;
}

.hero-name {
    font-family: 'ABeeZee', sans-serif;
    font-size: 39px; /* 75% of 52px */
    font-weight: 400;
    color: white;
    margin: 0 0 15px 0;
}

.hero-city {
    font-family: 'ABeeZee', sans-serif;
    font-size: 18px;
    color: white;
    margin: 0 0 30px 0;
}

.hero-location p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: white;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image {
    flex: 0 0 368px; /* 75% of 491px */
    height: 441px; /* 75% of 588px */
    border-radius: 46px;
    overflow: hidden;
    box-shadow: 0px 4px 188px rgba(207, 78, 63, 0.27);
    position: relative;
    top: -37.5px; /* 50 * 0.75 = 37.5px */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Description Section */
.artesaos-description {
    padding: 60px 0;
    background: white;
    position: relative;
}

/* Auxiliary Circle Elements */
.aux-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 422px; /* 75% of 563px */
    height: 431px; /* 75% of 575px */
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.aux-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 422px; /* 75% of 563px */
    height: 431px; /* 75% of 575px */
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.description-content {
    max-width: 977px;
    margin: 0 auto;
    padding: 0 125px;
    position: relative;
    z-index: 1;
}

.description-text {
    font-family: 'Afacad', sans-serif;
    font-size: 21px; /* Increased by 50% from 14px (14 * 1.5 = 21) */
    line-height: 1.6;
    color: black;
}

.description-text p {
    margin-bottom: 20px;
}

/* Gallery Section */
.artesaos-gallery {
    padding: 60px 0;
    background: white;
    position: relative;
}

.gallery-title {
    text-align: center;
    font-family: 'Afacad', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #3CBADC;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

.gallery-container {
    max-width: 1462px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px; /* 75% of 23px */
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 14px; /* 75% of 18px */
    overflow: hidden;
    box-shadow: 0px 3px 85px rgba(0, 0, 0, 0.12); /* 75% */
    background: white;
    aspect-ratio: 365 / 431;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Gallery Navigation Arrows */
.gallery-arrow {
    position: absolute;
    width: 67px; /* 89px * 0.75 = 66.75px */
    height: 65px; /* 87px * 0.75 = 65.25px */
    background: #F29101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 145, 1, 0.3);
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background: #E88A01;
    box-shadow: 0 6px 16px rgba(242, 145, 1, 0.4);
}

.gallery-arrow-left {
    left: -0px;
}

.gallery-arrow-right {
    right: -0px;
}

.gallery-arrow svg {
    width: 26px;
    height: 26px;
}

/* CTA Section */
.artesaos-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 125px;
}

.cta-text {
    font-family: 'Afacad', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #CE4E3F;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.4;
}

.cta-button {
    background: #63BEA8;
    color: white;
    font-family: 'Barrio', sans-serif;
    font-size: 27px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 18px 45px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4fa893;
    transform: translateY(-2px);
}

/* Map Section */
.artesaos-map {
    padding: 50px 0 0;
    background: white;
}

.map-container {
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 125px;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content,
    .description-content,
    .gallery-grid,
    .cta-content,
    .map-container {
        padding: 0 50px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-image {
        flex: 0 0 280px;
        height: 340px;
    }
    
    .hero-name {
        font-size: 42px;
    }

    .hero-background {
        width: 900px;
    }
}

@media (max-width: 1200px) {
    .gallery-container {
        padding: 0 70px;
    }
    
    .gallery-arrow-left {
        left: -35px;
    }
    
    .gallery-arrow-right {
        right: -35px;
    }
}

@media (max-width: 768px) {
    .artesaos-hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 0 30px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
        flex: none;
        height: auto;
        margin: 0 auto;
    }
    
    .hero-name {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-city {
        text-align: center;
    }
    
    .hero-badge {
        display: block;
        text-align: center;
        padding: 12px 30px;
    }
    
    .hero-location {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .description-content {
        padding: 0 30px;
    }
    
    .gallery-container {
        padding: 0 60px;
    }
    
    .gallery-arrow {
        width: 60px;
        height: 60px;
    }
    
    .gallery-arrow-left {
        left: -30px;
    }
    
    .gallery-arrow-right {
        right: -30px;
    }
    
    .gallery-arrow svg {
        width: 24px;
        height: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-title {
        font-size: 28px;
        padding: 0 30px;
    }

    .gallery-arrow {
        display: none; /* Hide arrows on mobile */
    }

    /* Hide auxiliary circles on mobile */
    .aux-circle-1,
    .aux-circle-2 {
        display: none;
    }
    
    .cta-content {
        padding: 0 30px;
    }
    
    .cta-text {
        font-size: 22px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 14px 35px;
    }
    
    .map-container {
        padding: 0 30px;
    }

    .hero-background {
        width: 100%;
        min-width: 768px;
    }
}

@media (max-width: 480px) {
    .artesaos-hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-name {
        font-size: 28px;
    }
    
    .hero-badge span {
        font-size: 16px;
    }
    
    .hero-city {
        font-size: 16px;
    }
    
    .description-content,
    .gallery-container,
    .cta-content,
    .map-container {
        padding: 0 20px;
    }
    
    .description-text {
        font-size: 24px; /* Increased by 50% from 16px (16 * 1.5 = 24) */
    }
    
    .gallery-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }

    .hero-background {
        width: 100%;
    }
}

