/* ---------------- GOOGLE FONTS ---------------- */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@400;600&display=swap');

/* ---------------- GLOBAL ---------------- */

*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:#fff;
cursor:none;
line-height:1.6;
}

h1,h2,h3{
font-family:'Bebas Neue',sans-serif;
letter-spacing:2px;
}

a{
text-decoration:none;
color:#999;
transition:.3s;
}

a:hover{
color:#facc15;
}

/* ---------------- NAVBAR ---------------- */

.navbar{
background:#facc15;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 20px;
position:sticky;
top:0;
z-index:1000;
}

.navbar a{
color:#000;
padding:15px;
font-weight:500;
}

.navbar a:hover{
background:#000;
color:#facc15;
}

/* ---------------- LOGO ---------------- */

.logo{
height:90px;
}

/* ---------------- HERO ---------------- */

.hero{
min-height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:40px 20px;
background:radial-gradient(circle at center,#111,#000);
}

.hero h1{
font-size:70px;
color:#facc15;
text-shadow:0 0 20px #facc15;
margin-bottom:10px;
}

.hero p{
font-size:20px;
color:#ccc;
max-width:700px;
}

/* ---------------- BACKGROUND SECTION ---------------- */

.background-box {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.background-box .logo {
  position: relative;
  z-index: 2;
  height: 120px;
}

h1 {
  font-size: 40px;
  line-height: 1.2;
}

/* ---------------- SERVICES ---------------- */

.services{
padding:80px 20px;
text-align:center;
}

.services h2{
font-size:40px;
margin-bottom:40px;
}

.video-section {
  width: 40%;
  height: 350px;
}

.video-slider {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(250,204,21,0.2);
}

.video-slider:hover {
  transform: scale(1.03);
  transition: 0.4s;
}

.video-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #facc15;
  font-size: 40px;
}


/*videoSHowcase*/


.video-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.video-row .card {
  width: 300px;
}

.video-row video {
  height: 350px;
  object-fit: cover;
}


/* GRID */

.service-grid{
display:grid;
gap:30px;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
max-width:1200px;
margin:auto;
}

/* CARD */

.card{
border-radius:15px;
overflow:hidden;
 display: flex;
flex-direction: column;
background:#111;
box-shadow:0 0 15px rgba(250,204,21,0.4);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px #facc15;
}

.card img,
.card video{
width:100%;
height:350px;
object-fit:cover;
}

.card-content{
padding:20px;
}

.card-content h3{
color:#facc15;
margin-bottom:10px;
}

.card-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.card-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- DESCRIPTION ---------------- */

.description,
.description2 {
  max-width: 500px;
}

.description h1,
.description2 h1{
color:#facc15;
}

.description2{
margin-left:120px;
}

/* ---------------- INFO SECTIONS ---------------- */

.info,
.info2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

.info2{
display:flex;
flex-direction:row-reverse;
align-items:center;
gap:30px;
}

/* ---------------- ABOUT ---------------- */

.rreth{
padding:60px 20px;
}

.rreth img {
  width: 40%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(250,204,21,0.2);
}

.rreth p {
  max-width: 100%;
  line-height: 1.7;
}

/* ---------------- VIDEO ---------------- */

.rreth video{
width:100%;
height:380px;
border-radius: 12px;
object-fit:cover;
}

/* ---------------- CONTACT ---------------- */

.contact{
padding:80px 20px;
text-align:center;
background:#111;
}

.contact h2{
font-size:35px;
margin-bottom:20px;
}

/* SOCIAL */

.social-icons{
margin-top:20px;
}

.social-icons a{
margin:0 10px;
font-size:24px;
color:#facc15;
}

/* ---------------- WHATSAPP BUTTON ---------------- */

.whatsapp-button{
display:inline-block;
margin-top:25px;
background:#25D366;
color:#fff;
padding:12px 25px;
border-radius:30px;
font-weight:500;
transition:.3s;
}

.whatsapp-button:hover{
background:#1ebe5d;
}

/* ---------------- CURSOR ---------------- */

.cursor-dot{
position:fixed;
width:10px;
height:10px;
background:white;
border-radius:50%;
pointer-events:none;
z-index:9999;
box-shadow:0 0 10px white;
transform:translate(-50%,-50%);
}

/* ---------------- SPARK EFFECT ---------------- */

.spark{
position:absolute;
width:6px;
height:6px;
border-radius:50%;
background:hsl(var(--hue),100%,60%);
pointer-events:none;
animation:fadeOut .8s forwards;
}

@keyframes fadeOut{

0%{
transform:scale(1);
opacity:1;
}

100%{
transform:scale(.5) translateY(-20px);
opacity:0;
}

}

/* ---------------- FOOTER ---------------- */

.footer{
background:linear-gradient(to bottom,#000,#facc15 70%);
color:#000;
padding:50px 20px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
gap:40px;
justify-content:space-between;
}

.footer-links a,
.footer-social a{
display:block;
margin:6px 0;
color:#000;
}

.footer-bottom{
text-align:center;
margin-top:30px;
font-size:14px;
}

footer p {
  margin-top: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #6c3cff;
  text-decoration: underline;
}

/* ---------------- MOBILE ---------------- */

/* ================= MOBILE FIX FULL ================= */
@media (max-width:768px){

/* NAVBAR */
.navbar{
  flex-direction:column;
  align-items:center;
}

.navbar a{
  width:100%;
  text-align:center;
}

/* HERO */
.hero h1{
  font-size:36px;
}

.hero p{
  font-size:15px;
}

/* BACKGROUND VIDEO */
.background-box{
  height:300px;
}

.background-box .logo{
  height:80px;
}

/* INFO SECTIONS */
.info,
.info2{
  flex-direction:column;
  gap:30px;
  text-align:center;
}

.description,
.description2{
  max-width:100%;
}

.description2{
  margin-left:0;
}

/* IMAGES */
.rreth img{
  width:100%;
  height:250px;
}

/* VIDEO SECTION */
.video-section{
  width:100%;
  height:auto;
}

.video-slider{
  height:250px;
}

/* SERVICES GRID */
.service-grid{
  grid-template-columns:1fr;
}

/* CARDS */
.card{
  width:100%;
}

.card img,
.card video{
  height:250px;
}

.card-slider{
  height:250px;
}

/* VIDEO ROW (poshtë videot) */
.video-row{
  flex-direction:column;
  align-items:center;
}

.video-row .card{
  width:100%;
  max-width:350px;
}

.video-row video{
  height:250px;
}

/* FOOTER */
.footer-container{
  flex-direction:column;
  text-align:center;
  align-items:center;
}

/* CURSOR OFF (shumë e rëndësishme për mobile) */
.cursor-dot{
  display:none;
}

}