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

:root {
  /* Colors */
  --primary-green: #1F3327;
  --secondary-green: #2A4A35;
  --accent-gold: #D4AF37;
  --gold-hover: #B8941F;
  --text-light: #F5F5F5;
  --text-dark: #2C3E2D;
  --overlay-dark: rgba(31, 51, 39, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  
  /* Typography */
  --font-primary: 'Alegreya', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 4rem 2rem;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--text-light);
  background: var(--primary-green);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Global link styles */
a {
  text-decoration: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(31, 51, 39, 0.95);
  backdrop-filter: blur(30px);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-brand {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}


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

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--accent-gold);
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-light);
  margin-top: 1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-hover));
  color: var(--primary-green);
  border: none;
  margin: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.hero-cta:hover .cta-arrow {
  transform: translateX(5px);
}

/* Trailer Section */
.trailer {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, #0F1F15 0%, var(--primary-green) 100%);
}

.trailer-content {
  width: 100%;
  margin: 0 auto;
}

.trailer .container {
  padding: none;
  max-width: none;
}

.video-container {
  width: 60vw;
  min-width: 90%;
  height: 65vh;
  margin: 0 auto 2rem auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.trailer-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.trailer-description p {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 400;
}

/* Features Section */
.features {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: sepia(1) hue-rotate(45deg) saturate(2) brightness(1.2);
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-light);
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.5;
}

/* Download Section */
.download {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-green) 0%, #0F1F15 100%);
  position: relative;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.download-preview {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.download-cover-image {
  height: 40vh;
  width: auto;
  max-width: 80vw;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  border: 3px solid var(--accent-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.download-cover-image:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.6);
  border-color: var(--gold-hover);
}

.download-cover-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-gold), var(--gold-hover), var(--accent-gold));
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.download-cover-image:hover::before {
  opacity: 0.3;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.02); opacity: 0.5; }
}

.download-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.download-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.download-btn {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-hover));
  color: var(--primary-green);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  margin-bottom: 2rem;
}

.download-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.download-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

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

.download-note {
  color: var(--text-light);
  opacity: 0.7;
  font-style: italic;
  font-size: 0.9rem;
}

/* Demo Section */
.demo {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
}

.demo-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.demo-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.demo-preview {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.demo-preview-image {
  width: auto;
  height: 50vh;
  max-width: 80vw;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--glass-border);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.demo-preview-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.demo-btn {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-hover));
  color: var(--primary-green);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.demo-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.demo-arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.demo-btn:hover .demo-arrow {
  transform: translateX(5px);
}

/* Contact Section */
.contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  background: linear-gradient(135deg, #0F1F15 0%, var(--primary-green) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.developer-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.developer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.developer-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.developer-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: hue-rotate(90deg) saturate(1.2) brightness(1.1) drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.developer-logo-img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: hue-rotate(90deg) saturate(1.2) brightness(1.1) drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
}

.developer-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.developer-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.developer-description {
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.developer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.developer-link {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-hover));
  color: var(--primary-green);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.developer-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.link-icon {
  width: 18px;
  height: 18px;
}

