* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-letters {
    font-size: 32px;
    font-weight: 700;
    color: #ff8c00;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    border: 3px solid #ff8c00;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
    flex-shrink: 0;
}

.studio-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    z-index: 1001;
}

.main-nav {
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ff8c00;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e67e00;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #333;
}

/* Unique Experience Section */
.unique-experience {
    padding: 120px 0 80px;
}


.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.experience-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.experience-image {
    position: relative;
    overflow: visible;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-mask-overlay {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 140, 0, 0.1);
    clip-path: polygon(
        0% 5%,
        5% 0%,
        95% 0%,
        100% 5%,
        100% 80%,
        98% 85%,
        95% 88%,
        90% 92%,
        85% 95%,
        80% 97%,
        75% 98%,
        70% 99%,
        0% 99%
    );
    -webkit-clip-path: polygon(
        0% 5%,
        5% 0%,
        95% 0%,
        100% 5%,
        100% 80%,
        98% 85%,
        95% 88%,
        90% 92%,
        85% 95%,
        80% 97%,
        75% 98%,
        70% 99%,
        0% 99%
    );
}

.image-mask-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Top left ink splatter */
        radial-gradient(ellipse 200px 250px at 10% 15%, rgba(255, 140, 0, 0.2) 0%, transparent 55%),
        /* Top right geometric cut */
        linear-gradient(135deg, transparent 0%, transparent 55%, rgba(255, 140, 0, 0.18) 55%, rgba(255, 140, 0, 0.28) 65%, transparent 75%),
        /* Bottom ink drip effect */
        radial-gradient(ellipse 400px 120px at 50% 100%, rgba(0, 0, 0, 0.5) 0%, transparent 65%),
        /* Vertical artistic gradient */
        linear-gradient(180deg, rgba(255, 140, 0, 0.12) 0%, transparent 25%, transparent 65%, rgba(0, 0, 0, 0.25) 100%),
        /* Side accent gradients */
        linear-gradient(90deg, rgba(255, 140, 0, 0.1) 0%, transparent 20%),
        linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0%, transparent 25%),
        /* Center vignette */
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.95;
}

.image-mask-overlay::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    background: 
        linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 30% 30%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 75%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 75%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 15px 0 0;
}

.mask-decoration {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
    clip-path: polygon(
        0% 8%,
        8% 0%,
        92% 0%,
        100% 8%,
        100% 75%,
        97% 78%,
        94% 81%,
        90% 84%,
        85% 87%,
        80% 89%,
        0% 89%
    );
    -webkit-clip-path: polygon(
        0% 8%,
        8% 0%,
        92% 0%,
        100% 8%,
        100% 75%,
        97% 78%,
        94% 81%,
        90% 84%,
        85% 87%,
        80% 89%,
        0% 89%
    );
}

.experience-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    filter: contrast(1.15) brightness(0.92) saturate(1.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.experience-image:hover img {
    transform: scale(1.03);
    filter: contrast(1.2) brightness(0.95) saturate(1.15);
}

.experience-image:hover .image-mask-overlay::before {
    opacity: 0.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #ff8c00;
    color: #ff8c00;
}

.gallery-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.gallery-carousel {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.6s linear;
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 2 / 3;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-pagination,
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #ff8c00;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-text {
    padding-right: 20px;
}

.services-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.services-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.services-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.service-image {
    overflow: hidden;
    border-radius: 8px;
}

.service-image:first-child {
    margin-top: -30px;
}

.service-image:last-child {
    margin-top: 30px;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Piercing Section */
.piercing-section {
    padding: 80px 0;
}

.piercing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.piercing-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.piercing-image {
    overflow: hidden;
    border-radius: 8px;
}

.piercing-image:first-child {
    margin-top: -30px;
}

.piercing-image:last-child {
    margin-top: 30px;
}

.piercing-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.piercing-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.piercing-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

/* Artists Section */
.artists-section {
    padding: 80px 0;
    background: #2c2c2c;
    color: #fff;
}

.artists-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.artists-image-container {
    position: relative;
}

.artist-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.artists-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 3px solid #00bcd4;
    padding-bottom: 10px;
    display: inline-block;
}

.artists-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.booking-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px 0;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-link:hover svg {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
}

.social-link:hover::before {
    transform: scale(1.1);
}

/* Facebook */
.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    color: #fff;
}

.social-link.facebook:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-link.facebook::before {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

/* Instagram */
.social-link.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #fff;
}

.social-link.instagram:hover {
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.4);
}

.social-link.instagram::before {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

/* YouTube */
.social-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
}

.social-link.youtube:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-link.youtube::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* Pinterest */
.social-link.pinterest {
    background: linear-gradient(135deg, #bd081c 0%, #8b0615 100%);
    color: #fff;
}

.social-link.pinterest:hover {
    box-shadow: 0 6px 20px rgba(189, 8, 28, 0.4);
}

.social-link.pinterest::before {
    background: linear-gradient(135deg, #bd081c 0%, #8b0615 100%);
}

/* LinkedIn */
.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: #fff;
}

.social-link.linkedin:hover {
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-link.linkedin::before {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

/* Twitter */
.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: #fff;
}

.social-link.twitter:hover {
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.social-link.twitter::before {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff8c00;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.main-footer {
    background: #fff;
    padding: 0;
    border-top: 1px solid #eee;
    width: 100%;
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.footer-logo p {
    color: #666;
    font-size: 14px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ff8c00;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #ff8c00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #e67e00;
}

.footer-bottom {
    background: #ff8c00;
    padding: 20px 0;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .experience-content,
    .services-content,
    .piercing-content,
    .artists-content,
    .booking-content {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        width: 240px;
        height: 360px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .menu-icon {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .main-nav a:hover {
        color: #ff8c00;
        padding-left: 10px;
    }

    .logo-letters {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

    .studio-name {
        font-size: 18px;
    }

    .experience-text h1,
    .section-header h2 {
        font-size: 32px;
    }

    .gallery-item {
        width: 200px;
        height: 300px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .booking-social-links {
        gap: 15px;
        padding: 15px 0;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

