:root {
  --primary-color: #f4edde;
  --secondary-color: #a67246;
  --accent-color: #bf9a78;
  --light-gray: #acb2b4;
  --dark-gray: #515250;
  --text-dark: #2c2b28;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

@font-face {
  font-family: "vandijk";
  src: url("vandijk.ttf") format("truetype");
  font-weight: 700;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text-dark);
  padding: 20px 0;
}

.logo {
  max-width: 200px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-elements {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  top: 0;
  left: 0;
}

.leaf {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(191, 154, 120, 0.3);
  border-radius: 0 100% 0 100%;
  animation: float 6s ease-in-out infinite;
}

.construction-container {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  box-shadow: var(--shadow-hover);
  animation: fadeInUp 1s ease-out;
  margin: 50px auto;
  scroll-margin-top: 50px;
}

.logo-container {
  margin-bottom: 20px;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 48px;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.construction-icon {
  font-size: 80px;
  margin: 30px 0;
  animation: bounce 2s infinite;
}

.main-message {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--text-dark);
}

.sub-message {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.6;
  color: var(--dark-gray);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-info {
  background: rgba(166, 114, 70, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 4px solid var(--secondary-color);
}

.contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.contact-details {
  display: grid;
  gap: 10px;
  text-align: left;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  margin: 30px 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 3px;
  animation: loading 3s ease-in-out infinite;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: rgba(166, 114, 70, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--secondary-color);
  box-shadow: var(--shadow);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.footer-text {
  margin-top: 30px;
  opacity: 0.7;
  font-size: 14px;
  color: var(--dark-gray);
}

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInOut 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes loading {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

@media (max-width: 768px) {
  .construction-container {
    margin: 20px;
    padding: 30px 20px;
  }

  .logo-text {
    font-size: 36px;
  }

  .main-message {
    font-size: 24px;
  }

  .construction-icon {
    font-size: 60px;
  }
}
