/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#ffffff;

    /* რომ კონტენტი ჰედერის ქვეშ არ შევიდეს */
    padding-top:86px;
}

/* =========================
   FIXED HEADER
========================= */

header{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:86px;

    background:#e8e6e3;

    z-index:9999;

border-bottom:1px solid #d9d5d1;

    display:flex;

    align-items:center;
}

/* =========================
   NAVBAR
========================= */

.travel-navbar{
    width:1400px;
    max-width:95%;

    height:100%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.travel-logo{
    display:flex;

    align-items:center;
}

.travel-logo img{
    width:68px;

    display:block;
}

/* =========================
   MENU
========================= */

.travel-menu{
    display:flex;

    align-items:center;

    gap:55px;

    list-style:none;
}

.travel-menu li{
    display:flex;

    align-items:center;
}

.travel-menu li a{
    text-decoration:none;

    color:#111;

    font-size:16px;

    font-weight:700;

    transition:0.3s;
}

.travel-menu li a:hover{
    color:#920915;
}

/* =========================
   BUTTON
========================= */

.travel-book-btn{
    width:180px;

    height:48px;

    border-radius:999px;

    background:#920915;

    color:#fff;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

    font-weight:800;

    letter-spacing:0.5px;

    transition:0.3s;
}

.travel-book-btn:hover{
    background:#ad0816;

    transform:translateY(-2px);
}








/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
}

/* =========================
   SLIDES
========================= */

.slides{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    opacity:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    transform:scale(1);

    transition:
        opacity 2s ease,
        transform 8s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1.05);
    z-index:1;
}

/* =========================
   OVERLAY
========================= */

.overlay{
    position:absolute;

    inset:0;

    z-index:2;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.58) 0%,
        rgba(0,0,0,0.58) 34%,
        rgba(0,0,0,0.32) 52%,
        rgba(0,0,0,0.10) 68%,
        rgba(0,0,0,0.00) 100%
    );
}

/* =========================
   CONTENT
========================= */

.hero-content{
    position:absolute;

    top:50%;
    left:70px;

    transform:translateY(-50%);

    z-index:3;

    max-width:650px;

    color:#fff;
}

/* MINI TITLE */

.mini-title{
    display:inline-block;

    margin-bottom:22px;

    color:#920915;

    font-size:13px;
    font-weight:700;

    letter-spacing:5px;
}

/* =========================
   TITLE
========================= */

.hero-content h1{
    margin:0px 0px 24px 0px;
    font-size:35px;

}

/* =========================
   DESCRIPTION
========================= */

.hero-content p{
    width:720px;

    margin-bottom:32px;

    color:#e5e5e5;

    font-size:20px;
    line-height:1.6;
}

/* =========================
   SEARCH
========================= */

.search-box{
    display:flex;
    flex-direction:column;

    gap:20px;
}

/* INPUT */

