/* ===== ULTRA LUXURY HOTEL THEME — FINAL PREMIUM EDITION ===== */
/* Light global gradient + gold glow + gold underline
   + glass cards + gold borders + page fade + section fade + particles
*/


/* ===================================== */
/* GLOBAL + PAGE FADE + PARTICLES        */
/* ===================================== */
/* =============================== */
/*       FULL RESPONSIVE FIX       */
/*        (MOBIL 0–760px)          */
/* =============================== */

@media (max-width: 760px) {

    /* Global padding düzeltme */
    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden !important;
    }

    /* HEADER */
    .site-header {
        padding: 14px 4vw;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .nav a {
        margin: 0 8px;
        font-size: 13px;
    }

    /* HERO */
    .hero {
        padding: 50px 5vw 25px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo-box {
        margin: 25px auto 0;
        width: 240px;
        height: 170px;
    }

    /* GALLERY – ANA SAYFA */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 2vw;
    }

    .gallery-item {
        scale: 1 !important;
        min-height: auto;
    }

    .image-wrapper img {
        height: 210px !important;
    }

    /* GALERI 3 SÜTUN → 1 SÜTUN */
    .gallery-3col {
        grid-template-columns: 1fr !important;
        gap: 22px;
        padding: 0 2vw;
    }

    .gallery-3col .image-wrapper img {
        height: 220px !important;
    }

    /* KATEGORI BUTONLARI */
    .gallery-filters button {
        padding: 9px 18px;
        margin: 4px;
        font-size: 13px;
        transform: none !important;
    }
    .gallery-filters button.active {
        transform: scale(1.05) !important;
    }

    /* INFO SECTION Yazılar mobile göre */
    .info-section {
        padding: 30px 5vw;
        font-size: 15px;
    }

   .socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform .15s ease, filter .15s ease;
}

.social-icon:hover {
    transform: scale(1.08);
    filter: brightness(1.3);
}


    /* LIGHTBOX */
    .lightbox-inner {
        width: 96vw !important;
        height: 85vh !important;
        flex-direction: column !important;
    }

    .lightbox-info {
        padding: 14px !important;
        font-size: 14px;
    }

    #lightbox-img {
        height: auto !important;
        max-height: 60vh !important;
    }

    .lightbox-arrow {
        width: 34px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
}

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

html {
    min-height: 100%;
    background: linear-gradient(
        120deg,
        #1c1c1e 0%,
        #1f1f21 50%,
        #1c1c1e 100%
    );
}
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    animation: fadeInPage 1.1s ease forwards;
    opacity: 0; /* animasyon bunu 1 yapacak */
    color: #e5e7eb;
    min-height: 100vh;
    letter-spacing: 0.2px;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* Hafif gold particles */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(230, 210, 160, 0.12) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(210, 190, 150, 0.09) 0, transparent 45%);
    opacity: 0.5;
}

/* Page fade animation */
@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ===================================== */
/* HEADER                                */
/* ===================================== */
.header-animated {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff, #d9c7a5, #ffffff);
    background-size: 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: slideText 8s infinite linear;
}

@keyframes slideText {
    0% { background-position: 0% }
    100% { background-position: 300% }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 7vw;

    background: rgba(20, 20, 22, 0.92);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(140, 125, 100, 0.22);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #f8f7f5;
}

