.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* DESKTOP */
    overflow: hidden;
}

/* Background image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    margin-top: 8%;
    margin-left: 8%;
    width: 80%;
    height: auto;
}

/* 📱 MOBILE (TELEFON) */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .hero-main-img {
        width: 80%;
    }
}

/* 📟 TABLET (EKRANE TË MESME) */
@media (min-width: 769px) and (max-width: 1200px) {
    .hero-section {
        height: 70vh; /* më e ulët se desktop, më e lartë se mobile */
    }

    .hero-main-img {
        width: 80%;    /* zvogëlohet pak që të mos dalë jashtë */
        margin-top: 12%; 
    }
}



/* 

.about-section {
    position: relative;
    width: 100%;
    background-image: url('../img/white-back.png');
      background-repeat: repeat;  
    background-size: auto;        
    background-position: top center;
    background-color: #fff;        
}
.about-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
} */

.about-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.about-main-img {
    max-width: 100%;
    height: auto;
}

/* -------------------------------------------------- */
/* TITULLI KRYESOR — full responsive si Work Section */
/* -------------------------------------------------- */

/* Heqim varësinë nga Bootstrap: .display-1 */
.about-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 120px;    
    line-height: 1;
    color: #000;
    margin-bottom: 20px;
}

/* Span brenda titullit */
.about-section h2 span {
    display: block;
    font-family: 'inter', sans-serif;
    font-weight: 400;
    font-size: 55px;
    color: #000;
    margin-bottom: 0.5em;
}

/* Paragrafi */
.about-section p.lead {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #000;
}

/* -------------------------------------------------- */
/* Responsive Typography Breakpoints */
/* -------------------------------------------------- */

/* Tablet / Ekrane te mesme: 1200px - 992px */
@media (max-width: 1200px) and (min-width: 992px) {

    .about-section h2 {
        font-size: 100px;
    }

    .about-section h2 span {
        font-size: 45px;
    }

    .about-section {
        min-height: 60vh;
    }

    .about-main-img {
        max-width: 85%;
    }
}

/* MD / 991px - 769px */
@media (max-width: 991px) and (min-width: 769px) {

    .about-section h2 {
        font-size: 80px;
    }

    .about-section h2 span {
        font-size: 35px;
    }
}

/* Mobile: <=768px */
@media (max-width: 768px) {

    .about-section {
        min-height: 320px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .about-main-img {
        max-width: 70%;
        margin: 0 auto;
    }

    .about-section h2 {
        font-size: 55px;
    }

    .about-section h2 span {
        font-size: 25px;
    }
}




/* Work Section Base */
.work-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
}

.work-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.work-section .container {
    position: relative;
    z-index: 2;
}

/* Typography */
.work-text h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 150px;
    line-height: 0.5; 
    color: #000;
    margin-bottom: 0; 
}

.work-text h2 span {
    font-family: 'Rouge Script', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.1;
    display: block;
    color: #FFB526;
    margin-bottom: 0.2em; 
}

/* Ikona */
.work-icon {
    max-width: 100px;
    height: auto;
 
}

/* Image */
.work-img img {
    max-width: 80%;
    height: auto;
}

/* LG / Ekrane te mesme: 1200px - 992px */
@media (max-width: 1200px) and (min-width: 992px) {
    .work-text h2 {
        font-size: 120px;
    }
    .work-text h2 span {
        font-size: 45px;
    }
    .work-img img {
        max-width: 85%;
    }
}

/* MD / Ekrane mesme-tevogla: 991px - 769px */
@media (max-width: 991px) and (min-width: 769px) {
    .work-text h2 {
        font-size: 90px;
    }
    .work-text h2 span {
        font-size: 35px;
    }
     .work-icon {
        max-width: 50px; 
       
    }
    .work-img img {
        max-width: 85%;
    }
}
/* Mobile: <=768px */
@media (max-width: 768px) {
    .work-section {
        min-height: 320px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .work-text h2 {
        font-size: 70px;
    }
    .work-text h2 span {
        font-size: 25px;
    }
    .work-icon {
        max-width: 40px; 
        margin-left: 0.5rem; 
    }
    .work-img img {
        max-width: 80%;
        margin: 0 auto;
    }
}


/* =======================
   BANNER SECTION (same as HERO)
   ======================= */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh; /* DESKTOP */
    overflow: hidden;
}

/* Background image */
.banner-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* qendër horizontale */
    align-items: center;     /* qendër vertikale */
}

/* Image – në qendër pa margin-top */
.banner-img {
    width: 80%;
    height: auto;
    display: block;
}

/* 📱 MOBILE (TELEFON) */
@media (max-width: 768px) {
    .banner-section {
        height: 300px;
    }

    .banner-img {
        width: 80%;
    }
}

/* 📟 TABLET (769px - 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .banner-section {
        height: 70vh;
    }

    .banner-img {
        width: 80%;
    }
}



/* ==========================
   UNIVERSAL SECTION BASE
========================== */
.section-base {
    position: relative;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url('../img/white-back.png');
  background-repeat: repeat;    /* vetëm nga lart-poshtë */
    background-size: auto;          /* ruan dimensionet ORIGJINALE */
    background-position: top center;
}


