/* ============================================
   SALONDEBONG TATTOOS - STYLES
   ============================================ */

:root {
    /* Colors - Elegant, minimal */
    --primary: #1a1a1a;
    --secondary: #2a2a2a;
    --accent: #b8860b; /* Dark gold */
    --accent-light: #d4a017;
    --petrol: #008B8B;
    --petrol-light: #20B2AA;
    --petrol-dark: #006666;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #8a8a8a;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #0a0a0a;
    --border: #e0e0e0;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Effects */
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ============================================
   BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
}

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

.section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================
   AKTION BANNER
   ============================================ */

.aktion-banner {
    background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 100%);
    color: white;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.aktion-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.aktion-emoji {
    font-size: 1.5rem;
}

.aktion-text {
    font-size: 0.95rem;
}

.aktion-text strong {
    color: var(--accent-light);
}

.aktion-btn {
    background: white;
    color: var(--petrol-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.aktion-btn:hover {
    background: rgba(255,255,255,0.9);
}

.aktion-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
    opacity: 0.6;
    transition: var(--transition);
}

.aktion-close:hover {
    opacity: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav:has(~ .aktion-banner) {
    top: 50px;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
    color: var(--accent-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--petrol) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius);
}

.cta-nav:hover {
    background: var(--petrol-light) !important;
    transform: translateY(-2px);
}

.cta-nav::after {
    display: none !important;
}

.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(--primary);
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 50%, var(--petrol-light) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.8;
    animation: ringFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ringFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(3deg) scale(1.01); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1, .hero .brand-name {
    font-family: 'Allura', cursive;
    font-size: 5.5rem;
    margin-bottom: 0;
    color: var(--petrol-light);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-locations {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    background: var(--petrol);
    color: white;
    border-color: var(--petrol);
}

.hero .btn:hover {
    background: white;
    color: var(--petrol-dark);
    border-color: white;
}

/* ============================================
   AKTION SECTION
   ============================================ */

.aktion-section {
    background: var(--primary);
}

.aktion-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.aktion-header {
    background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.aktion-icon {
    font-size: 3rem;
}

.aktion-header h2 {
    margin: 0;
    font-size: 1.75rem;
}

.aktion-date {
    display: block;
    color: var(--accent-light);
    font-size: 1rem;
    margin-top: 5px;
}

.aktion-body {
    padding: 40px;
    color: rgba(255,255,255,0.9);
}

.aktion-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--petrol-light);
}

.aktion-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.aktion-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.aktion-detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.aktion-detail strong {
    display: block;
    margin-bottom: 5px;
}

.aktion-detail p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.aktion-cta {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 30px;
}

.aktion-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.aktion-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.aktion-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.aktion-buttons .btn-primary {
    background: var(--petrol);
    border-color: var(--petrol);
}

.aktion-buttons .btn-primary:hover {
    background: var(--petrol-light);
    border-color: var(--petrol-light);
}

.weisser-ring {
    border-left: 3px solid var(--petrol-light);
    padding-left: 20px;
}

.weisser-ring h4 {
    margin-bottom: 10px;
    color: white;
}

.weisser-ring p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.link-external {
    color: var(--petrol-light);
    font-weight: 600;
    transition: var(--transition);
}

.link-external:hover {
    color: white;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 100%);
    color: white;
}

.about-section .section-title {
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-intro {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.value-tag {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-locations {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.location-tag {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    max-height: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    background: var(--primary);
    color: white;
}

.gallery-section .section-title {
    color: white;
}

.gallery-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
}

.gallery-note a {
    color: var(--petrol-light);
    font-weight: 600;
}

.gallery-note a:hover {
    color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: white;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    color: white;
}

.contact-method:hover {
    border-color: white;
    transform: translateX(5px);
    background: rgba(255,255,255,0.15);
}

.method-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.contact-method strong {
    display: block;
    margin-bottom: 3px;
    color: white;
}

.contact-method span:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand .footer-logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.footer-brand p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-subtitle {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
}

.footer-legal a:hover {
    color: white;
    border-color: var(--petrol-light);
    background: rgba(0, 139, 139, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle span {
        background: white;
    }
    
    .hero h1, .hero .brand-name {
        font-size: 3rem;
    }
    
    .hero .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .hero-ring {
        width: 500px;
        height: 500px;
    }
    
    .hero-locations {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .aktion-banner .aktion-text {
        display: none;
    }
    
    .aktion-content {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .aktion-buttons {
        flex-direction: column;
    }
}