/* style.css */
/* ====================================
   Alone, Awakened, and Alive - Website Styles
   Author: Smithaa M Chaturvedi
   ==================================== */

/* CSS Variables for easy customization */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
  background-color: var(--white);
}

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

/* Navigation */
.site-navbar {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

/* Endorsement Section - Sushmita Sen */
.endorsement-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.endorsement-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.endorsement-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.endorsement-section blockquote {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--white);
  backdrop-filter: blur(10px);
}

.endorsement-section blockquote p {
  font-size: 1.4rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

/* Hero/Cover Section */
.site-blocks-cover {
  padding: 80px 0;
  background-color: var(--white);
}

.site-blocks-cover .row {
  display: flex;
  align-items: center;
}

.site-blocks-cover h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.site-blocks-cover p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.site-blocks-cover img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Site Section - General */
.site-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Card Styling */
.card {
  background: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.about-section .row {
  display: flex;
  align-items: center;
}

.about-section img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 15px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

/* Testimonials Section */
.testimonial-section {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonial {
  background: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  height: 100%;
}

.testimonial blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial blockquote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial figure {
  margin: 0;
}

.testimonial footer {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: normal;
}

.testimonial footer:first-child {
  font-weight: 700;
  margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background-color: var(--text-dark); color: var(--white); padding: 30px 0; text-align: center;
}
.site-footer p {
  margin: 0; font-size: 0.95rem; opacity: 0.8;
}
.footer-social a {
  margin: 0 10px; color: var(--white); font-size: 1.2rem; text-decoration: none; transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--primary-color); }


/* Responsive Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-4,
.col-lg-6,
.col-lg-8 {
  padding: 0 15px;
  margin-bottom: 30px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
  .col-lg-4,
  .col-lg-6,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .endorsement-section h1 {
    font-size: 2rem;
  }

  .endorsement-section blockquote p {
    font-size: 1.2rem;
  }

  .site-blocks-cover h2 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .site-blocks-cover img {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .endorsement-section {
    padding: 40px 20px;
  }

  .endorsement-section h1 {
    font-size: 1.5rem;
  }

  .endorsement-section blockquote {
    padding: 20px;
  }

  .endorsement-section blockquote p {
    font-size: 1rem;
  }

  .site-blocks-cover h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .site-section,
  .about-section,
  .testimonial-section,
  .contact-section {
    padding: 50px 0;
  }

  .btn-lg {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

.site-blocks-cover,
.site-section,
.about-section,
.testimonial-section {
  animation: fadeIn 0.8s ease-in-out;
}
