/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --color-bg: #1a1a1a;
    --color-bg-light: #2d2d2d;
    --color-bg-lighter: #3a3a3a;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-accent: #c9a050;
    --color-white: #f5f5f5;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Nunito Sans', sans-serif;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

/* Header */
.header {
    background-color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    max-width: 80px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
}

.logo-tattoo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 8px;
}

.subtitle {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--color-text-muted);
    flex: 1 1 100%;
    order: 2;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.contact-link {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--color-accent);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-accent);
}

.social-icons svg {
    display: block;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    border-bottom-color: var(--color-accent);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 15px;
}

.hero-note {
    font-style: italic;
    font-size: 0.95rem;
}

/* Gallery */
.gallery {
    padding: 60px 0;
    background-color: var(--color-bg);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--color-bg-light);
    color: var(--color-text-muted);
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.filter-btn.active {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

/* About */
.about {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.about-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Pricing */
.pricing {
    padding: 60px 0;
    background-color: var(--color-bg);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.price-card {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.price-label {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Contact */
.contact {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    padding: 20px 0;
}

.address {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.address-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-bg-lighter);
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-bg-lighter);
    border-radius: 4px;
    transition: border-color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #000;
}

.btn-primary:hover {
    background-color: #d4a84a;
    transform: translateY(-2px);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #2e7d32;
    color: white;
}

.form-status.error {
    display: block;
    background-color: #c62828;
    color: white;
}

/* Map */
.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

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

.lightbox.active {
    display: flex;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #000;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        text-align: center;
        padding: 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        width: 150px;
        height: 150px;
    }

    .price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 2rem;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .gallery, .about, .pricing, .contact {
        padding: 40px 0;
    }

    .contact-form {
        padding: 20px;
    }
}
