/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
}

h2 {
    font-size: 2.25rem;
    font-weight: 300;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Header */header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.8rem 0;
}

.logo {
    flex-shrink: 0;
    position: absolute;
    left: 1.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 2rem;
}

.nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    position: absolute;
    right: 2rem;
}

.logo-img {
    height: 25px;
    width: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.nav-link {
    text-decoration: none !important;
    color: #2c2c2c !important;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    border-bottom: none !important;
    border: none !important;
}

.nav-link:hover,
.nav-link.active {
    color: #8b7355 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

.nav-link:visited {
    color: #2c2c2c !important;
    text-decoration: none !important;
}

.nav-link:focus {
    color: #2c2c2c !important;
    text-decoration: none !important;
    outline: none !important;
}

.nav-link:link {
    color: #2c2c2c !important;
    text-decoration: none !important;
}

/* Additional overrides to ensure no blue color or underlines */
.nav a,
.nav a:link,
.nav a:visited,
.nav a:hover,
.nav a:active {
    color: #2c2c2c !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.nav a:hover,
.nav a.active {
    color: #8b7355 !important;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    z-index: 999;
    padding: 2rem 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 1rem 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Exactly 5 columns */
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Temporary Tattoo Carousel */
.temp-tattoo-carousel {
    padding: 4rem 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 2rem;
}

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

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

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

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

.carousel-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

.carousel-item .price {
    font-weight: 500;
    color: #8b7355;
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #8b7355;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #2c2c2c;
    color: #f5f5f5;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 1.2rem 0;
    width: 100vw;
    margin: 0 calc(-50vw + 50%) 2rem calc(-50vw + 50%);
    border-radius: 0;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
    color: white;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #8b7355;
}

.footer-social a[href*="mailto"] {
    color: #8b7355;
}

.footer-social a[href*="mailto"]:hover {
    color: #a68660;
}

.footer-social a {
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.footer-social a[href*="mailto"] {
    color: #8b7355;
}

.footer-social a:hover {
    color: #6d5a42;
}

.footer-newsletter {
    text-align: right;
}

.footer-newsletter p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 1px solid #666;
    border-radius: 6px;
    background: #444;
    color: white;
    font-size: 0.9rem;
    min-width: 140px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #6d5a42;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 1rem 0;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 40px !important;
        max-height: 40px !important;
    }
    
    .nav {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        padding: 2rem;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }
    
    .mobile-nav-list li {
        margin: 1.5rem 0;
    }
    
    .mobile-nav-link {
        font-size: 1.5rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
    
    /* Hero Sections Mobile */
    .hero {
        padding: 3rem 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Buttons Mobile */
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Sections Mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 1rem auto 0;
    }
    
    .newsletter-form input {
        width: 100%;
        min-width: auto;
    }
    
    /* Artist Carousel Mobile */
    .artist-carousel-container {
        padding: 0 1rem;
    }
    
    .artist-carousel {
        gap: 10px;
    }
    
    .carousel-item {
        flex: 0 0 280px;
        height: 200px;
    }
    
    /* Store/Products Mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-card h3 {
        font-size: 1rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
    }
    
    /* FAQ Mobile */
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-item {
        flex: 0 0 250px;
        height: 180px;
    }
}

/* Hover Effects for Desktop */
@media (min-width: 769px) {
    .gallery-item img {
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.08);
    }
    
    .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}


/* Instagram Carousel Styles */
.instagram-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.instagram-carousel {
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
}

.instagram-post-item {
    flex: 0 0 150px;
    height: 150px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.instagram-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-prev,
.instagram-next {
    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: 2;
    transition: background 0.3s ease;
}

.instagram-prev:hover,
.instagram-next:hover {
    background: white;
}

.instagram-prev {
    left: 10px;
}

.instagram-next {
    right: 10px;
}

@media (max-width: 768px) {
    .instagram-post-item {
        flex: 0 0 120px;
        height: 120px;
    }
    
    .instagram-carousel {
        gap: 10px;
    }
}


/* Updated Footer Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-newsletter {
    flex: 1;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}


/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    .logo-img {
        height: 60px !important;
        max-height: 60px !important;
        width: auto !important;
    }
    
    .header-logo img {
        height: 60px !important;
        max-height: 60px !important;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px !important;
        max-height: 40px !important;
        width: auto !important;
    }
    
    .header-logo img {
        height: 40px !important;
        max-height: 40px !important;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .artist-carousel {
        max-width: 280px;
    }
    
    .artist-carousel .artist-img {
        height: 350px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}


/* Aggressive Mobile Gallery Fixes */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 0 !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.1rem !important;
        margin-top: 1rem !important;
    }
    
    .gallery-item {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gallery-item img {
        height: 140px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 0.1rem !important;
    }
    
    .gallery-item img {
        height: 180px !important;
    }
}

