:root {
  --zakho-red: #d72027;
  --zakho-black: #111;
  --zakho-dark: #000;
  --zakho-white: #fff;
  --zakho-gray: #f7f7f7;
  --zakho-dark-gray: #333;
  --navbar-height: 64px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--zakho-gray);
  color: var(--zakho-dark);
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* Typography Scale */
h1 {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3 {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

/* Hero Section Animations */
.hero {
  animation: fadeInUp 0.8s ease-out;
}

.hero img {
  animation: fadeInScale 1s ease-out 0.2s both;
}

.hero h1 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero p {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero a {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

a {
  color: var(--zakho-red);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--zakho-black);
}

header, nav {
  width: 100%;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--zakho-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--zakho-white);
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
}

.navbar-links a {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  color: var(--zakho-white);
}

.navbar-links a:hover, .navbar-links a.active {
  background: var(--zakho-red);
  color: var(--zakho-white);
}

main {
  padding: 2rem 1rem 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

footer {
  background: var(--zakho-dark);
  color: var(--zakho-white);
  text-align: center;
  padding: 1.5rem 1rem 1rem 1rem;
  margin-top: auto;
}

.footer-social {
  margin-bottom: 0.5rem;
}

.footer-social a {
  color: var(--zakho-white);
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--zakho-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1100;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.hamburger span {
  display: block;
  width: 35px;
  height: 5px;
  margin: 6px 0;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1200;
}

/* Force white color with !important */
.hamburger span {
  background: white !important;
  color: white !important;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    height: auto;
    padding: 0.5rem 1rem;
    position: relative;
    align-items: center;
    justify-content: space-between;
  }
  
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px;
    border: 2px solid white;
    min-width: 50px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  /* Force visibility of spans */
  .hamburger span {
    background: white !important;
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Text-based hamburger fallback */
  .hamburger-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    font-weight: bold;
    z-index: 1300;
    pointer-events: none;
  }
  
  .hamburger:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
  }
  
  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--zakho-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 1000;
    min-width: 200px;
  }
  
  .navbar-links.open {
    display: flex;
  }
  
  .navbar-links a {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--zakho-black);
    color: var(--zakho-white);
    font-size: 1.1rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }
  
  .navbar-links a:hover {
    background-color: var(--zakho-red);
    color: var(--zakho-white);
  }
  
  .navbar-links a:last-child {
    border-bottom: none;
  }
  
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .navbar-logo img {
    height: 40px;
  }
  
  .navbar-links {
    gap: 0.75rem;
  }
  
  main {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .player-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .highlight-video {
    min-width: 0;
    width: 100% !important;
    height: 220px !important;
    aspect-ratio: unset;
  }
  
  /* Enhanced mobile typography */
  h1 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem 0;
  }
  
  h2 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem 0;
  }
  
  h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
  }
  
  /* Improved mobile spacing */
  main {
    padding: 1rem 0.75rem 2rem 0.75rem;
  }
  
  @media (max-width: 480px) {
    .highlights-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .player-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    h1 {
      font-size: 1.5rem;
      margin: 1.25rem 0 0.75rem 0;
    }
    
    h2 {
      font-size: 1.3rem;
      margin: 1rem 0 0.5rem 0;
    }
    
    h3 {
      font-size: 1.1rem;
      margin: 0.75rem 0 0.5rem 0;
    }
    
    main {
      padding: 0.75rem 0.5rem 1.5rem 0.5rem;
    }
  }
  
  @media (max-width: 360px) {
    h1 {
      font-size: 1.3rem;
      margin: 1rem 0 0.75rem 0;
    }
    
    h2 {
      font-size: 1.1rem;
      margin: 0.75rem 0 0.5rem 0;
    }
    
    h3 {
      font-size: 1rem;
      margin: 0.5rem 0 0.25rem 0;
    }
    
    main {
      padding: 0.5rem 0.25rem 1rem 0.25rem;
    }
  }
} 