/* RAVE MUN - Premium About Page CSS */

:root {
  --primary-black: #0a0a0a;
  --deep-black: #000000;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #3a3a3a;
  --silver: #c0c0c0;
  --light-silver: #e0e0e0;
  --premium-gold: #B66878;
  --premium-blue: #1e3a8a;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --glass-bg: rgba(26, 26, 26, 0.85);
  --glass-border: rgba(192, 192, 192, 0.3);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  /* cursor: none only on desktop - see style.css media query */
  padding-top: 140px;
  /* Prevent fixed navbar overlap */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--light-silver);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

/* Custom Cursor */
.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--silver);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
}

/* Navigation handled by public/css/navbar.css */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('/images/backgroumd.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
  margin-top: -60px;
}

.hero-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--premium-gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .accent-text {
  color: var(--premium-gold);
  position: relative;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}



/* Mission Section */
.mission-section {
  padding: 8rem 0;
  background: var(--dark-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-title .accent {
  color: var(--premium-gold);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-text p {
  margin-bottom: 1.5rem;
}

.mission-image {
  text-align: center;
}

.image-placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--premium-gold);
  border: 2px solid var(--silver);
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: var(--primary-black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--premium-gold);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--premium-gold);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--premium-gold);
  color: var(--primary-black);
  transform: scale(1.1);
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--text-secondary);
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  background: var(--dark-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--premium-gold);
}

.member-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--premium-gold);
  transition: all 0.3s ease;
}

.team-member:hover .member-image {
  background: var(--premium-gold);
  color: var(--primary-black);
}

.team-member h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.team-member p {
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.cta-content h2 .accent {
  color: var(--premium-gold);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--premium-gold);
  color: var(--primary-black);
  box-shadow: 0 10px 25px rgba(182, 104, 120, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(182, 104, 120, 0.5);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}



/* Responsive Design */
/* Tablet and below */
@media (max-width: 1024px) {
  .container {
    width: 92%;
    padding: 0 1.5rem;
  }

  .mission-content {
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

/* Mobile and Tablet */
@media (max-width: 768px) {
  /* Navbar responsiveness handled by public/css/navbar.css */

  body {
    padding-top: 120px;
  }

  .container {
    width: 95%;
    padding: 0 1rem;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .mission-section {
    padding: 5rem 0;
  }

  .mission-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  .mission-text p {
    margin-bottom: 1.2rem;
  }

  .image-placeholder {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }

  .values-section {
    padding: 5rem 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .team-section {
    padding: 5rem 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .team-member {
    padding: 2rem 1.5rem;
  }

  .member-image {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-content h2 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .cta-content p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  body {
    padding-top: 100px;
  }

  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .hero-section {
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .mission-section,
  .values-section,
  .team-section {
    padding: 4rem 0;
  }

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

  .mission-text {
    font-size: 0.95rem;
  }

  .image-placeholder {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }

  .value-card,
  .team-member {
    padding: 1.5rem 1rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .member-image {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .value-card,
  .team-member {
    padding: 1.2rem 0.8rem;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Premium Glow Effects */
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--premium-gold), var(--silver), var(--premium-gold));
  border-radius: inherit;
  z-index: -1;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.8;
  }
}