/* Tattoos: Why Airbrush Page Styles */

.tattoos-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    margin-top: 3rem;
}

.tattoos-hero-image {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

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

.tattoos-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tattoos-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.tattoos-hero-title {
    font-family: 'Sedgwick Ave Display';
    font-size: 3rem;
    color: #d03995;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 1);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    margin: 0;
}

/* Benefits Cards Section */
.tattoos-benefits {
    padding: 80px 0;
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit-card-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.tattoos-card-icons {
    height: 8rem;
    width: 8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tattoos-hero {
        padding: 0 5%;
    }
    
    .tattoos-hero-image {
        left: 5%;
        width: 90%;
    }
    
    .benefits-cards-grid {
        gap: 30px;
        max-width: 90%;
    }
    
    .tattoos-hero-title {
        font-size: 3rem;
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {
    .tattoos-hero {
        height: 50vh;
        min-height: 350px;
        padding: 0 2.5%;
    }
    
    .tattoos-hero-image {
        left: 2.5%;
        width: 95%;
        border-radius: 10px;
    }
    
    .tattoos-hero-title {
        font-size: 2.2rem;
        padding: 15px 25px;
    }
    
    .benefits-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 95%;
    }
    
    .benefit-card-item {
        padding: 30px 25px;
    }
    
    .benefit-icon-large {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .benefit-card-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .tattoos-benefits {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .tattoos-hero-title {
        font-size: 1.8rem;
        padding: 12px 20px;
    }
    
    .benefit-card-item {
        padding: 25px 20px;
    }
    
    .benefit-icon-large {
        font-size: 2.5rem;
    }
}