/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
  }
  
  /* Custom properties for colors */
  :root {
    --primary-color: #9B59B6;
    --secondary-color: #4E342E;
    --accent-color: #f0e9ff;
    --text-color: #ffffff;
    --text-light: #cccccc;
    --overlay-bg: rgba(78, 52, 46, 0.93);
    --shadow-light: rgba(255, 255, 255, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
  }
  
  /* Enhanced Background with Dynamic Gradients */
  .bg-cover {
    position: relative;
    background: linear-gradient(135deg, 
    rgba(155, 89, 182, 0.8), 
    rgba(78, 52, 46, 0.9), 
    rgba(142, 68, 173, 0.7)
  ), 
  url('../background1.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  overflow: hidden;
  }
  
  .bg-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
    radial-gradient(circle at 20% 80%, rgba(155, 89, 182, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(142, 68, 173, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(78, 52, 46, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(155, 89, 182, 0.2) 0%, transparent 50%);
  z-index: 1;
  animation: backgroundShift 25s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05) rotate(-1deg);
  }
  75% {
    opacity: 1;
    transform: scale(1.03) rotate(0.5deg);
  }
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(78, 52, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
  }
  
  .navbar.scrolled {
    background: rgba(78, 52, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
  }
  
  .nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
  }
  
  .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);
  }
  
  /* Simplified Overlay - Ensuring All Elements Are Visible */
.overlay {
  position: relative;
  z-index: 2;
  background: 
    linear-gradient(135deg, 
      rgba(78, 52, 46, 0.95), 
      rgba(78, 52, 46, 0.92)
    );
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  max-width: 580px;
  width: 90%;
  text-align: center;
  color: var(--text-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 1rem auto;
  min-height: auto;
  overflow: visible;
}

  @keyframes overlayFadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
      );
    pointer-events: none;
  }
  
  .overlay img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    transition: var(--transition);
    display: block;
    animation: logoGlow 3s ease-in-out infinite;
  }
  
  .overlay img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
    animation: logoSpin 0.6s ease-in-out;
  }

  @keyframes logoGlow {
    0%, 100% {
      box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
      border-color: var(--primary-color);
    }
    50% {
      box-shadow: 0 4px 25px rgba(155, 89, 182, 0.6);
      border-color: var(--accent-color);
    }
  }

  @keyframes logoSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(360deg); }
  }

/* Simplified Logo - Fixed Overflow */
.construction-logo {
  width: 100px !important;
  height: 100px !important;
  display: block !important;
  position: relative;
  z-index: 10 !important;
  filter: drop-shadow(0 8px 20px rgba(155, 89, 182, 0.5));
  object-fit: cover;
  border-radius: 50%;
}

.construction-logo:hover {
    transform: scale(1.05);
  filter: drop-shadow(0 12px 30px rgba(155, 89, 182, 0.6));
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    border-color: var(--primary-color);
    filter: drop-shadow(0 8px 20px rgba(155, 89, 182, 0.4));
  }
  50% {
    box-shadow: 0 4px 25px rgba(155, 89, 182, 0.6);
    border-color: var(--accent-color);
    filter: drop-shadow(0 12px 30px rgba(155, 89, 182, 0.6));
  }
}

/* Simplified Construction Message */
.construction-message {
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.4) 0%, 
    rgba(155,89,182,0.2) 50%, 
    rgba(255,255,255,0.35) 100%);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 35px 10px rgba(155, 89, 182, 0.25);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 5;
  overflow: visible;
}

/* Simplified Welcome Text */
.welcome-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-color);
 text-shadow: 0 2px 15px rgba(155, 89, 182, 0.25), 0 1px 0 #0c0b0b;
  margin: 0;
  position: relative;
  z-index: 8;
  text-align: center;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 2px 12px rgba(155, 89, 182, 0.18), 0 1px 0 #fff;
  }
  50% {
    text-shadow: 0 4px 20px rgba(155, 89, 182, 0.3), 0 2px 0 #fff;
  }
}

/* Simplified Message Text */
.message-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
}

