/* =====================================================
   TK Residence Website
   Version: 1.0
   Author: Sergen Kaya
===================================================== */


/* =====================================================
   GOOGLE FONT
===================================================== */

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



/* =====================================================
   RESET
===================================================== */

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#2F343A;

    overflow-x:hidden;

    line-height:1.7;

}



/* =====================================================
   VARIABLES
===================================================== */

:root{

    --primary:#2F343A;

    --secondary:#6B7280;

    --light:#F7F7F7;

    --white:#ffffff;

    --border:#E5E7EB;

    --success:#25D366;

    --radius:14px;

    --transition:.35s;

    --shadow:0 15px 45px rgba(0,0,0,.08);

    --container:1280px;

}



/* =====================================================
   CONTAINER
===================================================== */

.container{

    width:92%;

    max-width:1280px;

    margin:auto;

}



/* =====================================================
   LINKS
===================================================== */

a{

    text-decoration:none;

    color:inherit;

}



/* =====================================================
   IMAGES
===================================================== */

img{

    width:100%;

    display:block;

}



/* =====================================================
   LIST
===================================================== */

ul{

    list-style:none;

}



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

section{

    padding:100px 0;

}



/* =====================================================
   TITLES
===================================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.section-title p{

    color:#6B7280;

    font-size:18px;

}



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

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 34px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.btn-dark{

    background:#2F343A;

    color:#fff;

    padding:18px 36px;

    border-radius:14px;

    transition:.35s;

}

.btn-dark:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}

.btn-light{

    background:#fff;

    color:#2F343A;

    border:1px solid #ddd;

}

.btn-light:hover{

    background:#2F343A;

    color:#fff;

}



/* =====================================================
   HEADER
===================================================== */

header{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    transition:.35s;

}

header.scrolled{

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}


/* =====================================================
   NAVBAR V5
===================================================== */

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:#fff;
    z-index:1000;
    transition:.35s;
    box-shadow:0 3px 15px rgba(0,0,0,.06);
}

#header.scrolled{
    box-shadow:0 8px 25px rgba(0,0,0,.10);
}

