/* Custom CSS for Secret Art */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --primary-color: #ffd600; /* Sarı vurgu */
    --secondary-color: #fff;  /* Beyaz */
    --text-color: #fff;      /* Beyaz metin */
    --bg-dark: #181818;      /* Koyu arka plan */
    --bg-light: #232323;     /* Hafif koyu */
    --accent-color: #ffd600; /* Sarı vurgu */
    --gray: #bdbdbd;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #181818 0%, #232323 100%);
}

/* Header */
.header {
    background: rgba(24,24,24,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.brand-name {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 12px #ffd60099, 0 2px 8px #000a;
    transition: text-shadow 0.3s;
    margin: 0;
}

.brand-name .yellow {
    color: var(--primary-color);
    text-shadow: 0 0 18px #ffd600cc, 0 2px 8px #000a;
    animation: glowText 2s infinite alternate;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 0.5rem;
}

.social-link {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.followers-count {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 0.3rem;
    text-shadow: 0 0 8px #ffd60099;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #181818 60%, #232323 100%);
    color: var(--secondary-color);
    padding-top: 120px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    animation: fadeInDown 1.2s;
    position: relative;
}

.hero-title .yellow {
    color: var(--primary-color);
    position: relative;
    animation: glowText 2s infinite alternate;
}

.hero-title .yellow::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd600 0%, #fff 100%);
    border-radius: 2px;
    margin-top: 6px;
    animation: underlineGlow 2s infinite alternate;
}

.hero-text {
    color: var(--gray);
    font-size: 1.2rem;
    animation: fadeInUp 1.5s;
}

.hero-icon {
    font-size: 8rem;
    color: rgba(255,255,255,0.8);
}

.instagram-btn {
    background: linear-gradient(90deg, #ffd600 0%, #fff700 100%);
    color: #181818;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 16px #ffd60055;
    transition: all 0.3s, box-shadow 0.3s;
    margin-bottom: 0;
    animation: fadeIn 2s;
    border-radius: 32px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.instagram-btn:hover {
    background: linear-gradient(90deg, #fff700 0%, #ffd600 100%);
    color: #181818;
    box-shadow: 0 0 32px #ffd600cc, 0 2px 8px #000a;
    transform: scale(1.07);
}

/* Services Section */
.services {
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Instagram CTA */
.instagram-cta {
    background: var(--white);
}

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

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

/* Footer */
.footer {
    margin-top: 0 !important;
    padding-top: 30px;
    background: #111;
    color: var(--secondary-color);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.footer-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s;
}

.footer-slogan {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    animation: fadeInLeft 1.2s;
}

.footer-highlight {
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-address, .footer-phone {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    animation: fadeInUp 1.3s;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-social-links {
    gap: 1.5rem !important;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #232323;
    color: var(--primary-color);
    font-size: 1.7rem;
    margin: 0 0.2rem;
    box-shadow: 0 2px 8px #ffd60033;
    transition: all 0.3s, box-shadow 0.3s;
    position: relative;
    animation: fadeIn 1.5s;
}

.footer-social-link.facebook {
    color: #ffd600;
}

.footer-social-link.instagram {
    color: #ffd600;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 24px #ffd600cc;
    transform: scale(1.15) rotate(-6deg);
}

.footer-username {
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 500;
    animation: fadeInUp 1.7s;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-title {
        font-size: 1.3rem;
    }
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .footer-username {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        font-size: 5rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .instagram-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact & Map Section */
.contact-map-section {
    background: linear-gradient(120deg, #181818 60%, #232323 100%);
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
    animation: fadeIn 2s;
}

.contact-map-section .row {
    margin-bottom: 0;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(232,48,108,0.08);
    transition: box-shadow 0.3s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1.2s;
}

.contact-card h3.text-gradient {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-card p, .contact-card a {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-card .footer-social-links {
    margin-top: 1rem;
}

.map-responsive {
    background: var(--bg-dark);
    margin-bottom: 0;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 24px;
    box-shadow: 0 0 32px #ffd60033, 0 8px 32px rgba(0,0,0,0.10);
    border: 2px solid #ffd600;
    animation: fadeInUp 2s;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 24px;
    background: var(--bg-dark);
}

@media (max-width: 992px) {
    .contact-map-section .row {
        flex-direction: column;
    }
    .map-responsive {
        margin-top: 2rem;
        padding-bottom: 300px;
    }
}

/* .scrolled ile ilgili tüm CSS'i kaldırıyorum */

::-webkit-scrollbar {
    width: 8px;
    background: #232323;
}

::-webkit-scrollbar-thumb {
    background: #ffd600;
    border-radius: 8px;
} 