.search-box input{
    width:520px;
    height:72px;

    padding:0 28px;

    border:none;
    outline:none;

    border-radius:18px;

    background:#fff;

    font-size:18px;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* BUTTON */

.search-box button{
    width:240px;
    height:64px;

    border:none;

    border-radius:18px;

    background:#920915;

    color:#111;

    font-size:20px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.search-box button:hover{
    background:#ad0816;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .hero-slider{
        height:650px;
    }

    .hero-content{
        left:40px;
        width:90%;
    }

    .hero-content h1{
        font-size:54px;
        line-height:1.05;
    }

    .hero-content p{
        width:100%;
        font-size:18px;
    }

    .search-box input{
        width:100%;
        max-width:520px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hero-slider{
        height:720px;
    }

    .hero-content{
        left:25px;
        right:25px;

        width:auto;
    }

    .mini-title{
        font-size:12px;
        letter-spacing:4px;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.1;

        letter-spacing:-1px;
    }

    .hero-content p{
        width:100%;

        font-size:16px;
    }

    .search-box{
        width:100%;
    }

    .search-box input{
        width:100%;
        height:60px;

        font-size:16px;
    }

    .search-box button{
        width:100%;
        height:56px;

        font-size:18px;
    }

}









/* =========================
   FOOTER
========================= */

.footer{
    background:linear-gradient(to bottom,#f8f5f0,#f1ece5);
    font-family:Arial,sans-serif;
    padding-top:100px;
    overflow:hidden;
    position:relative;
}

/* =========================
   TOP
========================= */

.footer-top{
    width:1400px;
    max-width:92%;
    margin:auto;

    display:grid;
    grid-template-columns:430px 1fr;
    gap:90px;

    align-items:center;

    position:relative;
    z-index:2;
}

/* =========================
   BRAND
========================= */

.footer-brand{
    text-align:center;
}

.footer-brand img{
    width:190px;
    margin-bottom:28px;
}

.footer-brand p{
    font-size:17px;
    line-height:2;
    color:#555;
    margin-bottom:40px;
}

/* =========================
   SOCIALS
========================= */

.socials{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.socials a{
    width:56px;
    height:56px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#8b0000;

    color:#fff;

    font-size:18px;
    text-decoration:none;

    transition:0.35s;
}

.socials a:hover{
    background:#c41e1e;
    transform:translateY(-7px);
}

/* =========================
   CONTENT
========================= */

.footer-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* =========================
   CARD
========================= */

.footer-column{
    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(8px);

    border-radius:30px;

    padding:45px 38px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);

    transition:0.35s;

    border:1px solid rgba(255,255,255,0.5);
}

.footer-column:hover{
    transform:translateY(-10px);
}

/* =========================
   ICON
========================= */

.footer-icon{
    width:52px;
    height:52px;

    border-radius:50%;

    background:linear-gradient(135deg,#8b0000,#c41e1e);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    margin-bottom:28px;
}

/* =========================
   TITLES
========================= */

.footer-column h3{
    font-size:28px;
    color:#1d1d1d;

    margin-bottom:38px;

    position:relative;
}

.footer-column h3::after{
    content:'';

    position:absolute;
    left:0;
    bottom:-14px;

    width:58px;
    height:3px;

    background:#8b0000;

    border-radius:30px;
}

/* =========================
   INFO
========================= */

.footer-info{
    margin-bottom:28px;
    padding-bottom:22px;

    border-bottom:1px solid rgba(0,0,0,0.06);
}

.footer-info:last-child{
    border:none;
    padding-bottom:0;
}

.footer-info span{
    display:block;

    color:#c41e1e;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:14px;
}

.footer-info p{
    color:#555;
    font-size:17px;
    line-height:1.8;
}

/* =========================
   LINKS
========================= */

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:22px;
    padding-bottom:18px;

    border-bottom:1px solid rgba(0,0,0,0.06);
}

.footer-column ul li:last-child{
    border:none;
}

.footer-column a{
    text-decoration:none;

    color:#555;

    font-size:17px;

    transition:0.3s;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-column a::after{
    content:'›';
    font-size:24px;
    transition:0.3s;
}

.footer-column a:hover{
    color:#c41e1e;
}

.footer-column a:hover::after{
    transform:translateX(6px);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
    width:100%;

    margin-top:90px;

    background:linear-gradient(90deg,#7a0000,#b30010);

    padding:35px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom p{
    color:#fff;
    font-size:15px;
}

.footer-policy{
    display:flex;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
}

.footer-policy a{
    color:#fff;
    text-decoration:none;

    font-size:15px;

    transition:0.3s;

    position:relative;
}

.footer-policy a::after{
    content:'';

    position:absolute;
    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#fff;

    transition:0.3s;
}

.footer-policy a:hover::after{
    width:100%;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:1fr;
        gap:60px;
    }

    .footer-brand{
        max-width:650px;
        margin:auto;
    }

}

@media(max-width:850px){

    .footer-content{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .footer{
        padding-top:70px;
    }

    .footer-column{
        padding:38px 28px;
        border-radius:24px;
    }

    .footer-column h3{
        font-size:24px;
    }

    .footer-bottom{
        padding:28px 20px;
        flex-direction:column;
        text-align:center;
    }

    .footer-policy{
        justify-content:center;
        gap:18px;
    }

}

















