body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d63384;
  padding: 1rem 2rem;
  color: #fff;
}

header .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

nav .btn {
  background: #ff6f61;
  padding: 8px 12px;
  border-radius: 5px;
}

.hero {
  background: url('img1.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.btn {
  display: inline-block;
  background: #ff6f61;
  color: white;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 6px;
  text-decoration: none;
}

.highlight {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
}

.blog-preview {
  background: #fafafa;
  padding: 40px 20px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
}



/* Reset */
body, h1, h2, h3, p {
  margin: 0; padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  animation: fadeInDown 1.5s ease;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
  animation: fadeInUp 2s ease;
}

.btn {
  background: #e63946;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #d62828;
  transform: scale(1.05);
}

/* Services */
.service {
  padding: 60px 20px;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  display: block;
}

.card:hover {
  transform: translateY(-8px);
}

/* Portfolio */
.portfolio {
  padding: 60px 20px;
  background: #fdf2f2;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}


.contact {
  background: #f8f8f8;
  padding: 50px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #6a1b9a;
}

.contact p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #444;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* Instagram Style */
.social-links .instagram {
  background: #E1306C;
  color: white;
}

.social-links .instagram:hover {
  background: #C13584;
  transform: scale(1.1);
}

/* Facebook Style */
.social-links .facebook {
  background: #1877F2;
  color: white;
}

.social-links .facebook:hover {
  background: #0d5bd7;
  transform: scale(1.1);
}

/* YouTube Style */
.social-links .youtube {
  background: #FF0000;
  color: white;
}

.social-links .youtube:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.social-links .wa {
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-links .wa:hover {
  background: #128C7E; /* darker green */
  transform: scale(1.2);
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
}

.about {
  padding: 50px;
  background: linear-gradient(to right, #f8bbd0, #fff);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  font-size: 32px;
  color: #b71c1c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  font-size: 28px;
  margin-right: 15px;
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.social-links .fa-instagram:hover { color: #E4405F; }
.social-links .fa-facebook:hover { color: #1877F2; }
.social-links .fa-youtube:hover { color: #FF0000; }
.social-links .fa-whatsapp:hover { color: #25D366; }

.blog-section {
  padding: 50px;
  text-align: center;
  background: #fff;
}

.blog-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-card {
  width: 300px;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 20px;
  margin: 15px 0;
}

.blog-card p {
  font-size: 14px;
  padding: 0 15px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin: 15px 0;
  padding: 8px 15px;
  background: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #e6554f;
}





/* Gallery Section */
.gallery {
  background: #fff;
  text-align: center;
  padding: 20px;
}

.gallery h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #6a1b9a;
}

/* Horizontal Full-Screen Scroll */
.gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  height: 50vh; /* take almost full screen */
  padding-bottom: 15px;
  scroll-behavior: smooth;
}

.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background: #6a1b9a;
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 auto;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gallery-item img {
  height: 100%;
  width: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}


/* Animations */
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}



.blog-hero {
  position: relative;
  height: 50vh;
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Cursive', sans-serif;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease forwards;
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease forwards;
}

.hero-btn {
  background-color: #ff7f50;
  padding: 0.8rem 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  animation: fadeIn 2.5s ease forwards;
}

.hero-btn:hover {
  background-color: #ff4500;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Optional: floating mehndi sparkle effect */
.hero-content::before {
  content: "🌸";
  position: absolute;
  font-size: 2rem;
  animation: float 4s infinite;
  top: -20px;
  left: 10%;
  opacity: 0.8;
}
.hero-content::after {
  content: "🌿";
  position: absolute;
  font-size: 2rem;
  animation: float 5s infinite;
  bottom: 10%;
  right: 15%;
  opacity: 0.8;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(-20px) rotate(15deg);}
  100% { transform: translateY(0) rotate(0deg);}
}


/* ===============================
   Responsive Design
   =============================== */

/* For tablets and smaller laptops */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 3 */
    gap: 15px;
  }

  .blog-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  nav ul {
    gap: 15px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  /* Navbar */
  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav ul li {
    margin: 8px 0;
  }

  /* Home / Hero section */
  .hero {
    padding: 50px 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Service Cards */
  .grid {
    grid-template-columns: 1fr; /* stack all */
    gap: 20px;
  }

  /* Blog Cards */
  .blog-container {
    grid-template-columns: 1fr; /* single column */
  }

  /* Contact Section */
  .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .social-links a {
    font-size: 1.5rem;
    padding: 10px;
  }
}

/* For very small devices (like old phones) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b91c1c; /* mehndi red */
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #facc15; /* yellow hover */
}

/* Hamburger hidden by default */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #b91c1c;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}
