/* ===================================
   RESET & VARIABLES
   =================================== */

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

:root {
    /* Color Palette */
    --primary-color: #d4a5a5;
    --secondary-color: #f5e6e8;
    --accent-color: #c89595;
    --rose-gold: #b76e79;
    --dark-pink: #a67c8a;
    --light-nude: #f8f4f1;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --overlay: rgba(212, 165, 165, 0.8);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--rose-gold);
}

.nav-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--rose-gold);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-nude));
    background-image: url('../backgrounİmg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.85), rgba(166, 124, 138, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    border: 5px solid var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 50px;
    background: var(--white);
    color: var(--rose-gold);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--light-nude);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--primary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.about {
    background: var(--light-nude);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.2), rgba(166, 124, 138, 0.2));
}

.about-text h2 {
    text-align: left;
    margin-bottom: 10px;
}

.about-text .title-underline {
    margin-left: 0;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--rose-gold);
    font-size: 1.5rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card {
    position: relative;
    background: var(--light-nude);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.9), rgba(166, 124, 138, 0.9));
    transition: var(--transition);
    border-radius: 20px;
}

.service-card:hover .service-hover-overlay {
    height: 5px;
}

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

.gallery {
    background: var(--secondary-color);
}

/* Kategori Filtre Butonları */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--rose-gold);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    color: var(--white);
    border-color: var(--rose-gold);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
}

/* Tüm Galeriyi Görüntüle Butonu */
.view-full-gallery {
    text-align: center;
    margin-bottom: 40px;
}

.full-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    color: var(--white);
    border-radius: 35px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.35);
}

.full-gallery-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(183, 110, 121, 0.45);
}

.full-gallery-btn i:last-child {
    transition: transform 0.3s ease;
}

.full-gallery-btn:hover i:last-child {
    transform: translateX(5px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Filtreleme için gizli resimler */
.gallery-item.hide {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183, 110, 121, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-category {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-category {
    transform: translateY(0);
    opacity: 1;
}

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

/* ===================================
   MOBİLE İÇİN "DEVAMINI GÖR" SİSTEMİ
   =================================== */

/* Buton sadece mobile'da görünsün */
.mobile-only {
    display: none; /* Desktop'ta gizli */
}

/* Hidden gallery - Desktop'ta her zaman görünür, Mobile'da gizli */
.hidden-gallery-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
    /* Desktop'ta her zaman görünür */
    max-height: none;
    opacity: 1;
    overflow: visible;
    box-sizing: border-box;
}

/* Mobile'da (768px altı) buton sistemi aktif */
@media (max-width: 968px) {
    section {
        padding: 70px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Kategori filtre butonları mobile'da küçük */
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Butonu mobile'da göster */
    .mobile-only {
        display: flex;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 30px 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Buton stili - Modern ve şık tasarım */
    .load-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 45px;
        background: linear-gradient(135deg, #c89595, #b76e79);
        color: var(--white);
        border: none;
        border-radius: 35px; /* Daha yuvarlatılmış */
        font-size: 1.05rem;
        font-weight: 600;
        font-family: var(--font-body);
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(183, 110, 121, 0.35);
        min-width: 200px;
    }
    
    .load-more-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 28px rgba(183, 110, 121, 0.45);
        background: linear-gradient(135deg, #b76e79, #c89595);
    }
    
    .load-more-btn:active {
        transform: translateY(-1px) scale(0.98);
    }
    
    .load-more-btn i {
        font-size: 1.1rem;
        transition: transform 0.4s ease;
    }
    
    .load-more-btn.active i {
        transform: rotate(180deg);
    }
    
    .load-more-btn.active {
        background: linear-gradient(135deg, #a67c8a, #d4a5a5);
    }
    
    /* Hidden gallery mobile'da başlangıçta gizli */
    .hidden-gallery-mobile {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.8s ease, opacity 0.6s ease;
        grid-template-columns: repeat(3, 1fr); /* 3 sütun yan yana */
        gap: 10px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    /* Butona basınca açılır */
    .hidden-gallery-mobile.show {
        max-height: 15000px;
        opacity: 1;
        overflow: visible;
        margin-top: 20px;
    }
    
    /* Satır satır açılma - Her 3 resim (1 satır) birlikte */
    .hidden-gallery-mobile .gallery-item {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .hidden-gallery-mobile.show .gallery-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Her satır (3'lü grup) birlikte açılır */
    .hidden-gallery-mobile.show .gallery-item:nth-child(1),
    .hidden-gallery-mobile.show .gallery-item:nth-child(2),
    .hidden-gallery-mobile.show .gallery-item:nth-child(3) { 
        transition-delay: 0.1s; 
    }
    
    .hidden-gallery-mobile.show .gallery-item:nth-child(4),
    .hidden-gallery-mobile.show .gallery-item:nth-child(5),
    .hidden-gallery-mobile.show .gallery-item:nth-child(6) { 
        transition-delay: 0.2s; 
    }
    
    .hidden-gallery-mobile.show .gallery-item:nth-child(7),
    .hidden-gallery-mobile.show .gallery-item:nth-child(8),
    .hidden-gallery-mobile.show .gallery-item:nth-child(9) { 
        transition-delay: 0.3s; 
    }
    
    .hidden-gallery-mobile.show .gallery-item:nth-child(10),
    .hidden-gallery-mobile.show .gallery-item:nth-child(11),
    .hidden-gallery-mobile.show .gallery-item:nth-child(12) { 
        transition-delay: 0.4s; 
    }
    
    .hidden-gallery-mobile.show .gallery-item:nth-child(13),
    .hidden-gallery-mobile.show .gallery-item:nth-child(14),
    .hidden-gallery-mobile.show .gallery-item:nth-child(15) { 
        transition-delay: 0.5s; 
    }
    
    .hidden-gallery-mobile.show .gallery-item:nth-child(n+16) { 
        transition-delay: 0.6s; 
    }
}

/* Çok küçük mobil ekranlar için */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hidden-gallery-mobile {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun korunuyor */
        gap: 8px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
        gap: 8px;
    }
    
    .load-more-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
    }
}

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

.contact {
    background: var(--light-nude);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--rose-gold);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--rose-gold);
}

.contact-form-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.submit-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 500px;
}

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

.footer {
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.footer-logo p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-text {
    text-align: center;
    flex: 1;
}

.footer-text p {
    margin-bottom: 5px;
}

.developer {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: var(--rose-gold);
    transform: translateY(-5px);
}

/* ===================================
   LIGHTBOX
   =================================== */

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

.lightbox.active {
    display: flex;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--primary-color);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-pink));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.5);
}

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 0;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text .title-underline {
        margin: 0 auto 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
        gap: 12px;
        padding: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-logo img {
        width: 100px;
        height: 100px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 35px;
        font-size: 1rem;
    }

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

    .logo span {
        display: none;
    }

    .contact-map {
        min-height: 300px;
    }

    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 15px 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-image img {
        height: 350px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

