/* =====================================================
   JioSaavn.site - Global Stylesheet
   Author: Aayat Zahara
   Theme: Light Green (EMD + AdSense Ready)
   Version: 1.0
===================================================== */

/* 🌿 Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f9fff9;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* 🌈 Color Variables */
:root {
  --primary: #7ed957;
  --secondary: #2e7d32;
  --light: #e9ffe9;
  --text-dark: #1b1b1b;
  --white: #ffffff;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* 🌿 Header */
header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: 1px;
}

header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: #d0ffd0;
}

/* 🌐 Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8em;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: var(--secondary);
    width: 200px;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px 0 0 8px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* 🎨 Hero Section */
.hero {
  margin-top: 80px;
  background: var(--light);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5em;
  color: var(--secondary);
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 25px;
}

/* 3D Button */
.btn {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 0 #4caf50;
  transition: 0.2s;
}

.btn:hover {
  box-shadow: 0 4px 0 #2e7d32;
  transform: translateY(2px);
}

/* 📦 Content Sections */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2em;
  color: var(--secondary);
  margin-bottom: 20px;
}

p {
  font-size: 1em;
  margin-bottom: 15px;
}

ul {
  margin-left: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: var(--shadow);
}

th, td {
  border: 1px solid #c8e6c9;
  padding: 12px;
  text-align: left;
}

th {
  background-color: var(--primary);
  color: var(--white);
}

td {
  background-color: #f0fff0;
}

/* 🪄 Ad Box */
.ads-box {
  background: #eaffea;
  border: 2px dashed var(--primary);
  text-align: center;
  padding: 20px;
  margin: 40px 0;
  border-radius: 10px;
  color: var(--secondary);
  font-weight: 500;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1em;
  }
  table, th, td {
    font-size: 0.9em;
  }
}

/* 🦶 Footer */
footer {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

footer a {
  color: #aaffaa;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: var(--white);
}

footer p {
  font-size: 0.9em;
}

/* 🎯 Language Dropdown */
.lang-select {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
}