@keyframes textFade {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Coming Soon Container */
.coming-soon {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 6;
}

/* Simplified Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transform: translateX(-100%);
  animation: badgeShine 4s linear infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes badgeShine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@keyframes messageGlow {
  0%, 100% { 
    box-shadow: 0 0 40px 12px rgba(155, 89, 182, 0.2), 0 4px 16px rgba(0,0,0,0.1);
    transform: translateZ(0);
  }
  50% { 
    box-shadow: 0 0 60px 20px rgba(155, 89, 182, 0.3), 0 8px 24px rgba(0,0,0,0.15);
    transform: translateZ(0) scale(1.02);
  }
}

@keyframes messageShine {
  0% { left: -100%; right: 100%; }
  50% { left: 100%; right: -100%; }
  100% { left: 100%; right: -100%; }
}

/* Simplified Contact Info */
.contact-info-simple {
  /* background: linear-gradient(135deg, 
    rgba(78, 52, 46, 0.9) 0%, 
    rgba(78, 52, 46, 0.8) 100%); */
  /* border-radius: 20px; */
  /* backdrop-filter: blur(15px); */
  /* border: 2px solid rgba(255, 255, 255, 0.3); */
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); */
  padding: 1.5rem;
  position: relative;
  overflow: visible;
  z-index: 6;
}

.contact-info-simple::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(155, 89, 182, 0.1) 50%, 
    transparent 70%);
  animation: contactBorder 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes contactGlow {
  0%, 100% { 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  50% { 
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(155, 89, 182, 0.1);
  }
}

@keyframes contactBorder {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

/* Simplified Contact Items */
.contact-items .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 7;
  line-height: 1.4;
}



.contact-items .contact-item:hover {
  transform: translateX(5px);
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-items .contact-item i {
  font-size: 1.2rem;
  margin-right: 0.8rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 8;
  text-shadow: 0 2px 8px rgba(155, 89, 182, 0.4);
}

.contact-items .contact-item:hover i {
  transform: scale(1.2);
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Simplified Social Links */
.contact-info-simple .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
  z-index: 9;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
  z-index: 10;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.social-link:nth-child(1) { animation-delay: 0s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.4s; }

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.6);
  animation: socialSpin 0.6s ease-in-out;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1;
}

.social-link:hover::before {
  transform: translateX(100%);
}

@keyframes socialPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
  }
}

@keyframes socialSpin {
  0% { transform: translateY(-3px) scale(1.1) rotate(0deg); }
  100% { transform: translateY(-3px) scale(1.1) rotate(360deg); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Floating Elements */
.floating-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(155, 89, 182, 0.4);
  z-index: 1;
}

.floating-element:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  width: 8px;
  height: 8px;
}

.floating-element:nth-child(2) {
  top: 65%;
  right: 12%;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.floating-element:nth-child(3) {
  top: 35%;
  left: 85%;
  animation-delay: 4s;
  width: 7px;
  height: 7px;
}

.floating-element:nth-child(4) {
  top: 75%;
  left: 15%;
  animation-delay: 6s;
  width: 6px;
  height: 6px;
}

.floating-element:nth-child(5) {
  top: 25%;
  right: 25%;
  animation-delay: 8s;
  width: 9px;
  height: 9px;
}

.floating-element:nth-child(6) {
  top: 85%;
  right: 8%;
  animation-delay: 1s;
  width: 4px;
  height: 4px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
    opacity: 1;
  }
}

/* Simplified Footer */
.footer {
  position: relative;
  z-index: 2;
  /* backdrop-filter: blur(15px); */
  /* padding: 1rem 0; */
  /* background: linear-gradient(135deg, 
    rgba(78, 52, 46, 0.95), 
    rgba(78, 52, 46, 0.9)); */
  /* border-top: 2px solid rgba(255, 255, 255, 0.2); */
  /* box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.3); */
  /* margin-top: 2rem; */
}

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

.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
  .overlay h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 9;
    text-shadow: 0 2px 15px rgba(155, 89, 182, 0.3);
  }

  @keyframes titleGlow {
    0%, 100% {
      filter: brightness(1);
      transform: scale(1);
    }
    50% {
      filter: brightness(1.2);
      transform: scale(1.02);
    }
  }
  
  .overlay h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  @keyframes subtitleFloat {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.8;
    }
    50% {
      transform: translateY(-3px);
      opacity: 1;
    }
  }

  .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
  pointer-events: none;
}