/* Logo gold shimmer */
.logo-accent {
    padding: 6px 13px;
    border-radius: 999px;
    background: linear-gradient(120deg, #3d362f, #5a5147, #3d362f);
    background-size: 220% 220%;
    border: 1px solid rgba(196, 181, 150, 0.6);
    color: #e7cf96;
    font-size: 14px;
    animation: logoShimmer 6s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


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

.nav a {
    margin-left: 20px;
    color: #d4d4d8;
    font-size: 14px;
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    transition: 0.25s ease;
}

.nav a:hover {
    color: #f8f7f5;
}

/* Altın çizgi */
.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;

    background: linear-gradient(90deg, #e8d9b4, #cbb07a);
    box-shadow: 0 0 6px rgba(199, 175, 125, 0.25);
    border-radius: 999px;
    transition: width 0.35s ease;
}

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


/* ===================================== */
/* HERO + GOLD GLOW + PARALLAX           */
/* ===================================== */

.hero {
    padding: 90px 7vw 60px;
    position: relative;
    will-change: transform;
}

/* Gold glow layer (çok hafif) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(235, 218, 175, 0.12),
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    max-width: 560px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 600;
    color: #faf9f7;

    /* soft gold glow */
    text-shadow: 0 0 14px rgba(230, 210, 160, 0.18);

    /* Gold underline */
    position: relative;
    padding-bottom: 12px;
}

.hero h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 60px;
    height: 3px;

    background: linear-gradient(90deg, #e6d6aa, #c6ad74);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(220, 200, 150, 0.35);
}

.hero p {
    color: #bcb8b2;
    font-size: 15px;
    margin-top: 12px;
}


/* ===================================== */
/* BUTTON — GOLD + PRESS-DOWN EFFECT     */
/* ===================================== */

.btn-primary {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 26px;
    border-radius: 999px;

    background: linear-gradient(135deg, #d6c39a, #bda679);
    color: #1c1c1e;
    font-weight: 600;
    text-decoration: none;
    border: none;

    box-shadow:
        0 4px 14px rgba(191,164,118,0.35),
        inset 0 0 3px rgba(255,255,255,0.18);

    transition: 0.22s ease;
}

/* Hover: hafif yükselme */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 22px rgba(191,164,118,0.45),
        inset 0 0 4px rgba(255,255,255,0.25);
}

/* Press-down effect */
.btn-primary:active {
    transform: translateY(2px) scale(0.97);
    box-shadow:
        inset 0 0 6px rgba(0,0,0,0.35),
        inset 0 0 12px rgba(191,164,118,0.35);
}


/* ===================================== */
/* SECTION TITLES + GOLD UNDERLINE       */
/* ===================================== */

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: #f8f7f5;

    /* soft gold glow */
    text-shadow: 0 0 12px rgba(240, 225, 180, 0.15);

    position: relative;
    padding-bottom: 12px;
}

/* Başlık altına gold underline */
.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);

    width: 50px;
    height: 3px;

    background: linear-gradient(90deg, #e6d6aa, #c6ad74);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(220, 200, 150, 0.3);
}

.section-title p {
    font-size: 14px;
    color: #a6a6aa;
}


/* ===================================== */
/* SECTION FADE (scroll segue)           */
/* ===================================== */

/* JS ile tüm section'lara otomatik eklenecek */
/* ===================================== */
/* SCROLL REVEAL ANİMASYONLARI           */
/* ===================================== */

/* Her section ve kart başlangıçta aşağıda ve saydam dursun */
.fade-section,
.gallery-item {
    
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

.reveal {
    opacity: 0;
    transition: all 0.9s cubic-bezier(.15,.75,.25,1);
}


.reveal-visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Görünür olunca yukarı kayarak gelsin */
.fade-section.visible-section {
    opacity: 1;
    transform: translateY(0);
}

/* Kartlar için ayrıca sınıf (JS ekliyor) */
.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Galeri kartlarına hafif sırayla gelme efekti */
.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.10s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.20s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.30s; }

/* devamı da aynı mantıkla artar */



/* ===================================== */
/* GALLERY + GLASS REFLECTION + GOLD EDGE*/
/* ===================================== */

.gallery-section {
    padding: 40px 7vw 70px;
}

.gallery-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;   /* ← 30px idi — 45px yaptım */
}

/* Kart: glass + gold border */
.gallery-item {
    scale: 1.05;
    min-height: 260px;
    background: linear-gradient(
        145deg,
        rgba(45, 45, 50, 0.55),
        rgba(30, 30, 32, 0.55)
        
    );

    border-radius: 18px;
    padding: 12px;

    /* Çok hafif gold kenar çizgisi */
    border: 1px solid rgba(230, 210, 160, 0.12);

    /* Glass reflection efekti */
    backdrop-filter: blur(8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.55),
        inset 0 0 22px rgba(255,255,255,0.015);

    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);

    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.image-wrapper {
    border-radius: 14px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    transition: 0.35s ease;
     height: 260px;
    object-fit: cover;
}

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

.gallery-info h3 {
    margin-top: 12px;
    font-size: 15px;
    color: #f8f7f5;
}

.gallery-info p {
    font-size: 13px;
    color: #b8b5b1;
}

.no-photos {
    text-align: center;
    font-size: 14px;
    color: #a6a6aa;
}