.navbar{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo img{
    width:70px;
    height:55px;
    object-fit:cover;
    border-radius:10px;
}

.logo-text{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.logo-text h2{

    margin:0;

    font-size:24px;

    color:#222;

    font-family:"Poppins", sans-serif;

    font-weight:600;

}



.logo-text > span{

    font-family:"Montserrat", sans-serif;

    font-size:12px;

    color:#777;

    margin-top:4px;

    letter-spacing:.3px;

}

.nav-links{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav-links a{
    color:#222;
    font-weight:600;
    text-decoration:none;
    transition:.30s;
}

.nav-links a:hover{
    color:#888;
}

.desktop-btn{
    margin-left:25px;
}

.mobile-btn{
    display:none;
}

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    background:none;
    border:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    margin:6px auto;
    background:#222;
    border-radius:3px;
    transition:.35s;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.35s;
    z-index:999;
}

/* =====================================================
   LOGO TK
===================================================== */

.logo-text h2{

    margin:0;

    font-size:24px;

    font-family:"Poppins", sans-serif;

    font-weight:600;

    color:#222;

    line-height:1;

}

.logo-tk{

    font-family:"Cormorant Garamond", serif;

    font-weight:700;

    font-size:34px;

    margin-right:2px;

    vertical-align:middle;

}




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

.hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(0,0,0,.60),
            rgba(0,0,0,.35)
        ),
        url("../images/banner.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.hero h5{

    color:#ffffff;

    letter-spacing:6px;

    margin-bottom:30px;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

}

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

.hero-title{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:6px;

    margin-bottom:35px;

}

.hero-title .hero-tk{

    font-family:"Cormorant Garamond", serif;

    font-size:120px;

    font-weight:700;

    color:#fff;

}

.hero-title .hero-residence{

    font-family:"Canela Light", serif;

    font-size:72px;

    font-weight:300;

    color:#fff;

    letter-spacing:8px;

    text-transform:uppercase;

}

.hero-title .hero-izmir{

    font-family:"Montserrat", sans-serif;

    font-size:22px;

    font-weight:300;

    letter-spacing:12px;

    color:#fff;

    text-transform:uppercase;

}

.hero p{

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    margin-bottom:45px;

}

.hero-buttons .btn{

    width:100%;

    max-width:340px;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

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

@media (max-width:768px){

    .hero{

        min-height:560px;

        padding:110px 20px 70px;

    }

    .hero h5{

        font-size:12px;

        letter-spacing:4px;

        margin-bottom:20px;

    }

    .hero-title{

        gap:6px;

        margin-bottom:25px;

    }

    .hero-title .hero-tk{

        font-size:72px;

    }

    .hero-title .hero-residence{

        font-size:28px;

        letter-spacing:3px;

        line-height:1.1;

    }

    .hero-title .hero-izmir{

        font-size:14px;

        letter-spacing:6px;

    }

    .hero p{

        font-size:18px;

        line-height:1.7;

        padding:0 10px;

        margin-bottom:35px;

    }

    .hero-buttons .btn{

        max-width:280px;

    }

}



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

@media(max-width:992px){

    .hero h1{

        font-size:54px;

    }

}

@media(max-width:768px){

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;

    }

}



/* ==========================
   FEATURES
========================== */

.features{

    background:#F7F7F7;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    padding:35px 25px;

    border-radius:14px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.feature-card h3{

    font-size:42px;

    margin-bottom:18px;

}

.feature-card h4{

    margin-bottom:12px;

    font-size:22px;

}

.feature-card p{

    color:#6B7280;

}

@media(max-width:992px){

    .features-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .features-grid{

        grid-template-columns:1fr;

    }

}

/* ===================================
   FEATURES MOBILE
=================================== */

@media (max-width:768px){

    .features-grid{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .feature-card{

        padding:25px 15px;

    }

    .feature-icon{

        width:60px;

        height:60px;

        margin:0 auto 15px;

    }

    .feature-icon i{

        font-size:24px;

    }

    .feature-card h3{

        font-size:20px;

        margin-bottom:10px;

    }

    .feature-card p{

        font-size:14px;

        line-height:1.5;

    }

}



/* =====================================================
   RESIDENCE
===================================================== */

.residence{

    background:#ffffff;

}

.residence-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.residence-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.small-title{

    display:block;

    margin-bottom:20px;

    color:var(--secondary);

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.residence-content h2{

    font-size:48px;

    margin-bottom:25px;

}

.residence-content p{

    color:var(--secondary);

    margin-bottom:35px;

}

.residence-items{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

    font-weight:600;

}

@media(max-width:992px){

    .residence-container{

        grid-template-columns:1fr;

    }

    .residence-content{

        text-align:center;

    }

    .residence-items{

        grid-template-columns:1fr;

    }

}

/* =====================================================
   FEATURE ICON
===================================================== */

.feature-icon{

    width:75px;

    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#F5F5F5;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.feature-icon i{

    font-size:30px;

    color:var(--primary);

}

.feature-card:hover .feature-icon{

    background:var(--primary);

    transform:rotate(10deg);

}

.feature-card:hover .feature-icon i{

    color:#fff;

}

/* =====================================================
   PREMIUM ROOM
===================================================== */

.premium-room{

    background:#F8F8F8;

}

.room-preview{

    margin-top:60px;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    align-items:center;

}

.room-image img{

    width:100%;

    border-radius:22px;

    box-shadow:0 25px 50px rgba(0,0,0,.12);

    transition:.4s;

}

.room-image img:hover{

    transform:scale(1.02);

}

.room-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:45px;

}

.room-features div{

    background:#fff;

    padding:18px;

    border-radius:14px;

    font-weight:600;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.room-features i{

    margin-right:10px;

    color:#2F343A;

}

@media(max-width:992px){

    .room-preview{

        grid-template-columns:1fr;

    }

}

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

.gallery-preview{

    padding:100px 0;

    background:#fff;

}

.gallery-grid{

    width:100%;

    max-width:950px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    object-position:center;

    border-radius:22px;

    cursor:pointer;

    transition:all .35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/* Üstteki büyük fotoğraf */

.gallery-large{

    grid-column:1 / 3;

    height:480px;

}

.gallery-button{

    margin-top:60px;

    text-align:center;

}

/* Responsive */

@media (max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-large{

        grid-column:auto;

        height:320px;

    }

    .gallery-grid img{

        height:260px;

    }

}

/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

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

.page-hero{

    background:#F8F8F8;

    padding:140px 0 90px;

    text-align:center;

}

.page-hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.page-hero p{

    max-width:700px;

    margin:auto;

    color:var(--secondary);

    font-size:20px;

}

/* =====================================================
   ROOM DETAIL
===================================================== */

.room-detail{

    padding:100px 0;

    background:#fff;

}

.room-container{

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:70px;

    align-items:center;

}

.room-photo img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.room-photo{

    height:600px;

}

.room-description h2{

    font-size:46px;

    margin:20px 0;

}

.room-description p{

    color:var(--secondary);

    margin-bottom:35px;

    line-height:1.9;

}

.room-icons{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:40px;

}

.room-icons div{

    display:flex;

    align-items:center;

    gap:15px;

    background:#F7F7F7;

    padding:18px;

    border-radius:14px;

    transition:.30s;

}

.room-icons div:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.room-icons i{

    font-size:22px;

    color:var(--primary);

}

@media(max-width:992px){

    .room-container{

        grid-template-columns:1fr;

    }

    .room-description{

        text-align:center;

    }

    .room-icons{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .room-icons{

        grid-template-columns:1fr;

    }

}

/* =====================================================
   ROOM GALLERY
===================================================== */

.room-gallery{

    padding:100px 0;

    background:#F8F8F8;

}

.room-gallery-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.room-gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.room-gallery-grid img:hover{

    transform:scale(1.03);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

@media(max-width:768px){

    .room-gallery-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section{

    padding:110px 0;

    background:#2F343A;

    text-align:center;

    color:#fff;

}

.cta-section h2{

    font-size:48px;

    margin-bottom:25px;

}

.cta-section p{

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.9;

    color:rgba(255,255,255,.85);

}

.cta-section .btn{

    background:#fff;

    color:#2F343A;

}

.cta-section .btn:hover{

    background:#f2f2f2;

}

/* =====================================================
   RESERVATION INFO
===================================================== */

.reservation-info{

    padding:70px 0;

    background:#fff;

}

.info-box{

    display:flex;

    align-items:flex-start;

    gap:25px;

    background:#F7F7F7;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.info-box i{

    font-size:34px;

    color:var(--primary);

}

.info-box h3{

    margin-bottom:12px;

}

.info-box p{

    color:var(--secondary);

    line-height:1.8;

}

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

.contact-section{

    padding:100px 0;

    background:#fff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:start;

}

.reservation-form{

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.reservation-form h2{

    margin-bottom:35px;

    font-size:34px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.form-group label{

    margin-bottom:8px;

    font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

    font-family:inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

}

.date-group{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.reservation-form button{

    width:100%;

    margin-top:10px;

}

/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-info h2{

    margin-bottom:15px;

}

.contact-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:24px;

    border-radius:18px;

    background:#F7F7F7;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-card i{

    font-size:24px;

    color:var(--primary);

    width:35px;

    text-align:center;

}

.contact-card h4{

    margin-bottom:6px;

}

.contact-card p{

    color:var(--secondary);

    line-height:1.7;

}

/* =====================================================
   MAP
===================================================== */

.map-section{

    padding:100px 0;

    background:#F8F8F8;

}

.map-section h2{

    text-align:center;

    margin-bottom:45px;

    font-size:42px;

}

.map-box{

    height:500px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    background:#ddd;

}

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

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.date-group{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.info-box{

flex-direction:column;

}

.reservation-form{

padding:30px;

}

.contact-card{

padding:18px;

}

.map-box{

height:350px;

}

}


#successMessage,
#errorMessage{

display:none;

padding:18px 22px;

margin-bottom:25px;

border-radius:14px;

font-weight:600;

line-height:1.6;

}

#successMessage{

background:#dcfce7;

color:#166534;

}

#errorMessage{

background:#fee2e2;

color:#991b1b;

}

#successMessage i,
#errorMessage i{

margin-right:10px;

}

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

.footer{

    background:#22272B;

    color:#fff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.2fr 1fr;

    gap:50px;

}

.footer img{

    width:90px;

    background:#fff;

    padding:8px;

    border-radius:14px;

    margin-bottom:20px;

}

.footer h3{

    margin-bottom:20px;

    font-size:20px;

}

.footer p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

}

.footer a{

    display:block;

    color:rgba(255,255,255,.75);

    margin-bottom:12px;

    transition:.30s;

}

.footer a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    color:rgba(255,255,255,.55);

    line-height:1.8;

}

/* Responsive */

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer img{

margin:auto auto 20px;

}

}

/* =====================================================
   GALLERY PAGE
===================================================== */

.gallery-page{

    padding:100px 0;

    background:#fff;

}

.gallery-page-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:60px;

}

.gallery-page-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    object-position:center;

    border-radius:22px;

    cursor:pointer;

    display:block;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:
        transform .30s ease,
        box-shadow .30s ease,
        filter .30s ease;

    will-change:transform;

}

.gallery-page-grid img:hover{

    transform:translateY(-6px) scale(1.03);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

    filter:brightness(1.03);

}

.gallery-page-grid img:active{

    transform:scale(.98);

}

/* Büyük fotoğraf */

.gallery-page-large{

    grid-column:1 / 3;

    height:520px !important;

}

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

@media(max-width:992px){

    .gallery-page-grid{

        gap:18px;

    }

    .gallery-page-large{

        height:420px !important;

    }

}

@media(max-width:768px){

    .gallery-page{

        padding:80px 0;

    }

    .gallery-page-grid{

        grid-template-columns:1fr;

    }

    .gallery-page-large{

        grid-column:auto;

        height:320px !important;

    }

    .gallery-page-grid img{

        height:260px;

    }

}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button{

    position:fixed;

    right:30px;

    bottom:30px;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 22px;

    border-radius:999px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

    z-index:9999;

    transition:.35s;

}

.whatsapp-button i{

    font-size:30px;

}

.whatsapp-button span{

    white-space:nowrap;

    font-weight:600;

}

.whatsapp-button:hover{

    transform:translateY(-5px);

}

.whatsapp-button.minimized{

    width:65px;

    height:65px;

    padding:0;

    justify-content:center;

}

.whatsapp-button.minimized span{

    display:none;

}

@media(max-width:768px){

.whatsapp-button{

right:20px;

bottom:18px;

}

}


/* ===================================
   HAMBURGER ANIMATION
=================================== */

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg) translate(6px,6px);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg) translate(7px,-7px);

}

