* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0b0b;
  color: white;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: gold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: url('home party.jpg') center/cover;
}

.about{
    padding: 80px 10%;
    background: #020617;
}

/* FLEX LAYOUT */
.about-container{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image img{
    width: 400px;
    border-radius: 15px;
}

/* CONTENT */
.about-content{
    max-width: 500px;
}

.about-content h2{
    font-size: 40px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.about-content p{
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BUTTON */
.about-btn{
    display: inline-block;
    padding: 10px 25px;
    background: #38bdf8;
    color: black;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover{
    background: white;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: rgba(255, 255, 252, 0.945);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: white;
}
.card img {
  width: 400px;      /* Reduce width */
  height: 299px;     /* Reduce height */
  object-fit: cover; /* Keeps image proportion */
  border-radius: 15px;
  color:rgba(231, 198, 9, 0.801)
}

.hero-content .btn {
  display: inline-block;
  margin-top: 45px; /* Increase for lower position */
  color:#bdab08
  
}

.services, .artists, .booking , .contact{
  padding: 100px 50px;
  text-align: center;
}

.service-grid, .artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card, .artist-card {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.service-card:hover, .artist-card:hover {
  transform: translateY(-10px);
}

.carousel-section {
  padding: 100px 0;
  text-align: center;
}

.carousel {
  perspective: 1200px;
  margin-top: 50px;
}

.carousel-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  transform-style: preserve-3d;
  animation: rotate 20s infinite linear;
}

.card {
  width: 220px;
  height: 300px;
  background: linear-gradient(135deg, gold, orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 24px;
  font-weight: bold;
  border-radius: 20px;
}

@keyframes rotate {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.artist-card img {
  width: 100%;
  border-radius: 10px;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input, form select, form textarea {
  margin: 15px 0;
  padding: 15px;
  border: none;
  border-radius: 10px;
}

form button {
  padding: 15px;
  background: gold;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
/* =========================
          FOOTER
========================= */

.footer{
    width:100%;
    padding:100px 8%;
    position:relative;

    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),
    url("");

    background-size:cover;
    background-position:center;

    color:#fff;
}

/* CONTAINER */

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:80px;
    align-items:start;
}

/* LOGO */

.footer-logo{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.footer-logo span{
    color:#42c8f5;
}

.tagline{
    font-size:14px;
    letter-spacing:4px;
    margin-bottom:40px;
}

/* CONTACT */

.footer-contact p{
    margin-bottom:22px;
    font-size:20px;
    color:#f1f1f1;
}

/* LINKS */

.footer-center,
.footer-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.footer-center a,
.footer-right a{
    text-decoration:none;
    color:#fff;
    font-size:22px;
    transition:0.3s;
}

.footer-center a:hover,
.footer-right a:hover{
    color:#42c8f5;
}

/* RESPONSIVE */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-logo{
        font-size:32px;
    }

}
.contact-section {
  padding: 100px 50px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  background: #0b0b0b;
  color: white;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  color: gold;
  margin-bottom: 20px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin: 15px 0;
  padding: 15px;
  border: none;
  border-radius: 10px;
}

.contact-form button {
  padding: 15px;
  background: gold;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background: #111;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff4c60;
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff4c60;
}

.btn {
  background: #ff4c60;
  padding: 8px 15px;
  border-radius: 5px;
}
.services {
  padding: 60px;
  text-align: center;
}

.service-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
}
.gallery {
  display: flex;
  gap: 20px;
  padding: 40px;
}

.gallery img {
  width: 30%;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.popup img {
  width: 60%;
}

.popup span {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}
.artist-container {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.artist-card {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.artist-card img {
  width: 100%;
  border-radius: 10px;
}
.register {
  text-align: center;
  padding: 60px;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px;
  background: #ff4c60;
  border: none;
  color: white;
  cursor: pointer;
}
.contact {
  padding: 60px;
  text-align: center;
}

textarea {
  padding: 10px;
  height: 100px;
  border-radius: 5px;
  border: none;
}
/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
    font-family:'Poppins', sans-serif;
}
/* =========================
   SERVICES HERO SECTION
========================= */

.services-hero{
    width:100%;
    height:85vh;
    background:url("hero.png")
     center/cover no-repeat;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}
/* =========================
   SERVICES HERO SECTION
========================= */

.services-hero{
    width:100%;
    height:85vh;
    background:url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?q=80&w=1600&auto=format&fit=crop")
    center center/cover no-repeat;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

/* TEXT */

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero-content h1{
    color:#fff;
    font-size:110px;
    font-weight:700;
    letter-spacing:3px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .services-hero{
        height:65vh;
    }

    .hero-content h1{
        font-size:60px;
    }

}
/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

/* TEXT */

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero-content h1{
    color:#fff;
    font-size:110px;
    font-weight:700;
    letter-spacing:3px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .services-hero{
        height:65vh;
    }

    .hero-content h1{
        font-size:60px;
    }

}

/* SECTION */

.other-services-section{
    width:100%;
    padding:120px 8%;
    background:#f7f7f7;
}

/* TITLE */

.services-heading{
    text-align:center;
    margin-bottom:90px;
}

.services-heading span{
    font-size:14px;
    letter-spacing:5px;
    font-weight:600;
    color:#000;
}

.services-heading h1{
    font-size:72px;
    color:#333;
    margin-top:10px;
    font-weight:700;
}

.heading-line{
    width:60px;
    height:4px;
    background:#111;
    margin:22px auto 0;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px 100px;
}

/* BOX */

.service-box{
    display:flex;
    align-items:flex-start;
    gap:30px;
}

/* ICON */

.service-icon{
    font-size:58px;
    line-height:1;
    min-width:70px;
}

/* TEXT */

.service-content h2{
    font-size:28px;
    color:#222;
    margin-bottom:15px;
    font-weight:500;
}

.service-content p{
    font-size:18px;
    line-height:1.9;
    color:#8a8a8a;
}

/* RESPONSIVE */

@media(max-width:992px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-heading h1{
        font-size:50px;
    }

}
/* =========================
          FOOTER
========================= */

.footer{
    width:100%;
    padding:100px 8%;
    position:relative;

    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1600&auto=format&fit=crop");

    background-size:cover;
    background-position:center;

    color:#fff;
}

/* CONTAINER */

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:80px;
    align-items:start;
}

/* LOGO */

.footer-logo{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.footer-logo span{
    color:#42c8f5;
}

.tagline{
    font-size:14px;
    letter-spacing:4px;
    margin-bottom:40px;
}

/* CONTACT */

.footer-contact p{
    margin-bottom:22px;
    font-size:20px;
    color:#f1f1f1;
}

/* LINKS */

.footer-center,
.footer-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.footer-center a,
.footer-right a{
    text-decoration:none;
    color:#fff;
    font-size:22px;
    transition:0.3s;
}

.footer-center a:hover,
.footer-right a:hover{
    color:#42c8f5;
}

/* RESPONSIVE */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-logo{
        font-size:32px;
    }

}
