@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.navbar {
    background-color: white;
    padding: 10px 20px;
}

.nav-link {
    font-weight: 500;
    color: black;
}

.navbar-nav .nav-link.active {
    color: #06A2A2;
    border-bottom: #06A2A2 solid 3px;
}

.navbar-nav .dropdown-menu
 {
    position: absolute;
}
.logo {
    width: 110px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.062), rgba(0, 0, 0, 0.349)), url('image/heroimg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%)
}

.hero-text p {
    font-size: 18px;
}

.super-title {
    color: white;
    font-size: 4rem;
    font-family: "Roboto Slab", serif;
}

.butonat {
    display: flex;
    gap: 20px;
}

.dropdown1{
    position:relative !important;
}
.main-btn,
.main-btn:hover {
    background-color: #019EA3;
    border: 3px solid #019EA3;
    font-size:14px;
    vertical-align:middle;
    color: white;
    padding: 7px 10px;
}

.second-btn,
.second-btn:hover {
    border: 2px solid white;
    color: white;
     font-size:14px;
    padding: 7px 10px;
}

.sector {
    padding: 70px 0;
}

.circle {
    background-image: linear-gradient(to right bottom, #088489, #07858a, #05868b, #04888c, #02898d);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.7rem;
    color: white;
}

p {
    color: rgb(107, 107, 107);
    margin-bottom: 0 !important;
}

a {
    text-decoration: none;
}

.section-top {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #38bdf8;
    font-weight: 500;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.section-sub {
    font-size: 15px;
    color: #64748b;
    margin-top: 10px;
}

/* CARD */
.room-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.room-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.room-card:hover .room-img {
    transform: scale(1.06);
    opacity: 0.85;
}

/* OVERLAY */
.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            transparent 100%);
}

/* BADGE */
.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 11px;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* BODY */
.room-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 22px;
    z-index: 2;
}

.room-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 5px;
}

.room-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
}

.room-loc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.room-cta {
    font-size: 12px;
    color: #38bdf8;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: letter-spacing 0.3s ease;
}

.room-card:hover .room-cta {
    letter-spacing: 1.5px;
}

/* Tour Section */
.tour-card {
    border-radius: 20px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.tour-img {
    border-top-left-radius: 16px;
    width:100%;
    height:100%;
    border-top-right-radius: 16px;
}

.tour-description {
    padding: 10px;
}
/* 
.info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    color: #069699;
} */

.banner {
    background-color: #ddf7fa;
    padding: 40px 0;
}

.icon2 {
    font-size: 4rem;
    color: #329195;
    text-align: center;
}

.banner2 .col-lg-4 {
    text-align: end;
}

/* Live from Sarnada */
.live {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
}

.title-buton {
    text-align: end;
}

.title-buton .room-cta {
    font-size: 16px;
}

/* Testimonials */
.t-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.t-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
}

.t-quote-icon {
    font-size: 64px;
    color: #38bdf8;
    position: absolute;
    top: 16px;
    right: 26px;
    opacity: 0.2;
}

.t-stars {
    margin-bottom: 14px;
}

.t-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.t-name {
    color: #0f172a;
}

.t-loc {
    color: #94a3b8;
}

/* Footer */
.footer {
    background-color: #329195;
    padding: 40px 0 20px 0;
    color: white !important;
}

.footer p{
    color: white;
    font-size:16px;
    margin-bottom: 10px !important;
}
.footer a {
       color: white;
}

.social-media {
    display: flex;
    gap: 10px;
}

.circle2 {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.footer-title{
     font-family: "Playfair Display", serif;
}
.menu{
    padding-left:20px;
}
.menu-columns{
    column-count: 2;
    column-gap: 20px;
}
.footer-map{
    width:100%;
    border-radius:20px;
}
.footer-logo{
    width:110px;
}


/* Cover img */
.page-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; 
  margin-top:120px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

.page-hero .container {
  position: relative;  /* mbi overlay */
  z-index: 2;
}

.page-hero-content {
  /* HIQE position: absolute, inset, padding — nuk duhen më */
  max-width: 620px;
}
.page-hero-line {
  width: 48px;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.page-hero-breadcrumb a:hover { color: #fff; }

.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero-breadcrumb strong { color: rgba(255,255,255,0.85); }

/* Butoni book now */
.book-btn, .book-btn:hover{
    padding:10px 20px;
    width:fit-content;
    border-radius:20px;
    background-color:#02898d;
    color:white;
}
/* Room */
.card-room{
  background: #f8fafc;
  border:solid 1px #cfdbe7;
}

.room-carousel img{
    width:100% !important;
    height:100%  !important;
}
/* Contact */
.c-card{
    padding:20px;
}
.contact-title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    color: #329195;
    letter-spacing: -1px;
    margin: 8px 0 0;
}
.c-card p{
    font-size:17px;
}
.map{
    width:100%;
    height:400px;
    border-radius:20px;
}


/* TOUR PAGE */
.tour-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 500;
  margin-bottom: 10px;
}

.tour-title {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.tour-lead {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* TOUR CARDS */
.tour-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.tour-card-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.tour-card-body { padding: 22px; }

.tour-card-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 8px;
  display: block;
}

.tour-card-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 14px;
}

.tour-feature {
  /* display: flex;
  align-items: flex-start;
  gap: 8px; */
  /* font-size: 14px;
  color: #475569; */
  margin-bottom: 8px;
  line-height: 1.5;
}

.tour-feature i { color: #38bdf8; font-size: 15px; margin-top: 2px; }

/* ITINERARY */
.tour-divider { width: 48px; height: 2px; background: #38bdf8; border-radius: 2px; }

.tour-section-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #0f172a;
}

.it-step { display: flex; gap: 20px; margin-bottom: 28px; }

.it-left { display: flex; flex-direction: column; align-items: center; }

.it-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #e0f2fe;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.it-dot i { color: #0284c7; font-size: 16px; }

.it-line { width: 2px; flex: 1; background: #e2e8f0; margin-top: 6px; min-height: 40px; }

.it-time { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #94a3b8; margin-bottom: 4px; }

.it-label { font-size: 16px; font-weight: 500; color: #0f172a; margin-bottom: 6px; }


.it-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.it-chip {
  background: #f1f5f9;
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 12px;
  color: #475569;
  display: flex; align-items: center; gap: 5px;
}

.it-chip i { font-size: 13px; color: #38bdf8; }
.stop-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #0284c7;
  padding: 8px 18px;
  background: #e0f2fe;
  border-radius: 30px;
  width: fit-content;
}

/* Transfer page */
/* TRANSFER CARDS */
.tr-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.25s;
  cursor: default;
  height: 100%;
}

.tr-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 8px 28px rgba(56,189,248,0.12);
  transform: translateY(-3px);
}


.tr-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.tr-name {
  font-size: 15px;
  font-weight: 600;
  color: #1c2946;
  margin-bottom: 5px;
}


/* BANNER */
.tr-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.tr-banner-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.rent-car .tour-card{
    height:auto;
}
.rent-car img{
aspect-ratio: 16/9;
}
/* Mobile */
@media (max-width: 768px) {
  .page-hero { height: 360px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero-title { font-size: 34px; }
  .page-hero-badge { display: none; }

  .super-title{
    font-size:3rem;
  }
}


@media(max-width: 400px){
    .butonat{
        flex-wrap: wrap;
    }
    .super-title{
        font-size:2rem;
    }
    .section-title{
        font-size: 28px;
    }
}