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

:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-text: #f8f9fa;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--secondary-color), #34495e);
  color: var(--light-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  animation: fadeIn 1s ease-in-out;
}

.logo {
  width: 150px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Enhanced Language Toggle Styling */
.language-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--light-text);
  border: 2px solid transparent;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  min-width: 50px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .countdown-value {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .language-toggle {
    top: 15px;
    right: 15px;
    padding: 8px;
  }
  
  .lang-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}