/* =====================================================
   MOBILE NAVBAR V5
===================================================== */

@media (max-width:992px){

    .desktop-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
        z-index:1002;
    }

    .logo img{
        width:58px;
        height:46px;
    }

    .logo{
        gap:10px;
    }
    
    .logo-text h2{

    font-size:20px;

    margin-bottom:2px;

}

.logo-text > span{

    font-size:11px;

}

    .nav-links{

        position:fixed;

        top:0;

        right:-100%;

        width:300px;

        max-width:85%;

        height:100vh;

        background:#fff;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:30px;

        transition:right .35s ease;

        z-index:1001;

        box-shadow:-8px 0 25px rgba(0,0,0,.15);

    }

    .nav-links.open{

        right:0;

    }

    .mobile-btn{

        display:inline-flex;

        justify-content:center;

        align-items:center;

        padding:14px 28px;

        border-radius:40px;

        background:#222;

        color:#fff !important;

        margin-top:10px;

    }

    .menu-toggle.active span:nth-child(1){

        transform:rotate(45deg) translate(6px,6px);

    }

    .menu-toggle.active span:nth-child(2){

        opacity:0;

    }

    .menu-toggle.active span:nth-child(3){

        transform:rotate(-45deg) translate(7px,-7px);

    }

    .menu-overlay.show{

        opacity:1;

        visibility:visible;

        pointer-events:auto;

    }

}