.contact-form-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  width: 100%;
  transition: var(--transition-smooth);
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition-smooth);
  font-family: var(--font-secondary);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-hover));
  color: var(--primary-green);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.submit-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.form-submit:hover .submit-icon {
  transform: translateX(3px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.footer p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .nav-content {
    padding: 0.75rem 0;
  }
  
  .nav-logo-img {
    width: 35px;
    height: 35px;
  }
  
  .nav-brand {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    display: none; /* Hide navigation menu on mobile */
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  
  .video-container {
    border-radius: 15px;
    margin-bottom: 1.5rem;
  }
  
  .video-container iframe {
    border-radius: 15px;
  }
  
  .trailer-description p {
    font-size: 1.1rem;
  }

  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .download-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .demo-btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
  }
  
  .footer-section {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo-img {
    width: 40px;
    height: 40px;
  }
  
  .footer-brand {
    font-size: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .developer-card,
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .developer-logo-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
  
  .nav-brand {
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .trailer-description p {
    font-size: 1rem;
  }
  
  .download-preview {
    margin: 2rem 0;
  }
  
  .demo-preview {
    margin: 2rem 0;
  }
  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
  }
  
  .download-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .demo-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .developer-card,
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  .developer-title {
    font-size: 1.5rem;
  }
  
  .developer-logo-img {
    width: 80px;
    height: 80px;
  }
}

/* Performance optimizations */
.hero-video {
  will-change: transform;
}

.feature-card,
.hero-cta,
.download-btn,
.demo-btn {
  will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-logo {
    animation: none;
  }
}

/* Focus styles for accessibility */
.nav-link:focus,
.hero-cta:focus,
.download-btn:focus,
.demo-btn:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Contact section subtitle */
.contact-section-subtitle {
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  text-align: center;
}

/* Make contact boxes thinner */
.contact-grid {
  grid-template-columns: 340px 340px;
  gap: 3rem;
  max-width: 800px;
}
.developer-card, .contact-form {
  padding: 2.5rem 1.5rem;
  min-width: 0;
  width: 100%;
}

/* Make developer image larger */
.developer-logo-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(31, 51, 39, 0.18);
  filter: none;
  transition: filter 0.3s, transform 0.3s;
}
.developer-logo-img:hover {
  filter: sepia(1) hue-rotate(10deg) saturate(4) brightness(1.1);
  transform: scale(1.04);
}

/* Make contact boxes wider and same size */
.contact-grid {
  grid-template-columns: 400px 400px;
  gap: 3rem;
  max-width: 1200px;
}
.developer-card, .contact-form {
  padding: 2.5rem 2rem;
  min-width: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Remove label styles for form fields */
.form-label {
  display: none;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 2rem;
  }
  .developer-logo-img {
    width: 150px;
    height: 150px;
  }
}

/* Make contact boxes slightly bigger and align buttons */
.contact-grid {
  grid-template-columns: 490px 490px;
  gap: 20px;
  max-width: 1000px;
}
.developer-card, .contact-form {
  padding: 2.5rem 2rem;
  min-width: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Footer */
.footer {
  background: var(--primary-green);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  z-index: -1;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.footer-description {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  opacity: 1;
  transform: translateX(5px);
}

.footer-links li:not(:has(a)) {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-subtitle {
  font-style: italic;
  opacity: 0.6 !important;
  font-size: 0.85rem !important;
}

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
  }
  .developer-logo-img {
    width: 150px;
    height: 150px;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
  }
  .footer-section {
    align-items: center;
    text-align: center;
  }
}

/* Privacy Policy Box Styles */
.privacy-box {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(31,51,39,0.13);
  padding: 2.5rem 2rem;
  margin: 3rem auto 2rem auto;
  max-width: 700px;
}
.privacy-box ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .privacy-box {
    padding: 1.2rem 0.5rem;
  }
}

/* Press Kit custom styles */

/* Hero section for press kit */
.press-kit-hero {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  padding: 0.5rem 0.2rem !important;
  margin-top: 70px;
  text-align: center;
}
.press-kit-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 0.1rem;
}
.press-kit-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Navigation for press kit */
.press-kit-nav {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
}
.press-kit-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.press-kit-nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.press-kit-nav a:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* Section and content blocks */
.press-section {
  padding: 1.7rem 0.3rem 1.7rem 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.press-section:last-child {
  border-bottom: none;
}
.press-section h2 {
  font-family: var(--font-primary);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.press-section h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0.7rem 0 0.3rem;
}
.press-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 0;
}
ul {
  padding-left: 2em;
}

/* Fact sheet boxes */
.fact-sheet {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin: 1.2rem 0;
}
.fact-sheet h4 {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.fact-sheet p, .fact-sheet ul, .fact-sheet li {
  margin-bottom: 0.3rem;
  color: var(--text-light);
  font-size: 0.98rem;
}

/* Media and resources gallery */
.media-gallery, .recursos-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.media-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.media-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.media-item-content {
  padding: 1.5rem;
}
.media-item h4 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}
.media-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Download link style (if used) */
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.download-link:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}
.download-link svg {
  width: 16px;
  height: 16px;
}

/* General link style for press kit */
a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .press-kit-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .media-gallery {
    grid-template-columns: 1fr;
  }
  .press-section {
    padding: 2rem 1rem;
  }
}