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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #d4af37;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-light: #0a0a0a;
    --bg-dark: #000000;
    --bg-section: #111111;
    --border-color: #2a2a2a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: #000000;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    color: #E4405F;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:not(.cta-button) {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background-color: #e5c857;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.language-toggle {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    margin-left: 0.5rem;
}

.language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section - Dark & Moody Artistic Style */
.hero {
    margin-top: 80px;
    height: 90vh;
    min-height: 700px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

/* Background Image Overlay - Hero image */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
    filter: grayscale(10%) brightness(1);
}

/* Dark overlay for moody effect - 20% dark to achieve 80% image visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle texture overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        ),
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 20px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(212, 175, 55, 0.2);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-family: var(--font-body);
}

/* Artistic Elements - Subtle and Dark */
.hero-tattoo-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle vignette effect */
.hero-tattoo-elements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Minimal decorative lines */
.tattoo-ornament {
    position: absolute;
    opacity: 0.15;
    color: rgba(212, 175, 55, 0.3);
    font-size: 300px;
    font-family: serif;
    filter: blur(1px);
}

.tattoo-ornament.top-left {
    top: -100px;
    left: -100px;
    transform: rotate(-25deg);
}

.tattoo-ornament.bottom-right {
    bottom: -100px;
    right: -100px;
    transform: rotate(25deg);
}

/* Subtle ink spots - very dark */
.ink-drop {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.ink-drop:nth-child(1) {
    top: 10%;
    left: 5%;
    opacity: 0.3;
}

.ink-drop:nth-child(2) {
    top: 30%;
    right: 10%;
    opacity: 0.25;
    width: 150px;
    height: 150px;
}

.ink-drop:nth-child(3) {
    bottom: 20%;
    left: 15%;
    opacity: 0.2;
    width: 180px;
    height: 180px;
}

.ink-drop:nth-child(4) {
    bottom: 10%;
    right: 5%;
    opacity: 0.3;
}

/* Section Styles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Appointment Section */
.appointment-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.appointment-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #111111;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #1a1a1a;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #1a1a1a;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #e5c857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Artists Preview */
.artists-preview {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

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

.artist-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.artist-image-placeholder .artist-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.artist-image-placeholder span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.artist-image-placeholder:has(.artist-profile-img[src]:not([src=""])) span,
.artist-image-placeholder .artist-profile-img[src]:not([src=""]) ~ span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.artist-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.view-gallery {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-gallery:hover {
    color: #e5c857;
    text-decoration: underline;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-post {
    background-color: #111111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.blog-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.blog-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: shimmer 3s infinite;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: #e5c857;
    text-decoration: underline;
}

/* Blog Post Full View */
.blog-post-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    min-height: calc(100vh - 200px);
}

.blog-post-full {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    margin: 1rem 0;
    line-height: 1.2;
}

.blog-post-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-video-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.blog-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-featured-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-video-preview:hover .video-play-overlay {
    background-color: rgba(220, 53, 69, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 4rem 0;
    background: #000000;
    color: var(--secondary-color);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* Artist Section */
.artist-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.artist-section:last-child {
    border-bottom: none;
}

.artist-profile {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent-color);
    position: relative;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.artist-avatar img.artist-profile-img {
    position: relative;
    z-index: 2;
}

.artist-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-profile-img[style*="display: none"] {
    display: none !important;
}

.artist-avatar .artist-profile-img:not([style*="display: none"]) {
    display: block !important;
}

.artist-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.artist-avatar:has(img.artist-profile-img[src]:not([src=""])) .artist-avatar-placeholder,
.artist-avatar img.artist-profile-img:not([src=""]) ~ .artist-avatar-placeholder {
    display: none;
}

.artist-info {
    text-align: center;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.artist-bio {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.artist-social {
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #e5c857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Gallery */
.gallery-container {
    margin-top: 3rem;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-grid.instagram-gallery {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img.thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    position: relative;
}

.gallery-item img.thumb-image[data-load="false"] {
    opacity: 0;
}

.gallery-item img.thumb-image.loaded {
    opacity: 1;
}

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

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.gallery-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.view-full-gallery {
    display: block;
    text-align: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: color 0.3s ease;
}

.view-full-gallery:hover {
    color: var(--primary-color);
}

/* Instagram Gallery Loading & Error States */
.gallery-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.gallery-error {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.gallery-error p {
    margin-bottom: 1rem;
}

/* Instagram Post Styling */
.instagram-post {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e5c857;
    text-decoration: underline;
}

.artist-links {
    list-style: none;
}

.artist-links li {
    margin-bottom: 0.5rem;
}

.artist-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-links a:hover {
    color: #e5c857;
    text-decoration: underline;
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    background-color: #111111;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0.5rem 20px;
    }

    .nav-menu {
        top: 55px;
    }

    .nav-left {
        gap: 0.75rem;
    }

    .instagram-icon {
        width: 20px;
        height: 20px;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .language-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 80vh;
        min-height: 600px;
        margin-top: 48px;
    }

    .hero-image-overlay {
        background-size: contain;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 10px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 5px;
    }

    .tattoo-ornament {
        font-size: 180px;
        opacity: 0.1;
    }

    .ink-drop {
        width: 120px;
        height: 120px;
    }

    .ink-drop:nth-child(2),
    .ink-drop:nth-child(3),
    .ink-drop:nth-child(4) {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 2rem;
    }

    .appointment-form {
        padding: 2rem 1.5rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid.instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
        min-height: 500px;
        margin-top: 48px;
    }

    .hero-image-overlay {
        background-size: contain;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 6px;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    .tattoo-ornament {
        font-size: 150px;
        opacity: 0.08;
    }

    .ink-drop {
        width: 100px;
        height: 100px;
    }

    .ink-drop:nth-child(2),
    .ink-drop:nth-child(3),
    .ink-drop:nth-child(4) {
        width: 80px;
        height: 80px;
    }

    .container {
        padding: 0 15px;
    }

    .appointment-form,
    .contact-form {
        padding: 1.5rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid.instagram-gallery {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-image-placeholder {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .artist-avatar {
        width: 120px;
        height: 120px;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-video-wrapper {
        padding-bottom: 56.25%;
    }
}

