:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #f8f9fa;
    --border-color: #dee2e6;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #f8f9fa;
    --footer-text: #333333;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #f8f9fa;
    --card-bg: #1e1e1e;
    --border-color: #333333;
    --navbar-bg: rgba(26, 26, 26, 0.95);
    --footer-bg: #1a1a1a;
    --footer-text: #f8f9fa;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-color);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

    a:hover {
        color: var(--primary-color);
    }

.text-accent {
    color: var(--primary-color);
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

    .btn-primary:hover {
        background-color: transparent;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-outline:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.section-padding {
    padding: 100px 0;
}

.bg-dark-custom {
    background-color: var(--card-bg);
}

/* Navigation */
.custom-navbar {
    background-color: var(--navbar-bg);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

    .custom-navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
    white-space: nowrap;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.navbar-logo {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.brand-text {
    color: var(--text-color);
}

.brand-accent {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: var(--transition);
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

.theme-toggle, .lang-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 50%;
}

    .theme-toggle:hover, .lang-toggle:hover {
        color: var(--primary-color);
    }

.theme-toggle {
    margin-right: 10px;
}

/* Typed.js Cursor */
.typed-cursor {
    opacity: 1;
    animation: typedBlink 0.7s infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    animation: fadeIn 1.5s ease;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

    .hero-scroll a {
        color: white;
        font-size: 2rem;
    }

/* About Section */
.about-image {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

    .about-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.image-frame {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 5px solid var(--primary-color);
    top: 10%;
    right: 10%;
    z-index: 1;
}

.image-main {
    position: absolute;
    width: 80%;
    height: 80%;
    background-image: url('https://source.unsplash.com/random/600x800/?tattoo-artist');
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    z-index: 2;
}

.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 1rem;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.about-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 30px;
}

/* Services Section */
.service-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery-item {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    height: 300px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4, .gallery-overlay p {
    color: white;
}

/* Artists Section */
.artist-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

    .artist-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

.artist-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.artist-info {
    padding: 1.5rem;
    text-align: center;
}

    .artist-info h3 {
        margin-bottom: 0.5rem;
    }

    .artist-info p {
        color: var(--gray-color);
        margin-bottom: 1rem;
    }

.artist-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    transition: var(--transition);
}

    .artist-social a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }

/* Testimonials Section */
.testimonial-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-text {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 1rem;
    border: 2px solid var(--primary-color);
}

.author-info h5 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.form-control {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
        border-color: var(--primary-color);
    }

    .form-control::placeholder {
        color: var(--gray-color);
    }

/* Google Maps Container */
.google-maps-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.google-maps-container:hover .map-overlay {
    opacity: 1;
}

/* Footer */
.footer-section {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 3rem;
}

.footer-heading {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-text {
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

    .social-link:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Fixed Social Icons */
.fixed-social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
}

    .social-icon.whatsapp {
        background-color: #25d366;
    }

    .social-icon.instagram {
        background-color: #E4405F;
    }

    .social-icon:hover {
        transform: scale(1.1);
    }

    .social-icon::before {
        content: attr(data-hover-text);
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        white-space: nowrap;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        pointer-events: none;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .social-icon:hover::before {
        opacity: 1;
        transform: translate(0, -50%);
        animation: slideInLeft 0.5s forwards;
    }

/* Animasyonlar */
@keyframes neonGlow {
    from {
        opacity: 0.5;
        text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    }

    to {
        opacity: 1;
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    }
}

@keyframes fireEffect {
    0% {
        color: #ff6b6b;
        text-shadow: 0 0 5px #ff6b6b, 0 0 10px #ff6b6b;
    }

    50% {
        color: #ffb74d;
        text-shadow: 0 0 10px #ffb74d, 0 0 20px #ffb74d;
    }

    100% {
        color: #ff6b6b;
        text-shadow: 0 0 5px #ff6b6b, 0 0 10px #ff6b6b;
    }
}

@keyframes typedBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate(20px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* Responsive Tasarým */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-image {
        height: 400px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .theme-toggle, .lang-toggle {
        margin: 0 auto;
        display: block;
    }

    .fixed-social-icons {
        flex-direction: row;
        right: 10px;
        bottom: 10px;
        top: auto;
        transform: none;
        width: auto;
    }

    .social-icon {
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }

    .hero-buttons .btn {
        display: inline-block;
        width: auto;
        margin-right: 0.5rem;
    }

        .hero-buttons .btn:last-child {
            margin-right: 0;
        }
}
