:root {
  --bg-color: #0b0d10;
  --text-color: #f1f1f1;
  --accent-color: #fca311;
  --accent-hover: #e59400;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glassmorphism components */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}
.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-color);
}

/* Page Setup */
main {
  margin-top: 80px; 
  min-height: calc(100vh - 160px);
}

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

/* Hero Section */
.hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(252, 163, 17, 0.15) 0%, rgba(11, 13, 16, 1) 70%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: var(--accent-color);
  color: #0b0d10;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* News Section */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.news-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.news-card p {
  color: #bbb;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.news-card .btn {
  align-self: flex-start;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

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

.gallery-item:hover {
  transform: translateY(-5px);
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  color: white;
  text-align: center;
  transition: padding 0.3s ease;
}

.gallery-item-title {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* Contact Page specific */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  padding: 3rem;
  text-align: center;
}

.contact-card h2 {
  color: var(--accent-color);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.contact-person {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.contact-person:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-person h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-person p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-person a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}
.contact-person a:hover {
  text-decoration: underline;
}

.contact-address {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.contact-address h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-address p {
  color: #ccc;
  margin-bottom: 0.3rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.4);
  color: #888;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lb-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
  border-radius: 8px;
  animation: lbZoom 0.3s ease;
}

@keyframes lbZoom {
  from {transform:scale(0.9)} 
  to {transform:scale(1)}
}

#lb-caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
}
.lb-close {
  top: 15px;
  right: 35px;
}
.lb-prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.lb-next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  color: var(--accent-color);
}

#lb-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  padding: 10px 0;
}

#lb-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 20px 8px;
}

#lb-caption {
  color: #ccc;
  font-size: 0.95rem;
}

.lb-btn {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 6px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.lb-btn:hover { opacity: 0.85; }

#lb-filmstrip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) #111;
}

.lb-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb-active {
  opacity: 1;
  border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  header { padding: 0.5rem 0;}
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 { font-size: 2.2rem; }
  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  main { margin-top: 100px; }
  .contact-card { padding: 2rem; }
}
