/* RESET */
html, body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Poppins', sans-serif;
background: #0a0a0a;
color: #fff;
}

.container {
width: 90%;
margin: auto;
}

/* HEADER */
.header {
background: #000;
padding: 15px 0;
border-bottom: 1px solid rgba(255,255,255,0.08);
position: sticky;
top: 0;
z-index: 999;
}


.header-flex {
  display: flex;
  align-items: center;
}

.logo {
  flex: 0 0 auto;
}

.menu {
  flex: 1;
  display: flex;
  justify-content: center; /* 🔥 center menu */
}

.actions {
  flex: 0 0 auto;
}
/* LOGO */
.logo-main {
font-size: 26px;
font-weight: 700;
background: linear-gradient(45deg,#ff2e7a,#ff9a00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.logo-main span {
color: #fff;
-webkit-text-fill-color: #fff;
}

/* MENU */
.menu {
display: flex;
gap: 20px;
}
.menu {
  margin-left: 40px; /* logo se gap */
}
.menu a {
color: #ddd;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.menu a:hover {
color: #ff2e7a;
}
.menu a {
  position: relative;
  padding-bottom: 5px;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#ff2e7a,#ff9a00);
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}
/* BUTTONS */
.actions {
display: flex;
align-items: center;
margin-left: auto;
}

.actions a {
margin-left: 10px;
padding: 10px 16px;
border-radius: 25px;
text-decoration: none;
font-size: 13px;
}

.call-btn {
background: linear-gradient(45deg,#ff2e7a,#ff0066);
color: #fff;
}

.wa-btn {
background: linear-gradient(45deg,#25D366,#128C7E);
color: #fff;
}

/* HAMBURGER */
.menu-toggle {
display: none;
font-size: 26px;
cursor: pointer;
color: #fff;
margin-left: 10px;
}

/* BANNER */
.luxury-banner {
padding: 80px 0;
background: radial-gradient(circle at right, #2a0015, #000);
}

.banner-wrap {
display: flex;
align-items: center;
justify-content: space-between;
gap: 80px;
}

/* TEXT */
.banner-title {
font-size: 60px;
}

.banner-title span {
color: #ff2e7a;
}

.banner-desc {
color: #bbb;
max-width: 400px;
margin: 20px 0;
}

/* IMAGE */
.banner-visual {
position: relative;
max-width: 500px;
transform: translateX(-120px);
}
@media(max-width:768px){
  .banner-visual {
    transform: translateX(0);
  }
}
.banner-visual img {
width: 100%;
max-width: 420px;
display: block;
}

/* FLOAT CARDS */
.float-card {
	cursor: pointer;
  position: absolute;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 0 30px rgba(255,0,80,0.25);

  animation: floatY 4s ease-in-out infinite;
  transition: 0.3s;
}

/* HOVER EFFECT */
.float-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255,0,120,0.6);
}

.card1 { top: 40%; left: 50%; }
.card2 { bottom: 15%; left: 48%; }
.card3 { top: 35%; right: 15%; }
.card4 { bottom: 15%; right: 10%; }

@keyframes floatY {
0% { transform: translateY(0px); }
50% { transform: translateY(-12px); }
100% { transform: translateY(0px); }
}

.card1 { animation-delay: 0s; }
.card2 { animation-delay: 0.5s; }
.card3 { animation-delay: 1s; }
.card4 { animation-delay: 1.5s; }

/* ================= MOBILE ================= */
@media(max-width:768px){

.header-flex {
display: flex;
align-items: center;
justify-content: space-between;
}

/* MENU DROPDOWN */
@media(max-width:768px){

  /* MENU CLOSED STATE */
  .menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #000;

    display: none; /* 🔥 IMPORTANT */

    flex-direction: column;
    align-items: center;

    overflow: hidden;
    z-index: 998;
  }
  .banner-visual {
    transform: translateX(0); /* reset */
  }
}
  /* MENU OPEN */
  .menu.active {
    display: flex; /* 🔥 show menu */
  }

  /* LINKS */
  .menu a {
    width: 100%;
    text-align: center;
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

}

/* SHOW MENU ICON */
.menu-toggle {
display: block;
z-index: 1001;
}

/* BUTTONS */
.actions {
display: flex;
gap: 6px;
}

.actions a {
padding: 6px 8px;
font-size: 11px;
}

/* BANNER */
.banner-wrap {
flex-direction: column;
text-align: center;
gap: 30px;
}

.banner-visual {
transform: translateX(0);
max-width: 280px;
}

.banner-title {
font-size: 34px;
}

.banner-desc {
font-size: 14px;
}

.banner-actions {
display: flex;
justify-content: center;
gap: 10px;
}

/* FLOAT CARDS */
.float-card {
font-size: 10px;
padding: 8px;
}

.card1 { top: 0; left: 10%; }
.card2 { bottom: 0; left: 10%; }
.card3 { top: 0; right: 10%; }
.card4 { bottom: 0; right: 10%; }

}
