/* Clean Modern Design - No Material Dependencies */

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

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #2a2d35 0%, #1e2126 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Top Navigation */
.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-btn:hover {
  color: #73c5ff;
  background: rgba(115, 197, 255, 0.1);
}

/* Main Content */
.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.fox-logo {
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.fox-logo:hover {
  transform: scale(1.02);
}

.title-container {
  text-align: center;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #73c5ff;
  text-shadow: 0 2px 10px rgba(115, 197, 255, 0.3);
  margin: 0;
}

.description {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  line-height: 1.6;
}

.furgals-link {
  color: #73c5ff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.furgals-link:hover {
  color: white;
  border-bottom: 1px solid #73c5ff;
}

/* Contact Dialog */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.dialog {
  background: #2a2d35;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  min-width: 300px;
  max-width: 500px;
  border: 1px solid rgba(115, 197, 255, 0.2);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dialog-header h3 {
  color: #73c5ff;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.dialog-content {
  padding: 20px 24px 24px;
}

.dialog-content p {
  color: white;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-nav {
    padding: 15px 20px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .fox-logo {
    max-width: 300px;
    max-height: 300px;
  }
  
  .main-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .description {
    font-size: 1rem;
    margin-top: 15px;
  }
  
  .logo-container {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
  
  .fox-logo {
    max-width: 250px;
    max-height: 250px;
  }
  
  .main-title {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }
  
  .description {
    font-size: 0.9rem;
    margin-top: 12px;
  }
  
  .dialog {
    margin: 20px;
    min-width: auto;
  }
}

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

.logo-container {
  animation: fadeIn 0.7s ease-out;
}

.nav-btn {
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(115, 197, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-btn:hover::before {
  left: 100%;
}