/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #8b0000;
  --primary-light: #c41e3a;
  --primary-dark: #5c0000;
  --secondary-color: #d4af37;
  --secondary-light: #f5d76e;
  --accent-color: #f8f0e3;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --gray-color: #f5f5f5;
  --gray-dark: #e0e0e0;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
  /* Space between subtitle and title */
  position: relative;
  padding: 0 50px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--primary-color);
}

.section-subtitle::before {
  left: -40px;
  /* Position the line to the left of the text */
}

.section-subtitle::after {
  right: -40px;
  /* Position the line to the right of the text */
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  position: relative;
  display: block;
  margin-top: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: var(--light-color);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.btn span {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn i {
  margin-left: 10px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
  transition: var(--transition);
  z-index: 1;
}

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:hover i {
  transform: translateX(5px);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: transform 0.1s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-animation-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(139, 0, 0, 0.05), rgba(212, 175, 55, 0.05));
  animation: float 15s infinite ease-in-out;
}

.bg-animation-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.bg-animation-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.bg-animation-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(100px, 100px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo h1 {
  font-size: 1.8rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

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

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--shadow-lg);
  animation: morphing 10s infinite;
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morphing 10s infinite 0.5s;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* About Section */
.about {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

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

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.about-image-decoration {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 150px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
}

.highlight-text h4 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.highlight-text p {
  font-size: 0.9rem;
  margin: 0;
}

/* Press Section */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.press-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 21, 21, 0.10);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(61, 21, 8, 0.08);
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.press-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(61, 21, 8, 0.14);
}

.press-logo h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-content h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.press-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.press-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .press-card {
    padding: 24px 20px;
  }

  .press-content h3 {
    font-size: 1.45rem;
  }

  .press-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Gallery Section */
.gallery {
  background-color: var(--light-color);
  position: relative;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--gray-dark);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.gallery-container {
  column-count: 3;
  column-gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  break-inside: avoid;
  margin-bottom: 30px;
  transform-origin: center;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  image-orientation: from-image;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(139, 0, 0, 0.9), rgba(139, 0, 0, 0.2), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.load-more-btn span {
  margin-right: 8px;
}

.load-more-btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 0;
  font-size: 1rem;
  color: var(--text-color);
  border: none;
  border-bottom: 1px solid var(--gray-dark);
  outline: none;
  background-color: transparent;
  transition: var(--transition);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus~label,
.form-group textarea:focus~label,
.form-group input:valid~label,
.form-group textarea:valid~label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.form-group input:focus~.focus-border,
.form-group textarea:focus~.focus-border {
  width: 100%;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Animation Classes */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-image.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger {
  opacity: 1;
}

.reveal-stagger .gallery-item {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFade 0.5s forwards;
}

.reveal-stagger.active .gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal-stagger.active .gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.reveal-stagger.active .gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal-stagger.active .gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.reveal-stagger.active .gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.reveal-stagger.active .gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes staggerFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 14px;
  }

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

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .gallery-container {
    column-count: 2;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

}

@media screen and (max-width: 576px) {
  .section-subtitle {
    padding: 0;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
    /* Shorter lines on small screens */
  }

  .section-subtitle::before {
    left: -30px;
  }

  .section-subtitle::after {
    right: -30px;
  }

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

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .about-highlights {
    flex-direction: column;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* today code updtae */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.section-badge {
  display: inline-block;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.profile-section {
  position: relative;
}

.profile-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/5;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-decoration-1 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border-radius: 50%;
  opacity: 0.2;
}

.profile-decoration-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  opacity: 0.2;
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 32px;
  background: #fffdf9;
  border: 1px solid #eadfce;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(58, 24, 14, 0.08);
}

.bio-text {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #3f4f67;
  margin-bottom: 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.achievement-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-icon i {
  font-size: 20px;
  color: #ea580c;
}

.achievement-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.achievement-label {
  font-size: 0.9rem;
  color: #64748b;
}

.events-section {
  margin-bottom: 60px;
}

.events-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #1a202c;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.event-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a202c;
}

.event-badge {
  background: linear-gradient(135deg, #fed7aa, #fecaca);
  color: #ea580c;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #fed7aa;
}

.event-content {
  color: #4a5568;
  line-height: 1.7;
}

.philanthropy-section {
  background: linear-gradient(135deg, #fef3e2, #fce7f3);
  border: 2px solid #fed7aa;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
}

.philanthropy-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.philanthropy-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.philanthropy-icon i {
  color: white;
  font-size: 20px;
}

.philanthropy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
}

.philanthropy-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 25px;
}

.cause-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cause-tag {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #64748b;
}

.recognition-section {
  text-align: center;
}

.recognition-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.recognition-badge i {
  color: #ea580c;
  margin-right: 10px;
}

.recognition-text {
  color: #ea580c;
  font-weight: 500;
}

.recognition-description {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .achievement-card {
    padding: 20px 15px;
  }

  .event-card {
    padding: 25px;
  }

  .philanthropy-section {
    padding: 30px 25px;
  }

  .philanthropy-header {
    flex-direction: column;
    text-align: center;
  }

  .philanthropy-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }

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

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

:root {
  --primary-color: #7c1515;
  --primary-dark: #3b0808;
  --secondary-color: #d8a93b;
}

body {
  background:
    radial-gradient(circle at top left, rgba(216, 169, 59, .18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(124, 21, 21, .12), transparent 35%),
    #fff8ed;
}

header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  border-radius: 999px;
  background: rgba(255, 250, 242, .82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(124, 21, 21, .12);
  box-shadow: 0 18px 50px rgba(61, 21, 8, .12);
}

.logo h1 {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.nav-link {
  border-radius: 999px;
  padding: 10px 16px;
  color: #4c352d;
  font-weight: 600;
}

.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary-color);
  color: #fff;
}

.hero {
  min-height: 100vh;
  padding: 150px 6vw 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 100px 4vw 50px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 244, 225, .75));
  border: 1px solid rgba(124, 21, 21, .1);
  box-shadow: 0 30px 80px rgba(63, 21, 7, .14);
  z-index: -1;
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(124, 21, 21, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  color: var(--primary-color);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: .9;
}

.gradient-text {
  background: linear-gradient(110deg, #4b0808, #9b1b1b 44%, #d8a93b 78%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  border-radius: 999px;
  padding: 14px 25px;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255, 255, 255, .75);
  color: var(--primary-color);
  border: 1px solid rgba(124, 21, 21, .18);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--light-color);
  border-color: transparent;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights span {
  display: inline-flex;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 25px rgba(61, 21, 8, .08);
  color: #6b554b;
}

.hero-highlights strong {
  color: var(--primary-color);
}

.hero-image img {
  width: min(460px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  border: 10px solid rgba(255, 255, 255, .75);
  box-shadow: 0 30px 80px rgba(63, 21, 7, .24);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--primary-dark);
}

.bio-content,
.achievement-card,
.event-card,
.contact-info,
.contact-form {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(124, 21, 21, .10);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(61, 21, 8, .08);
}

.achievement-card:hover,
.event-card:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(61, 21, 8, .14);
}

.gallery-filter {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 20px;
}

.filter-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(124, 21, 21, .14);
  background: rgba(255, 255, 255, .78);
  color: #604943;
  border-radius: 999px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.gallery-item {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}

.gallery-image img {
  transition: transform .7s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(124, 21, 21, .16);
  border-radius: 18px;
  background: rgba(255, 250, 242, .82);
}

footer {
  background: #260707;
  color: #fff;
  border-radius: 34px 34px 0 0;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-actions .btn,
  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }
}

