/* main.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo-gradient {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #6a11cb;
}

.login-btn {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: linear-gradient(90deg, #5a0fb0, #1f64e5);
}

.mobile-icon {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: absolute;
  top: 70px;
  right: 0;
  width: 200px;
  padding: 1rem;
}

.mobile-menu a {
  padding: 0.5rem 0;
  font-weight: 500;
}

.hero {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(90deg, #ff00cc, #333399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: #6a11cb;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-p {
  background: white;
  color: #6a11cb;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: #f0f0f0;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: #6a11cb;
}

.services {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6a11cb;
}

.card.instagram .icon {
  color: #E4405F;
}

.card.youtube .icon {
  color: #FF0000;
}

.card.spotify .icon {
  color: #1DB954;
}

.footer {
  background: #111;
  color: #ccc;
  padding: 3rem 1rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

.footer-about h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.footer-text {
  font-size: 0.9rem;
}

.heart {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Responsive navbar menu */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-icon {
    display: block;
  }

  #mobile-menu.show {
    display: flex;
  }
}
/* Modal base styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
  position: relative;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

.menu-section h3 {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #333;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.menu-section ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #444;
}

.close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #333;
}



.floating-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicking through */
  overflow: hidden;
  z-index: 0; /* Behind all content */
}

.floating-background i {
  position: absolute;
  color: rgba(106, 17, 203, 0.3); /* Increased opacity for highlight */
  font-size: 24px;
  animation: floatIcon 15s linear infinite;
  opacity: 0.5; /* Overall opacity slightly higher */
  filter: drop-shadow(0 0 6px rgba(106, 17, 203, 0.4)); /* subtle glow */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Different random starting positions and sizes */
.floating-background i:nth-child(1) { left: 10%; top: 100%; font-size: 22px; animation-delay: 0s; }
.floating-background i:nth-child(2) { left: 30%; top: 110%; font-size: 30px; animation-delay: 3s; }
.floating-background i:nth-child(3) { left: 50%; top: 120%; font-size: 26px; animation-delay: 6s; }
.floating-background i:nth-child(4) { left: 70%; top: 115%; font-size: 32px; animation-delay: 9s; }
.floating-background i:nth-child(5) { left: 85%; top: 105%; font-size: 28px; animation-delay: 12s; }
.floating-background i:nth-child(6) { left: 20%; top: 125%; font-size: 24px; animation-delay: 15s; }

@keyframes floatIcon {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
    transform: translateY(-60vh) scale(1.1);
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0.3;
  }
}
.hidden {
  display: none;
}

.animate-bounce-in {
  animation: bounce-in 0.5s ease-out;
}

@keyframes bounce-in {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

.animate-ping-once {
  animation: ping-once 0.6s ease-out;
}

@keyframes ping-once {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* ==================== Modal Styling ==================== */

.insta-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease forwards;
}

.insta-modal-content {
  background: #fff;
  padding: 30px 20px;
  max-width: 400px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: scale(0.95);
  opacity: 0;
  animation: modalAppear 0.4s ease forwards;
  position: relative;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes modalAppear {
  to { transform: scale(1); opacity: 1; }
}

.insta-modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
}

.insta-modal input {
  width: 100%;
  margin: 10px 0;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border 0.3s;
}

.insta-modal input:focus {
  border-color: #7c3aed;
  outline: none;
}

.insta-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.insta-close-btn:hover {
  color: #333;
}

.btn-primary1 {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9333ea, #6d28d9);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 3px 8px rgba(124, 58, 237, 0.5);
}

.btn-outline1 {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.btn-outline1:hover {
  background: rgba(255,255,255,0.1);
}

.btn-outline1:active {
  transform: scale(0.98);
}
