/* Page-specific styles */

.page-main {
    padding: 2rem 0 4rem;
}

/* Artist Page */
.artist-hero {
    padding: 3rem 0;
}

.artist-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.artist-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.artist-image-main {
    width: 100%;
}

.artist-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.artist-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.artist-photo-small {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.artist-text h1 {
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.artist-story p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.artist-story a {
    color: #8b7355;
    text-decoration: none;
}

.artist-story a:hover {
    text-decoration: underline;
}

.signature {
    font-style: italic;
    color: #8b7355;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Specialties Section */
.specialties {
    padding: 4rem 0;
    background: #f9f9f9;
    margin: 4rem -20px 0;
}

.specialties h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.specialty-item h3 {
    color: #8b7355;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialty-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    padding: 4rem 0;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #8b7355;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.cta-button.secondary:hover {
    background: #8b7355;
    color: white;
}

/* Vegan & Eco-Friendly Page */
.values-hero {
    text-align: center;
    padding: 3rem 0;
}

.values-hero h1 {
    margin-bottom: 1rem;
}

.values-hero .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.values-content {
    display: grid;
    gap: 4rem;
}

.value-section {
    padding: 3rem 0;
}

.value-section:nth-child(even) {
    background: #f9f9f9;
    margin: 0 -20px;
    padding: 3rem 20px;
}

.value-section h2 {
    color: #8b7355;
    margin-bottom: 2rem;
}

.value-section h3 {
    color: #2c2c2c;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.value-section ul {
    list-style: none;
    padding: 0;
}

.value-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.value-section li::before {
    content: '•';
    color: #8b7355;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Appointment Page */
.appointment-hero {
    text-align: center;
    padding: 3rem 0;
}

.appointment-content {
    display: grid;
    gap: 4rem;
}

.appointment-section {
    padding: 2rem 0;
}

.appointment-section h2 {
    color: #8b7355;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.pricing-item h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.pricing-item .price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.contact-info {
    background: #8b7355;
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* FAQ Page */
.faq-hero {
    text-align: center;
    padding: 3rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #8b7355;
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* Store Page */
.store-hero {
    text-align: center;
    padding: 3rem 0;
}

.store-cta {
    margin-top: 2rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.store-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.store-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.store-item-content {
    padding: 1.5rem;
}

.store-item h3 {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.store-item p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.store-item .price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #8b7355;
    margin-bottom: 1rem;
}

.store-item .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #8b7355;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.store-item .btn:hover {
    background: #6d5a42;
}

/* Temporary Tattoo Info Section */
.temp-tattoo-info {
    padding: 4rem 0;
    background: #f9f9f9;
    margin: 4rem -20px 0;
    text-align: center;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-text h2 {
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.info-text li {
    padding: 0.5rem 0;
    padding-left: 0.8rem;
    position: relative;
}

.info-text li::before {
    content: '•';
    color: #8b7355;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Application Instructions */
.application-instructions {
    padding: 4rem 0;
}

.application-instructions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.instruction-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #8b7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 auto 1rem;
}

.instruction-step h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.instruction-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Shop CTA */
.shop-cta {
    text-align: center;
    padding: 4rem 0;
    background: #8b7355;
    color: white;
    margin: 4rem -20px 0;
    border-radius: 12px;
}

.shop-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.shop-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.shop-cta .cta-button {
    background: white;
    color: #8b7355;
}

.shop-cta .cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .artist-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-photo {
        height: 300px;
    }
    
    .artist-photo-small {
        height: 150px;
    }
    
    .specialties {
        margin: 2rem -15px 0;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .value-section:nth-child(even) {
        margin: 0 -15px;
        padding: 3rem 15px;
    }
}

@media (max-width: 1024px) {
    .store-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 1rem 0 3rem;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .artist-hero,
    .values-hero,
    .appointment-hero,
    .faq-hero,
    .store-hero {
        padding: 2rem 0;
    }
    
    .contact-info {
        padding: 2rem;
        margin: 2rem 0;
    }
}


/* Artist Carousel */
.artist-carousel {
    position: relative;
    max-width: 300px;
    margin: 2rem auto;
}

.artist-carousel .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.artist-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.artist-carousel .carousel-slide {
    flex: 0 0 100%;
}

.artist-carousel {
    position: relative;
    max-width: 350px;
    margin: 2rem auto;
}

.artist-carousel .artist-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.artist-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.artist-carousel .carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.artist-carousel .carousel-btn.prev {
    left: 15px;
}

.artist-carousel .carousel-btn.next {
    right: 15px;
}

.artist-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.artist-carousel .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.artist-carousel .dot.active {
    background: #8b7355;
}


.italic-thin {
    font-style: italic;
    font-weight: 300;
}


.instagram-highlights {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}


.contact-info-simple {
    text-align: center;
    padding: 2rem 0;
}

.contact-info-simple h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-icons a {
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.contact-icons a:hover {
    color: #8b7355;
}


.shop-cta-simple {
    text-align: center;
    padding: 2rem 0;
}

.shop-cta-simple h2 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}


/* Light green background for eco-friendly products */
.values-hero {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
}

.value-section:nth-child(even) {
    background: #f0f8f0;
    margin: 0 -15px;
    padding: 3rem 15px;
}


.italic-thin-centered {
    font-style: italic;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c2c2c;
}


/* Light brown email links */
a[href^="mailto:"] {
    color: #8b7355;
    text-decoration: none;
}

a[href^="mailto:"]:hover {
    color: #6d5a42;
    text-decoration: underline;
}


/* Ready to Shop Small Style */
.ready-to-shop-small {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c2c2c;
}

/* Instructions Grid Two Rows */
.instructions-grid-two-rows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .instructions-grid-two-rows {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .instructions-grid-two-rows {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Contact Info Appointment */
.contact-info-appointment {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-info-appointment h3 {
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}


/* Mobile Fixes for All Pages */
@media (max-width: 768px) {
    .artist-carousel {
        max-width: 280px;
        margin: 1.5rem auto;
    }
    
    .artist-carousel .artist-img {
        height: 350px;
    }
    
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .instructions-grid-two-rows {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .artist-carousel {
        max-width: 250px;
    }
    
    .artist-carousel .artist-img {
        height: 300px;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .instructions-grid-two-rows {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}


/* Rotate only the second artist photo to vertical */
.artist-carousel .carousel-slide:nth-child(2) .artist-img {
    transform: rotate(90deg);
    object-fit: cover;
    object-position: center;
}



/* Thank You Page Styles */
.thank-you-content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #8b7355;
    margin-bottom: 2rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thank-you-content .cta-button {
    margin-top: 2rem;
}

