/* KarmaBro Website Styles */

:root {
  --saffron: #FF9933;
  --deep-indigo: #1A1A4D;
  --soft-gold: #FFD700;
  --celestial-white: #F8F8FF;
  --accent-orange: #FF6633;
  --dark-blue: #0A0A2A;
  --light-indigo: #3A3A7D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--deep-indigo);
  color: var(--celestial-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--saffron);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--saffron);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--soft-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--saffron);
  color: var(--deep-indigo);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.btn:hover {
  background-color: var(--soft-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--saffron);
  color: var(--saffron);
}

.btn-outline:hover {
  background-color: var(--saffron);
  color: var(--deep-indigo);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 26, 77, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--saffron);
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--celestial-white);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--saffron);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1.4s ease;
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--saffron);
}

/* Watch Section */
.watch-section {
  background-color: var(--dark-blue);
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.watch-card {
  background-color: var(--light-indigo);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.watch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.watch-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.watch-card-content {
  padding: 20px;
}

.watch-card h3 {
  margin-bottom: 10px;
}

.watch-card p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.watch-card .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Music Section */
.music-section {
  background: linear-gradient(to bottom, var(--dark-blue), var(--deep-indigo));
}

.music-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.music-player {
  max-width: 500px;
  width: 100%;
}

.music-player img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.music-content {
  max-width: 500px;
}

.music-list {
  margin-top: 30px;
}

.music-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: var(--light-indigo);
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.music-item:hover {
  background-color: rgba(58, 58, 125, 0.8);
  transform: translateX(5px);
}

.music-item-icon {
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--saffron);
}

.music-item-info h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.music-item-info p {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: rgba(248, 248, 255, 0.7);
}

/* Meditation Section */
.meditation-section {
  background-color: var(--deep-indigo);
}

.meditation-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.meditation-image {
  max-width: 400px;
  width: 100%;
}

.meditation-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.meditation-content {
  max-width: 500px;
}

.meditation-features {
  margin-top: 30px;
}

.meditation-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.meditation-feature-icon {
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--saffron);
}

.meditation-feature-info h4 {
  margin-bottom: 5px;
}

.meditation-feature-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Feed Section */
.feed-section {
  background: linear-gradient(to bottom, var(--deep-indigo), var(--dark-blue));
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feed-card {
  background-color: var(--light-indigo);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feed-card-content {
  padding: 20px;
}

.feed-card h3 {
  margin-bottom: 10px;
}

.feed-card p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.feed-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(248, 248, 255, 0.1);
}

.feed-card-date {
  font-size: 0.8rem;
  color: rgba(248, 248, 255, 0.7);
}

.feed-card-likes {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(248, 248, 255, 0.7);
}

.feed-card-likes i {
  margin-right: 5px;
  color: var(--saffron);
}

/* About Section */
.about-section {
  background-color: var(--dark-blue);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-content {
  max-width: 500px;
}

.about-image {
  max-width: 400px;
  width: 100%;
}

.about-image img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.about-stat {
  text-align: center;
  margin-bottom: 20px;
  flex: 1;
  min-width: 120px;
}

.about-stat h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.about-stat p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: rgba(248, 248, 255, 0.7);
}

/* Premium Section */
.premium-section {
  background: linear-gradient(to right, var(--deep-indigo), var(--dark-blue));
  text-align: center;
}

.premium-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.premium-feature {
  background-color: var(--light-indigo);
  border-radius: 15px;
  padding: 30px;
  max-width: 300px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.premium-feature-icon {
  font-size: 2.5rem;
  color: var(--saffron);
  margin-bottom: 20px;
}

.premium-feature h3 {
  margin-bottom: 15px;
}

.premium-feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  padding: 80px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: rgba(248, 248, 255, 0.7);
}

.footer-links h3 {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(248, 248, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--saffron);
}

.footer-newsletter h3 {
  margin-bottom: 20px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: rgba(248, 248, 255, 0.7);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  background-color: rgba(248, 248, 255, 0.1);
  color: var(--celestial-white);
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 0 30px 30px 0;
  background-color: var(--saffron);
  color: var(--deep-indigo);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--soft-gold);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 248, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(248, 248, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(248, 248, 255, 0.1);
  color: var(--celestial-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--saffron);
  color: var(--deep-indigo);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float {
  animation: float 4s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--deep-indigo);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-stat {
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .watch-grid,
  .feed-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-feature {
    max-width: 100%;
  }
  
  .footer-container > div {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .header-container {
    padding: 15px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .about-stat {
    min-width: 120px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 30px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: 30px;
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
