/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #09183b; /* same as logo background */
  color: #ffffff;
  overflow-x: hidden;
}

/* Header */
header {
  background-color: #09183b;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
}

.logo {
  width: 100px;
  height: auto;
}

nav a {
  color: white;
  margin-left: 25px;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63; /* hover pink */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 160px 20px 120px;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  padding-top: 120px;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 160px; /* extra padding for mobile header */
  }
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  color: #f5c4d5;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: linear-gradient(45deg, #c2185b, #e91e63);
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(233,30,99,0.4);
}

/* Section General */
section {
  padding: 80px 10%;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  color: #e91e63;
  margin-bottom: 20px;
}

/* About */
.about p {
  color: #e0e0e0;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

/* Products */
.products {
  background-color: #0e1d49;
  border-radius: 30px 30px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: #15285b;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h3 {
  color: #e91e63;
  margin-bottom: 10px;
}

.product-card p {
  color: #e5e5e5;
  margin-bottom: 15px;
}

/* Contact */
.contact .highlight {
  color: #25D366;
  font-weight: bold;
}

.contact p {
  color: #e0e0e0;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #071230;
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 90px;
  height: 90px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 2000;
}

.whatsapp-float img {
  width: 65px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
  }
  nav a {
    display: inline-block;
    margin: 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* --- Fix: Smooth Scroll Offset for Mobile --- */
:target {
  scroll-margin-top: 130px; /* prevents text cutting under header */
}