/* ===================================== */
/* INFO SECTION                          */
/* ===================================== */

.info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 7vw;
    color: #dad9d7;
    line-height: 1.7;
}


/* ===================================== */
/* FOOTER — GOLD LINE ONLY               */
/* ===================================== */

.site-footer {
    padding: 20px 7vw;
    text-align: center;

    /* Hotel-style gold separator line */
    border-top: 1px solid rgba(215, 200, 160, 0.25);

    /* Footer artık tam dolu arka plan almıyor ki
       body gradient tüm sayfada görünsün */
    background: transparent;

    font-size: 13px;
    color: #a6a6aa;
}
/* Sosyal Medya Alanı */
.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    transition: transform .15s ease, filter .15s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.3);
}

/* Gold Bar (Premium Çizgi) */
.footer-separator {
    width: 120px;
    height: 1.5px;
    background: linear-gradient(to right, rgba(215,200,160,0), rgba(215,200,160,0.7), rgba(215,200,160,0));
    margin: 12px auto 18px auto;
    border-radius: 3px;
}

/* Crafted Yazısı */
.crafted {
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 0.6px;
}



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

@media (max-width: 760px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero h1 { font-size: 28px; }

    .nav a {
        margin-left: 12px;
        font-size: 13px;
    }
}
/* ========================= */
/* BÜYÜTME BUTONU (KART İÇİ) */
/* ========================= */

.btn-view {
    margin-top: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(230, 210, 160, 0.5);
    background: transparent;
    color: #e6d6aa;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-view:hover {
    background: rgba(230, 210, 160, 0.12);
}




/* ===================================== */
/*  SCROLL REVEAL – VITE.STYLE ANİMASYON */
/* ===================================== */

/* GENEL AYAR */
.reveal {
    opacity: 0;
    transition: all 0.9s cubic-bezier(.15,.75,.25,1);
    will-change: transform, opacity;
}

/* Soldan gelen */
.reveal-left {
    transform: translateX(-60px);
}
.reveal-left.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Sağdan gelen */
.reveal-right {
    transform: translateX(60px);
}
.reveal-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Aşağıdan gelen */
.reveal-up {
    transform: translateY(60px);
    opacity: 0;
}
.reveal-up.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Foto kartları – hafif zoom efekti */
.reveal-zoom {
    transform: translateY(40px) scale(0.97);
    opacity: 0;
}
.reveal-zoom.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* ========================= */
/*  LIGHTBOX — FINAL VERSION */
/* ========================= */
/* ========================= */
/*  LIGHTBOX — PERFECT CENTER*/
/* ========================= */

.lightbox {
    position: fixed !important;
    inset: 0 !important;

    display: none !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0,0,0,0.85) !important;
    backdrop-filter: blur(5px) !important;

    z-index: 999999 !important;
}
/* LIGHTBOX BLURRED BG MOTION */
.lightbox::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--blur-bg);
    background-size: cover;
    background-position: center;
    filter: blur(35px) brightness(0.45);
    transform: scale(1.25);
    opacity: 0;
    transition: opacity 0.45s ease, transform 1s ease;
}

.lightbox.open::before {
    opacity: 1;
    transform: scale(1);
}


.lightbox.open {
    display: flex !important;
}

.lightbox-backdrop {
    position: absolute !important;
    inset: 0 !important;
    cursor: pointer !important;
    z-index: 1 !important;
}

/* OKLAR ARTIK DIŞARIDA VE ORTADA */
.lightbox-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 45px !important;
    height: 70px !important;

    background: rgba(0,0,0,0.4) !important;
    border: none !important;
    color: white !important;
    font-size: 28px !important;

    cursor: pointer !important;
    z-index: 3 !important;
}

.lightbox-prev { left: 20px !important; }
.lightbox-next { right: 20px !important; }

/* Ana kutu */
.lightbox-inner {
    width: 90vw !important;
    height: 90vh !important;

    margin: auto !important;

    display: flex !important;
    flex-direction: row !important;

    background: rgba(12,12,13,0.92) !important;
    border-radius: 16px !important;
    overflow: hidden !important;

    position: relative !important;
    z-index: 2 !important;
}

/* Resim alanı */
.lightbox-image-wrap {
    flex: 3 !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255,255,255,0.04) !important;
}