.overlay::after {
  content: '';
  position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
  pointer-events: none;
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-element {
  position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
  border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
    left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
  animation-delay: 4s;
}

  .floating-element:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
  }

  .floating-element:nth-child(5) {
    bottom: 60%;
    left: 35%;
    animation-delay: 3s;
    width: 3px;
    height: 3px;
  }

  .floating-element:nth-child(6) {
    top: 70%;
    right: 40%;
    animation-delay: 5s;
    width: 5px;
    height: 5px;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0px) scale(1);
      opacity: 0.6;
  }
  50% {
      transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}
  
  .message-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    animation: textFade 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  @keyframes textGlow {
    0%, 100% {
      text-shadow: 0 0 5px rgba(155, 89, 182, 0.3);
    }
    50% {
      text-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
    }
  }

  @keyframes textFade {
    0%, 100% {
      opacity: 0.8;
    }
    50% {
      opacity: 1;
    }
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .coming-soon {
    margin-top: 1rem;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  /* News Section Styles */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .news-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .news-card:hover .news-image img {
    transform: scale(1.1);
  }
  
  .news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .news-content {
    padding: 1.5rem;
  }
  
  .news-content h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .news-date {
    color: var(--text-light);
    font-style: italic;
  }
  
  /* Global Error Display */
  .global-error {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
  }
  
  .error-content {
    background: var(--error-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  }
  
  .error-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .error-close:hover {
    opacity: 1;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Responsive improvements */
  @media (max-width: 768px) {
    .content-section {
      padding: 3rem 0;
    }
    
    .content-section h2 {
      font-size: 2rem;
    }
    
    .content-section .lead {
      font-size: 1.1rem;
    }
    
    .activities-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      gap: 0.75rem;
    }
    
    .contact-item {
      font-size: 1rem;
    }
    
    .content-section {
      padding: 2rem 0;
    }
    
    .content-section h2 {
      font-size: 1.8rem;
    }
    
    .feature-icon,
    .activity-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
    
    .social-link {
      width: 45px;
      height: 45px;
      font-size: 1.3rem;
    }
    
    .news-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-form {
      padding: 1.5rem;
    }
    
    .global-error {
      top: 10px;
      right: 10px;
      left: 10px;
      max-width: none;
    }
  }
  
  /* Disable animations for users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .floating-element,
    .particle,
    .overlay::after {
      animation: none;
    }
    
    @keyframes float {
      0%, 100% {
        transform: none;
        opacity: 0.6;
      }
    }
    
    @keyframes particleFloat {
      0%, 100% {
        transform: none;
        opacity: 0.3;
      }
    }
  }
  
  /* Particle effects */
  .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s ease-in-out infinite;
  }
  
  .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
  .particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
  .particle:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
  .particle:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 6s; }
  .particle:nth-child(5) { top: 50%; left: 5%; animation-delay: 8s; }
  .particle:nth-child(6) { top: 30%; right: 5%; animation-delay: 1s; }
  
  @keyframes particleFloat {
    0%, 100% {
      transform: translateY(0px) translateX(0px);
      opacity: 0.3;
    }
    25% {
      transform: translateY(-15px) translateX(10px);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-25px) translateX(-5px);
      opacity: 0.8;
    }
    75% {
      transform: translateY(-10px) translateX(-15px);
      opacity: 0.5;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    @keyframes particleFloat {
      0%, 100% {
        transform: none;
        opacity: 0.3;
      }
    }
  }

/* Responsive Design - Enhanced for Readability */
@media (max-width: 1024px) {
  .overlay {
    padding: 1.3rem 1rem;
    max-width: 550px;
    gap: 1rem;
    margin: 0.8rem auto;
  }
  
  .overlay h1 {
    font-size: 1.8rem;
    text-shadow: 0 2px 12px rgba(155, 89, 182, 0.3);
  }
  
  .overlay h2 {
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
  
  .construction-logo {
    width: 65px !important;
    height: 65px !important;
  }
  
  .construction-message {
    padding: 1.3rem 1rem;
  }
  
  .contact-info-simple {
    padding: 1.3rem 1rem;
  }
  
  .welcome-text {
    font-size: 1.1rem;
    text-shadow: 0 2px 12px rgba(155, 89, 182, 0.25), 0 1px 0 #fff;
  }
  
  .message-text {
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item {
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-info-simple h3 {
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(155, 89, 182, 0.3), 0 1px 0 #fff;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .overlay {
    padding: 1.2rem 0.8rem;
    max-width: 520px;
    width: 95%;
    gap: 0.8rem;
    margin: 0.5rem auto;
  }
  
  .overlay h1 {
    font-size: 1.6rem;
    text-shadow: 0 2px 10px rgba(155, 89, 182, 0.3);
  }
  
  .overlay h2 {
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .construction-logo {
    width: 60px !important;
    height: 60px !important;
  }
  
  .construction-message {
    padding: 1.2rem 0.8rem;
  }
  
  .contact-info-simple {
    padding: 1.2rem 0.8rem;
  }
  
  .welcome-text {
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(155, 89, 182, 0.25), 0 1px 0 #fff;
  }
  
  .message-text {
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item i {
    font-size: 1rem;
    margin-right: 0.6rem;
  }
  
  .contact-info-simple h3 {
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(155, 89, 182, 0.3), 0 1px 0 #fff;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.95rem;
  }
  
  .footer {
    padding: 0.8rem 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .copyright {
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 1rem 0.6rem;
    width: 98%;
    max-width: 480px;
    gap: 0.6rem;
    margin: 0.3rem auto;
  }
  
  .overlay h1 {
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
  }
  
  .overlay h2 {
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .construction-logo {
    width: 55px !important;
    height: 55px !important;
  }
  
  .construction-message {
    padding: 1rem 0.6rem;
  }
  
  .contact-info-simple {
    padding: 1rem 0.6rem;
  }
  
  .welcome-text {
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(155, 89, 182, 0.25), 0 1px 0 #fff;
  }
  
  .message-text {
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item i {
    font-size: 0.95rem;
    margin-right: 0.5rem;
  }
  
  .contact-info-simple h3 {
    font-size: 1rem;
    text-shadow: 0 2px 6px rgba(155, 89, 182, 0.3), 0 1px 0 #fff;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .copyright {
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 360px) {
  .overlay {
    padding: 0.8rem 0.5rem;
    width: 99%;
    max-width: 360px;
    gap: 0.5rem;
    margin: 0.2rem auto;
  }
  
  .overlay h1 {
    font-size: 1.2rem;
    text-shadow: 0 2px 6px rgba(155, 89, 182, 0.3);
  }
  
  .overlay h2 {
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .construction-logo {
    width: 50px !important;
    height: 50px !important;
  }
  
  .construction-message {
    padding: 0.8rem 0.5rem;
  }
  
  .contact-info-simple {
    padding: 0.8rem 0.5rem;
  }
  
  .welcome-text {
    font-size: 0.9rem;
    text-shadow: 0 2px 6px rgba(155, 89, 182, 0.25), 0 1px 0 #fff;
  }
  
  .message-text {
    font-size: 0.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item i {
    font-size: 0.9rem;
    margin-right: 0.4rem;
  }
  
  .contact-info-simple h3 {
    font-size: 0.95rem;
    text-shadow: 0 2px 6px rgba(155, 89, 182, 0.3), 0 1px 0 #fff;
  }
  
  .social-link {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  
  .copyright {
    font-size: 0.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
  .bg-cover {
    height: 100vh;
    overflow-y: auto;
  }
  
  .overlay {
    padding: 0.6rem;
    max-height: none;
    min-height: auto;
    justify-content: flex-start;
    padding-top: 1rem;
    margin: 0.5rem auto;
    gap: 0.4rem;
  }
  
  .construction-logo {
    width: 45px !important;
    height: 45px !important;
  }
  
  .overlay h1 {
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 2px 6px rgba(155, 89, 182, 0.3);
  }
  
  .overlay h2 {
    font-size: 0.75rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .construction-message {
    padding: 0.6rem;
  }
  
  .contact-info-simple {
    padding: 0.6rem;
  }
  
  .welcome-text {
    font-size: 0.85rem;
    text-shadow: 0 2px 6px rgba(155, 89, 182, 0.25), 0 1px 0 #fff;
  }
  
  .message-text {
    font-size: 0.7rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .contact-items .contact-item {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .footer {
    position: relative;
    margin-top: 0.5rem;
  }
  
  .copyright {
    font-size: 0.7rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .overlay img,
  .construction-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .overlay img:hover,
  .social-link:hover,
  .contact-items .contact-item:hover {
    transform: none;
  }
  
  .social-link:active,
  .contact-items .contact-item:active {
    transform: scale(0.95);
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Focus styles for accessibility */
.nav-link:focus,
.social-link:focus,
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --text-color: #000000;
    --text-light: #666666;
  }
}

@media (prefers-contrast: high) {
  :root {
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --text-color: #ffffff;
    --text-light: #dddddd;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-element,
      .particle {
    animation: none !important;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
  }
      
      @keyframes particleFloat {
    0%, 100% { transform: translateY(0px); }
  }
}

/* Contact Info Title */
.contact-info-simple h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  position: relative;
  z-index: 7;
  text-shadow: 0 2px 10px rgba(155, 89, 182, 0.3), 0 1px 0 #fff;
  letter-spacing: 0.5px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}