/* ==========================
   UNIVERSAL CONTENT WRAPPER
========================== */
.section-content {
    position: relative;
    z-index: 2;
}

/* ========== Responsive identik ========== */
@media (max-width: 768px) {
    .section-base {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}




.section-title{
    position: relative;
    z-index: 2;
}

/* Typography */
.section-title h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 0.5; 
    color: #000;
    margin-bottom: 0; 
}

/* Ikona */
.section-icon {
    max-width: 80px;
    height: auto;
 
}


/* LG / Ekrane te mesme: 1200px - 992px */
@media (max-width: 1200px) and (min-width: 992px) {
    .section-title h2 {
        font-size: 50px;
    }
    .section-icon{
        max-width: 70px;
    }
}

/* MD / Ekrane mesme-tevogla: 991px - 769px */
@media (max-width: 991px) and (min-width: 769px) {
    .section-title h2 {
        font-size: 40px;
    }
     .section-icon{
        max-width: 60px;
    }

}
/* Mobile: <=768px */
@media (max-width: 768px) {
   
    .section-title h2 {
        font-size: 30px;
    }
     .section-icon{
        max-width: 50px;
    }
  
}




/* --- Kolonat --- */
.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Fotot brenda kolonës */
.gallery-img {
    width: 100%;
    height: auto;
    object-fit: contain; /* mos dalin jashtë */
    display: block;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Kolona e mesit: centër vertikalisht */
.center-col {
    display: flex;
    justify-content: center;
}
.center-col img{
    max-width: 100%;
}


/* Vetëm për këtë seksion */
.branding-row .branding-img {
    width: 100%;       /* gjithmonë brenda wrapper-it të vet */
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    border-radius: 6px;
}

/* Wrapper për dy fotot lart */
.branding-top-img-wrapper {
    flex: 0 0 48%;   /* nuk del jashtë */
    max-width: 48%;  /* nuk e kalon 50% + gap */
}



/* Foto poshtë kolonës së majtë */
.branding-bottom {
    margin-top: 1rem;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .branding-top-img-wrapper {
        flex: 0 0 48%;   /* ose 49% për pak hapësirë */
        max-width: 48%;
        margin-bottom: 0.5rem;
    }

    .branding-col-left,
    .branding-col-right {
        margin-bottom: 1.5rem;
    }
}

/* ----------------------
   KOLONAT KRYESORE
----------------------- */
.equal-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ----------------------
   KUTIA E IMAZHEVE
----------------------- */
.img-box {
    flex: 1;                  /* ndahet hapësira barabartë */
    display: flex;
    align-items: center;       /* qendron vertikalisht */
    justify-content: center;   /* qendron horizontalisht */
    overflow: hidden;

}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;       /* ruan raportin origjinal, nuk shtrembërohet */
    cursor: pointer;
}

/* ----------------------
   Responsive
----------------------- */
@media (max-width: 991px) {
    .equal-col {
        flex-direction: column; /* kolonat bëhen vertikale */
    }
    .img-box {
        height: auto;
    }
    .img-box img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .equal-col {
        flex-direction: column;
    }
    .img-box {
        margin-bottom: 10px; /* hapësirë midis imazheve në mobile */
    }
}


/* Kutia prind për slider-in */
.slider-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;     /* Fotot mos të dalin jashtë */
  display: flex;
  justify-content: center;
}

/* Stilimi i fotove */
.slider-img {
  width: 90%;           /* 90% e prindit */
  height: auto;         /* gjithmonë auto */
  object-fit: contain;  /* shfaqet e plotë dhe e qendruar */
  display: block;
  margin: 0 auto;       /* qendrim horizontal */
  border-radius: 8px;
}

/* BUTONAT - pozicionim manual */
.swiper-button-next,
.swiper-button-prev {
  position: static !important;   /* NUK pozicionohen mbi fotografi */
  transform: none !important;
}

/* Heq ikonat default të Swiper-it */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* Butona me stilin tënd */
.custom-btn {
width: 50px;
display: flex;
  align-items: center;
  justify-content: center;
}

/* Pikat (pagination) në mes */
.swiper-pagination {
  position: static !important;
  width: auto !important;
}

/* Vendosja e pikeve */
.slider-controls {
  text-align: center;
}

/* Pikat */
.swiper-pagination-bullet {

  background: #A46C00;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #FFB526;
}

/* Responsive: 2 foto në tableta */
@media (max-width: 992px) {
  .slider-img {
    width: 95%;
  }
}

/* Responsive: 1 foto në mobile */
@media (max-width: 768px) {
  .slider-img {
    width: 100%;
  }
}



/* Modal background */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Modal box size: 80% width + 80vh height */
.video-content {
    position: relative;
    width: 80%;
    height: 80vh;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video keeps ratio, never cut */
.video-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* ensures no cropping */
    background: #000;      /* black padding behind video */
    border-radius: 10px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}