/* Contact section refinement */
.contact-content {
  align-items: flex-start;
  gap: 30px;
}

.contact-info,
.contact-form {
  background: #fffdf9;
  border: 1px solid #eadfce;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(58, 24, 14, 0.08);
  padding: 28px 24px;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 14px;
}

.info-item span {
  color: #3f4f67;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 24px 14px 10px;
  border: 1px solid #e5d9c8;
  border-radius: 14px;
  background: #fff;
}

.contact-form .form-group label {
  top: 8px;
  left: 14px;
  font-size: 0.78rem;
  color: #8a6f64;
}

.contact-form .form-group input:focus~label,
.contact-form .form-group textarea:focus~label,
.contact-form .form-group input:valid~label,
.contact-form .form-group textarea:valid~label {
  top: 8px;
  font-size: 0.78rem;
  color: #8a6f64;
}

.contact-form .btn {
  min-width: 170px;
  align-self: flex-start;
}

@media (max-width: 768px) {

  .contact-info,
  .contact-form {
    padding: 22px 18px;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/* Responsive fixes */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text p {
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .about-main-grid {
    gap: 32px;
  }

  .profile-section {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .bio-content {
    padding: 24px 22px;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }

  header .container {
    padding: 0.75rem 1rem;
    min-height: auto;
  }

  .logo h1 {
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    line-height: 1.2;
  }

  .nav-links {
    top: 78px;
    left: -100%;
    width: calc(100% - 20px);
    margin: 0 10px;
    height: calc(100dvh - 88px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    left: 0;
  }

  .about-section,
  .gallery.section-padding,
  .contact.section-padding {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    line-height: 1.15;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 8px;
  }

  .hero {
    padding: 118px 16px 64px;
    min-height: auto;
  }

  .hero::before {
    inset: 88px 12px 24px;
    border-radius: 24px;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-text h2 {
    font-size: 1.15rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-align: center;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    border-width: 6px;
    border-radius: 24px;
  }

  .hero-image-decoration {
    display: none;
  }

  .bio-content {
    padding: 20px 16px;
  }

  .bio-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .achievement-card {
    padding: 18px 12px;
  }

  .achievement-number {
    font-size: 1.6rem;
  }

  .events-title {
    font-size: 1.75rem;
    margin: 36px 0 28px;
  }

  .event-card {
    padding: 22px 18px;
  }

  .event-content {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .philanthropy-section {
    padding: 24px 18px;
  }

  .recognition-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 14px 16px;
  }

  .recognition-text {
    line-height: 1.5;
  }

  .gallery-filter {
    margin-left: -4px;
    margin-right: -4px;
    padding: 0 4px 16px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .gallery-container {
    column-count: 1;
    column-gap: 16px;
  }

  .gallery-item {
    margin-bottom: 16px;
  }

  .contact-content {
    gap: 20px;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .info-item {
    align-items: flex-start;
  }

  .info-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.45;
  }

  .contact-form .form-group textarea {
    min-height: 120px;
  }

  footer {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
    width: 100%;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .achievement-label {
    font-size: 0.82rem;
  }

  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cause-tags {
    gap: 8px;
  }

  .cause-tag {
    font-size: 0.82rem;
    padding: 7px 12px;
  }
}

/* ===== Mobile authoritative fixes ===== */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  body {
    overflow-x: hidden;
    width: 100%;
  }

  header {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  header .container {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1rem;
  }

  nav {
    display: flex;
    align-items: center;
  }

  .logo h1 {
    font-size: 1.05rem;
    background: none;
    -webkit-text-fill-color: var(--primary-dark);
    color: var(--primary-dark);
  }

  .hamburger {
    display: block;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    height: calc(100dvh - 58px);
    padding: 1.5rem 1rem 2rem;
    background: rgba(255, 250, 242, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-radius: 0;
    box-shadow: none;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    display: none;
  }

  .section-subtitle {
    padding: 0 12px;
    max-width: 100%;
    line-height: 1.6;
  }

  .section-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

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

  .hero {
    height: auto;
    min-height: auto;
    padding: 84px 16px 48px;
    display: block;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
    width: 100%;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
  }

  .hero-text h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    line-height: 1.1;
    word-break: break-word;
  }

  .gradient-text {
    -webkit-text-fill-color: transparent;
  }

  .hero-text h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0 4px;
  }

  .eyebrow {
    white-space: normal;
    line-height: 1.45;
    font-size: 0.65rem;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    border-width: 5px;
    border-radius: 20px;
  }

  .hero-image-decoration,
  .scroll-indicator {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin: 20px 0 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }

  .about-section {
    padding: 64px 0;
    overflow: hidden;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .profile-section {
    max-width: 100%;
    margin: 0;
  }

  .profile-decoration-1,
  .profile-decoration-2 {
    display: none;
  }

  .bio-content {
    padding: 18px 16px;
  }

  .bio-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .achievements-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .achievement-card {
    padding: 16px 10px;
  }

  .achievement-number {
    font-size: 1.45rem;
  }

  .achievement-label {
    font-size: 0.78rem;
  }

  .events-section {
    margin-top: 32px;
  }

  .events-title {
    font-size: 1.5rem;
    margin: 28px 0 20px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-card {
    padding: 18px 16px;
  }

  .event-content {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .philanthropy-section {
    padding: 20px 16px;
    margin-bottom: 32px;
  }

  .philanthropy-title {
    font-size: 1.35rem;
  }

  .philanthropy-content {
    font-size: 0.95rem;
  }

  .recognition-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 14px;
  }

  .recognition-text {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .gallery.section-padding,
  .contact.section-padding {
    padding: 64px 0;
  }

  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -4px 16px;
    padding: 0 4px 12px;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    height: 240px;
  }

  .contact-content {
    flex-direction: column;
    gap: 16px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    min-width: 0;
    flex: none;
    padding: 20px 16px;
  }

  .contact-info h3 {
    font-size: 1.35rem;
  }

  .info-item {
    align-items: flex-start;
    gap: 10px;
  }

  .info-item i {
    flex-shrink: 0;
  }

  .info-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .contact-form .btn {
    width: 100%;
    align-self: stretch;
  }

  .contact-form .form-group textarea {
    min-height: 110px;
  }

  footer {
    border-radius: 0;
    margin-top: 0;
    padding: 24px 0;
  }

  .bg-animation-shape:nth-child(1) {
    width: 180px;
    height: 180px;
  }

  .bg-animation-shape:nth-child(2) {
    width: 140px;
    height: 140px;
  }

  .bg-animation-shape:nth-child(3) {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 0.92rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .achievement-icon {
    width: 42px;
    height: 42px;
  }

  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cause-tag {
    font-size: 0.78rem;
  }
}

body.menu-open {
  overflow: hidden;
}

.section-header {
  padding-top: 40px;
}
/* UI polish overrides (disabled - reverted to client baseline)
:root {
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --stroke-soft: rgba(124, 21, 21, 0.12);
  --text-strong: #251412;
}

body {
  color: #3e2a26;
  letter-spacing: 0.01em;
}

p {
  color: #5b4640;
}

.section-padding,
.about-section,
.gallery,
.contact {
  padding: 88px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-subtitle {
  max-width: 68ch;
  line-height: 1.8;
}

header .container {
  min-height: 72px;
}

.hero {
  padding-bottom: 110px;
}

.hero-text p {
  max-width: 52ch;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(58, 14, 14, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-highlights span,
.achievement-card,
.event-card,
.contact-info,
.contact-form,
.philanthropy-section,
.gallery-item {
  backdrop-filter: blur(8px);
}

.achievement-card,
.event-card,
.contact-info,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--stroke-soft);
}

.bio-content {
  padding: 28px;
}

.events-grid {
  align-items: stretch;
}

.event-card {
  height: 100%;
}

.event-content {
  font-size: 1rem;
}

.gallery-container {
  gap: 24px;
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(48, 6, 6, 0.9), rgba(48, 6, 6, 0.3), transparent);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--stroke-soft);
}

.form-group label {
  left: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--surface-strong);
  border-color: rgba(124, 21, 21, 0.3);
}

.focus-border {
  display: none;
}

.social-icon:hover {
  transform: translateY(-3px);
}

footer {
  margin-top: 26px;
}

@media (max-width: 992px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-padding,
  .about-section,
  .gallery,
  .contact {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero::before {
    inset: 90px 10px 30px;
    border-radius: 28px;
  }

  .bio-content {
    padding: 20px;
  }

  .event-card,
  .philanthropy-section,
  .contact-info,
  .contact-form {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Luxury pass - visual refinement
:root {
  --wine-900: #3a0909;
  --wine-700: #6d1212;
  --gold-500: #c99a33;
  --gold-300: #f0d49a;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.08) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.section-title {
  letter-spacing: -0.015em;
}

.section-badge,
.eyebrow {
  box-shadow: inset 0 0 0 1px rgba(201, 154, 51, 0.18), 0 8px 20px rgba(58, 9, 9, 0.08);
}

header {
  box-shadow: 0 16px 48px rgba(43, 11, 11, 0.14);
}

.logo h1 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav-link {
  position: relative;
}

.nav-link.active {
  box-shadow: 0 8px 20px rgba(124, 21, 21, 0.25);
}

.hero-text h2 {
  color: #715650;
  font-weight: 500;
}

.hero-highlights span {
  border: 1px solid rgba(201, 154, 51, 0.2);
}

.hero-highlights strong {
  font-variant-numeric: tabular-nums;
}

.btn {
  background: linear-gradient(125deg, var(--wine-700), #9d2323 52%, #b98318 100%);
}

.btn::before {
  background: linear-gradient(125deg, var(--wine-900), #5f1010 55%, #8b6110 100%);
}

.btn-secondary {
  color: var(--wine-700);
  border-color: rgba(109, 18, 18, 0.24);
}

.btn-secondary:hover {
  background: linear-gradient(130deg, #ffffff, #fff6e8);
  color: var(--wine-900);
}

.profile-image,
.hero-image img {
  position: relative;
}

.profile-image::after,
.hero-image img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.08), transparent 38%);
  pointer-events: none;
}

.achievement-number {
  color: var(--wine-900);
}

.achievement-label {
  color: #6f5750;
}

.event-badge {
  background: linear-gradient(135deg, #fff3db, #f9deab);
  border-color: rgba(201, 154, 51, 0.35);
  color: #8a5d00;
}

.event-card {
  border-top: 3px solid rgba(201, 154, 51, 0.45);
}

.gallery-item {
  border: 1px solid rgba(201, 154, 51, 0.14);
}

.gallery-info h3 {
  color: #fff6df;
}

.contact-info h3 {
  color: var(--wine-700);
}

.info-item i,
.social-icon {
  background: linear-gradient(140deg, #7c1515, #b8701c);
}

.form-group input,
.form-group textarea {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a08379;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 4px rgba(201, 154, 51, 0.13);
}

footer {
  background: radial-gradient(circle at 20% 0%, #3f0b0b, #220505 62%);
  border-top: 1px solid rgba(240, 212, 154, 0.14);
}

.footer-logo h2 {
  color: var(--gold-300);
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 0.92rem;
    letter-spacing: 0.03em;
  }

  .hero-text h1 {
    line-height: 0.95;
  }

  .event-header {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* Bold section theming
.hero {
  background: radial-gradient(circle at top left, #fff6de 0, #ffe9c2 40%, #fbe0d9 80%, #f6d5d5 100%);
}

.about-section {
  background: radial-gradient(circle at top left, rgba(38, 5, 5, 0.96), #160304);
  color: #f9efe9;
}

.about-section .section-title,
.about-section .section-subtitle,
.about-section .section-badge {
  color: #fcead0;
}

.about-section .section-badge {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(252, 234, 208, 0.5);
}

.about-section .bio-text {
  color: #f9e2d4;
}

.bio-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(249, 226, 212, 0.05));
}

.achievements-section {
  margin-top: 40px;
}

.achievements-grid .achievement-card {
  background: linear-gradient(145deg, #2b0707, #3e0d0d);
}

.achievements-grid .achievement-number {
  color: #ffe6a8;
}

.achievements-grid .achievement-label {
  color: #f2cdb1;
}

.events-section {
  margin-top: 64px;
}

.events-title {
  color: #ffe6b7;
}

.events-section .event-card {
  background: radial-gradient(circle at top left, #2a0606, #120203);
}

.events-section .event-content {
  color: #f4d9c4;
}

.philanthropy-section {
  background: radial-gradient(circle at top left, #3a0c1b, #1a050a);
  border-color: rgba(255, 232, 210, 0.45);
}

.philanthropy-title {
  color: #ffe6b7;
}

.philanthropy-content {
  color: #f7d7c8;
}

.cause-tag {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 230, 183, 0.4);
  color: #ffe6d0;
}

.recognition-section {
  margin-top: 40px;
}

.recognition-description {
  color: #f7d7c8;
}

.gallery {
  background: radial-gradient(circle at top, #160304, #050102 55%, #000000 100%);
}

.gallery .section-title,
.gallery .section-subtitle {
  color: #fef2dd;
}

.gallery-filter {
  padding-top: 10px;
}

.gallery-item {
  background: rgba(0, 0, 0, 0.85);
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.35), transparent);
}

.contact {
  background: radial-gradient(circle at top, #fff7eb 0, #fbe5d1 40%, #fae1e0 80%, #f8ddef 100%);
}

.contact .section-title,
.contact .section-subtitle {
  color: #3f0b0b;
}

.contact-info,
.contact-form {
  background: rgba(255, 255, 255, 0.9);
}

.contact-info p,
.contact-info span {
  color: #5c4742;
}

@media (max-width: 768px) {
  .about-section {
    padding-top: 96px;
  }

  .gallery {
    padding-top: 80px;
  }
}
*/