body.menu-open{

    overflow:hidden;

}

.logo-tk{

    font-size:28px;

}


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

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(4px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:opacity .35s ease, visibility .35s ease;

    z-index:999999;

}

.lightbox.show{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:14px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    transform:scale(.90);

    opacity:0;

    transition:transform .30s ease, opacity .30s ease;

}

.lightbox.show img{

    transform:scale(1);

    opacity:1;

}

.lightbox-close{

    position:fixed;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    font-weight:700;

    color:#fff;

    cursor:pointer;

    user-select:none;

    line-height:1;

    z-index:1000000;

}

.lightbox-close:hover{

    transform:scale(1.1);

}

@media(max-width:768px){

    .lightbox img{

        max-width:95%;

        max-height:78vh;

        border-radius:12px;

    }

    .lightbox-close{

        top:15px;

        right:15px;

        font-size:38px;

    }

}

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

.lightbox-prev,
.lightbox-next{

    position:fixed;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:34px;

    cursor:pointer;

    transition:.3s;

    z-index:1000001;

}

.lightbox-prev{

    left:25px;

}

.lightbox-next{

    right:25px;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:#fff;

    color:#222;

}

@media(max-width:768px){

.lightbox-prev{

    left:12px;

}

.lightbox-next{

    right:12px;

}

.lightbox-prev,
.lightbox-next{

    width:48px;

    height:48px;

    font-size:28px;

}

}

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

.lightbox-counter{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:16px;

    font-weight:600;

    background:rgba(255,255,255,.12);

    padding:10px 18px;

    border-radius:30px;

    backdrop-filter:blur(8px);

    letter-spacing:1px;

    user-select:none;

}

@media(max-width:768px){

.lightbox-counter{

    bottom:18px;

    font-size:14px;

    padding:8px 15px;

}

}


/* =====================================================
   ROOM INFO
===================================================== */

.room-info{

    padding:70px 0;

    background:#fff;

}

.room-info .container{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.room-info h2{

    font-size:38px;

    color:#22272B;

    margin-bottom:25px;

}

.room-info p{

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

}

.room-info h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#22272B;
    margin:15px auto 0;
    border-radius:5px;
}


/* =====================================================
   404 PAGE
===================================================== */

.error-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:140px 20px 80px;

}

.error-page .container{

    max-width:700px;

}

.error-page h1{

    font-size:140px;

    color:#22272B;

    line-height:1;

    margin:15px 0;

}

.error-page h2{

    font-size:42px;

    margin-bottom:20px;

}

.error-page p{

    color:#6B7280;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.error-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:768px){

.error-page{

    padding-top:120px;

}

.error-page h1{

    font-size:90px;

}

.error-page h2{

    font-size:30px;

}

.error-page p{

    font-size:17px;

}

.error-buttons{

    flex-direction:column;

    align-items:center;

}

.error-buttons .btn{

    width:100%;

    max-width:320px;

}

}

