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

:root {
  --primary: #d4a574;
  --primary-dark: #a67c52;
  --background: #000000;
  --card: #1a1a1a;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --border: #333333;
}

/* Minimal custom CSS for animations that can't be replicated with Tailwind utilities */

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

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-float-reverse {
  animation: float-reverse 8s ease-in-out infinite reverse;
}

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

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
  background: linear-gradient(to bottom, #000000, #0a0a0a);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blur-1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 165, 116, 0.05);
  top: 80px;
  right: 0;
  animation: float 6s ease-in-out infinite;
}

.blur-2 {
  width: 400px;
  height: 400px;
  background: rgba(166, 124, 82, 0.03);
  bottom: -100px;
  left: 25%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.badge-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.hero-badge span {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(212, 165, 116, 0.8);
  text-transform: uppercase;
}

.hero-title h1 {
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.hero-title h2 {
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  color: var(--primary);
  margin-top: 10px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
}

.hero-description {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(212, 165, 116, 0.5);
  color: var(--primary);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(212, 165, 116, 0.05);
}

.hero-image {
  position: relative;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 8px;
  background: linear-gradient(to bottom-right, #1a1a1a, #000000);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  border-radius: 8px;
  pointer-events: none;
}

.frame-decoration {
  position: absolute;
  border: 2px solid rgba(212, 165, 116, 0.4);
  width: 30px;
  height: 30px;
}

.frame-top-left {
  top: -30px;
  left: -30px;
  border-right: none;
  border-bottom: none;
}

.frame-bottom-right {
  bottom: -30px;
  right: -30px;
  border-left: none;
  border-top: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-indicator span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Section Styles */
section {
  padding: 80px 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 60px;
}

/* About Section */
.about {
  background: rgba(212, 165, 116, 0.03);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.roles-list h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.role-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.role-item:hover {
  border-color: var(--primary);
  transform: scale(1.02);
}

.role-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.role-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.role-company {
  font-size: 14px;
  color: var(--text-muted);
}

/* Achievements Section */
.achievements {
  background: var(--background);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--background);
  border-radius: 50%;
}

.timeline-content {
  background: var(--card);
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--primary);
}

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

.timeline-header h3 {
  font-size: 20px;
  color: var(--primary);
}

.timeline-year {
  font-size: 12px;
  background: rgba(212, 165, 116, 0.1);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
}

.timeline-org {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 14px;
}

/* Initiatives Section */
.initiatives {
  background: rgba(212, 165, 116, 0.03);
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.initiative-card {
  background: var(--card);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.initiative-card:hover {
  border-color: var(--primary);
  background: rgba(212, 165, 116, 0.05);
}

.initiative-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.initiative-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.initiative-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.initiative-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.initiative-line {
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.initiative-card:hover .initiative-line {
  width: 100%;
}

.core-values {
  background: var(--card);
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.core-values h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

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

.value-item {
  text-align: center;
}

.value-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin: 0 auto 20px;
}

.value-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Contact Section */
.contact {
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(212, 165, 116, 0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-value {
  color: var(--text-muted);
  font-size: 14px;
}

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

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.social-link svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.social-link:hover svg {
  color: var(--background);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(212, 165, 116, 0.05);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title h1,
  .hero-title h2 {
    font-size: 48px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 11px;
  }

  section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero {
    padding: 100px 16px 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }

  .gallery-item {
    height: 200px;
  }

  .contact-form {
    gap: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 16px;
  }

  #mobileMenu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 40;
  }

  .role-item,
  .initiative-card,
  .timeline-content {
    padding: 16px;
    margin-bottom: 12px;
  }

  .contact-item {
    padding: 16px;
    gap: 16px;
  }

  .contact-icon,
  .initiative-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg,
  .initiative-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title h1,
  .hero-title h2 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .timeline {
    padding-left: 16px;
  }

  .timeline-dot {
    left: -14px;
    width: 14px;
    height: 14px;
  }

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

  .gallery-item {
    height: 250px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 10px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .about-text h3,
  .roles-list h3,
  .contact-info h3 {
    font-size: 20px;
  }

  .role-title,
  .contact-label {
    font-size: 13px;
  }

  .role-company,
  .contact-value {
    font-size: 12px;
  }

  section {
    padding: 40px 12px;
  }

  .nav-container {
    padding: 0 12px;
  }

  .hero {
    padding: 80px 12px 30px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .timeline-header {
    flex-direction: column;
    gap: 8px;
  }

  .timeline-header h3 {
    font-size: 16px;
  }

  .timeline-year {
    align-self: flex-start;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn,
  .social-link,
  .role-item,
  .initiative-card,
  .gallery-item {
    min-height: 44px;
    min-width: 44px;
  }

  .btn {
    padding: 14px 24px;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
button {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
}

input[type="text"],
input[type="email"],
textarea {
  font-size: 16px;
}

/* Gallery Section Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  auto-rows: max-content;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--primary);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

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