/* Resim */
#lightbox-img {
    max-width: 100% !important;
    max-height: 100% !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
}

.lightbox-info {
    flex: 1 !important;
    padding: 22px !important;
    color: #e0dfdc !important;
    overflow-y: auto !important;

    border-left: 1px solid rgba(230, 210, 160, 0.25) !important;

    /* Fade animation */
    opacity: 0;
    transform: translateX(20px);
    transition: 0.5s ease;
}

.lightbox.open .lightbox-info {
    opacity: 1;
    transform: translateX(0);
}


/* Kapatma butonu */
.lightbox-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;

    border: none !important;
    border-radius: 50% !important;

    background: rgba(0,0,0,0.65) !important;
    color: #fff !important;

    font-size: 22px !important;
    cursor: pointer !important;

    z-index: 5 !important;
}

/* Mobil düzen */
@media (max-width: 768px) {
    .lightbox-inner {
        flex-direction: column !important;
        width: 94vw !important;
        height: 92vh !important;
    }

    .lightbox-info {
        width: 100% !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
}
/* GALERİDE 3 SÜTUN */

.gallery-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 0 4vw;
}

.gallery-3col .gallery-item .image-wrapper img {
    height: 220px;
    object-fit: cover;
}
/* HERO LOGO — sağ üst köşe */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.hero-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.hero-logo-box {
    width: 320px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
    margin-right: 5vw;

    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(230, 210, 160, 0.18);

    box-shadow: 
        0 10px 35px rgba(0,0,0,0.35),
        inset 0 0 12px rgba(255,255,255,0.03);

    backdrop-filter: none;
}

.hero-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* SOSYAL MEDYA – ORTALAMA */
.socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.socials .social-icon {
    width: 40px;
    height: 40px;
    transition: 0.25s ease;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.4));
    border-radius: 10px;
}

/* Hover efekti */
.socials .social-icon:hover {
    transform: scale(1.20);
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255,255,255,0.35));
}
/* ===== HEADER ALTIN IŞIK ANİMASYONU ===== */
.header-glow {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        rgba(180,150,100,0.05),
        rgba(230,210,160,0.6),
        rgba(180,150,100,0.05)
    );

    background-size: 200% 100%;
    animation: headerGlowAnim 4s linear infinite;
    box-shadow: 0 0 15px rgba(230,210,160,0.35);
    pointer-events: none;
}

@keyframes headerGlowAnim {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}



.socials img {
    width: 32px;
    filter: brightness(0) invert(1);
    transition: .3s;
}

.socials img:hover {
    transform: scale(1.2);
}

.whatsapp-btn {
    padding: 12px 22px;
    background: #25D366;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.whatsapp-btn:hover {
    opacity: .85;
}

/* ========================= */
/*  GALERİ KATEGORİ BUTONLARI */
/* ========================= */

.gallery-filters {
    text-align: center;
    margin-bottom: 35px;
    margin-top: 10px;
}

.gallery-filters button {
    padding: 10px 20px;
    margin: 6px;
    border-radius: 999px;
    border: 1px solid rgba(230,210,160,0.4);
    background: rgba(40,40,40,0.60);
    color: #e8e7e3;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;

    transition: 
        transform 0.25s ease,
        box-shadow 0.35s ease,
        background 0.25s ease,
        color 0.25s ease;
}

/* HOVER: Gold shimmer, glow ve büyüme */
.gallery-filters button:hover {
    transform: scale(1.12);
    background: linear-gradient(
        135deg,
        rgba(230,210,160,0.45),
        rgba(200,170,120,0.45)
    );
    color: #1b1b1b;

    box-shadow: 
        0 0 12px rgba(230,210,160,0.6),
        0 0 25px rgba(230,210,160,0.35);
}

/* Aktif kategori */
.gallery-filters button.active {
    background: linear-gradient(
        135deg,
        rgba(230,210,160,0.65),
        rgba(200,170,120,0.55)
    );
    color: #1b1b1b;
    box-shadow: 
        0 0 15px rgba(230,210,160,0.65),
        0 0 30px rgba(230,210,160,0.45);
    transform: scale(1.15);
}


.dev-bar {
    background: linear-gradient(90deg, #121212, #1a1a1a, #121212);
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    color: #b9ac8b;
    letter-spacing: 2px;
}
.dev-bar strong {
    color: #e8d9b3;
}







