:root {
  --primary-blue: #40c9ff;
  --primary-blue-mid: #2ebcf4;
  --primary-blue-dark: #1ca4e0;
  --accent-pink: #ff69f5;
  --accent-pink-mid: #ff40e5;
  --accent-pink-dark: #e520c5;
  --accent-yellow: #fff06e;
  --accent-yellow-mid: #ffe83d;
  --accent-yellow-dark: #ffd700;
  --dark: #1a1a1a;
  --dark-mid: #242424;
  --light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.4;
}

/* Header Background Pattern */
.header-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background-color: var(--dark-mid);
  overflow: hidden;
  z-index: 1;
}

/* Left Side Decorative Arrows */
.decorative-arrows-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 500px;
  overflow: hidden;
  z-index: 2;
}

/* Right Side Decorative Arrows */
.decorative-arrows-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 500px;
  overflow: hidden;
  z-index: 2;
}

/* Arrow Styles - Base */
.arrow {
  position: absolute;
  width: 50px;
  height: 50%;
  z-index: 3;
}

/* Top Half Arrows */
.arrow-top.arrow-right {
  top: 0;
  transform: skewX(12deg);
}

.arrow-top.arrow-left {
  top: 0;
  transform: skewX(-12deg);
}

/* Bottom Half Arrows */
.arrow-bottom.arrow-right {
  top: 50%;
  transform: skewX(-12deg);
}

.arrow-bottom.arrow-left {
  top: 50%;
  transform: skewX(12deg);
}

/* Right Side Arrow Positions */
.arrow-right-1 { right: 0; }
.arrow-right-2 { right: 50px; }
.arrow-right-3 { right: 100px; }
.arrow-right-4 { right: 150px; }
.arrow-right-5 { right: 200px; }

/* Left Side Arrow Positions */
.arrow-left-1 { left: 0; }
.arrow-left-2 { left: 50px; }
.arrow-left-3 { left: 100px; }
.arrow-left-4 { left: 150px; }
.arrow-left-5 { left: 200px; }

/* Arrow Colors */
.arrow-dark {
  background: linear-gradient(to bottom left, var(--dark), var(--dark-mid));
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.arrow-blue {
  background: linear-gradient(to bottom left, var(--primary-blue), var(--primary-blue-mid), var(--primary-blue-dark));
  box-shadow: 0 0 15px rgba(64, 201, 255, 0.3);
}

.arrow-pink {
  background: linear-gradient(to bottom left, var(--accent-pink), var(--accent-pink-mid), var(--accent-pink-dark));
  box-shadow: 0 0 15px rgba(255, 105, 245, 0.3);
}

.arrow-yellow {
  background: linear-gradient(to bottom left, var(--accent-yellow), var(--accent-yellow-mid), var(--accent-yellow-dark));
  box-shadow: 0 0 15px rgba(255, 240, 110, 0.3);
}

/* Bottom Half Arrow Colors - Right Side */
.arrow-bottom.arrow-right.arrow-dark {
  background: linear-gradient(to top left, var(--dark-mid), var(--dark));
}

.arrow-bottom.arrow-right.arrow-blue {
  background: linear-gradient(to top left, var(--primary-blue-dark), var(--primary-blue-mid), var(--primary-blue));
}

.arrow-bottom.arrow-right.arrow-pink {
  background: linear-gradient(to top left, var(--accent-pink-dark), var(--accent-pink-mid), var(--accent-pink));
}

.arrow-bottom.arrow-right.arrow-yellow {
  background: linear-gradient(to top left, var(--accent-yellow-dark), var(--accent-yellow-mid), var(--accent-yellow));
}

/* Bottom Half Arrow Colors - Left Side */
.arrow-bottom.arrow-left.arrow-dark {
  background: linear-gradient(to top right, var(--dark-mid), var(--dark));
}

.arrow-bottom.arrow-left.arrow-blue {
  background: linear-gradient(to top right, var(--primary-blue-dark), var(--primary-blue-mid), var(--primary-blue));
}

.arrow-bottom.arrow-left.arrow-pink {
  background: linear-gradient(to top right, var(--accent-pink-dark), var(--accent-pink-mid), var(--accent-pink));
}

.arrow-bottom.arrow-left.arrow-yellow {
  background: linear-gradient(to top right, var(--accent-yellow-dark), var(--accent-yellow-mid), var(--accent-yellow));
}

/* Navbar Styles */
.navbar {
  background-color: transparent;
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 160px;
}

.navbar-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-height: 90%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Main Content Styles */
.main-content {
  min-height: 100vh;
  padding: 180px 2rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  background-color: var(--dark);
}

.construction-container {
  max-width: 1200px;
  width: 90%;
  text-align: center;
  align-items: stretch;
  padding: 0.5rem;
  padding-bottom: 2rem;
  background-color: var(--dark-mid);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  animation: containerFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.construction-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 2.5rem;
}

.contact-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 2.5rem;
}

.vertical-divider {
  width: 2px;
  align-self: stretch;
  margin: 1rem 0;
  background: linear-gradient(to bottom, 
    transparent,
    var(--primary-blue) 15%,
    var(--accent-pink) 50%,
    var(--accent-yellow) 85%,
    transparent
  );
  box-shadow: 0 0 15px rgba(64, 201, 255, 0.2);
}

.construction-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation: imagePulse 3s ease-in-out infinite;
}

.contact-info {
  width: 100%;
  max-width: 400px;
}

@keyframes containerFadeIn {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
    background-color: rgba(36, 36, 36, 0.3);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(10px);
    background-color: var(--dark-mid);
  }
}

@keyframes imagePulse {
  0%, 100% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  }
  50% {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
  }
}

/* Stagger the content fade-in */
.section-title,
.section-subtitle,
.construction-image,
.contact-info {
  /* These elements already inherit the contentFadeIn animation from .construction-container > * */
  /* No additional animation-delay needed */
}

/* Update other content animations to use the both keyword for proper opacity handling */
.section-title,
.section-subtitle,
.contact-info {
  /* Remove redundant opacity and animation declarations */
}

.construction-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-yellow);
  opacity: 0.8;
}

.contact-info {
  margin-top: 1rem;
  padding-top: 2rem;
  position: relative;
}

.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.contact-item {
  margin: 0;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  width: 75%;
  text-align: center;
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-item:active {
  transform: scale(0.98);
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--accent-yellow);
  transition: color 0.2s ease;
}

.contact-item:hover .contact-icon {
  color: var(--accent-pink);
}

.contact-link {
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  cursor: pointer;
}

.contact-link:hover {
  color: var(--accent-yellow);
}

/* Remove the underline animation */
.contact-link::after {
  display: none;
}

/* Tooltip styles */
.tooltip {
  position: absolute;
  background-color: var(--dark);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  top: -30px;
}

.tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--dark);
}

.contact-item.copied .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.address {
  text-align: left;
  line-height: 1.6;
  position: relative;
  padding: 0.25rem 0;
}

.contact-link.address {
  display: block;
  color: var(--light);
}

.contact-link.address:hover {
  color: var(--accent-yellow);
}

.contact-link.address::after {
  bottom: -4px;
  height: 2px;
  background-color: var(--accent-yellow);
}

.contact-item:has(.address):hover .contact-icon {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.section-title {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-pink);
}

.section-subtitle {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 160px 1rem 1rem;
  }
  
  .construction-container {
    flex-direction: column;
    padding: 0.5rem;
    gap: 2rem;
  }

  .construction-side {
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .contact-side {
    padding-left: 0;
    padding-top: 2rem;
  }

  .vertical-divider {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(to right, 
      transparent,
      var(--primary-blue) 15%,
      var(--accent-pink) 50%,
      var(--accent-yellow) 85%,
      transparent
    );
  }

  .navbar {
    height: 150px;
  }
  
  .logo img {
    height: 70%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-title::after {
    width: 50px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }

  .contact-list {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    padding: 0.75rem 1rem;
    width: 75%;
  }

  .decorative-arrows-left,
  .decorative-arrows-right {
    width: 300px;
  }

  .arrow {
    width: 30px;
  }

  .arrow-right-2 { right: 30px; }
  .arrow-right-3 { right: 60px; }
  .arrow-right-4 { right: 90px; }
  .arrow-right-5 { right: 120px; }

  .arrow-left-2 { left: 30px; }
  .arrow-left-3 { left: 60px; }
  .arrow-left-4 { left: 90px; }
  .arrow-left-5 { left: 120px; }

  .header-background {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 140px 1rem 1rem;
  }
  
  .construction-container {
    padding: 0.5rem;
    gap: 1.5rem;
  }

  .construction-side {
    padding-bottom: 1.5rem;
  }

  .contact-side {
    padding-top: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title::after {
    width: 40px;
    height: 2px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .construction-image {
    max-width: 200px;
  }

  .decorative-arrows-left,
  .decorative-arrows-right {
    width: 200px;
  }

  .navbar {
    height: 120px;
  }

  .logo img {
    height: 70%;
  }

  .header-background {
    height: 120px;
  }

  .arrow {
    width: 25px;
  }

  .arrow-right-2 { right: 25px; }
  .arrow-right-3 { right: 50px; }
  .arrow-right-4 { right: 75px; }
  .arrow-right-5 { right: 100px; }

  .arrow-left-2 { left: 25px; }
  .arrow-left-3 { left: 50px; }
  .arrow-left-4 { left: 75px; }
  .arrow-left-5 { left: 100px; }

  .contact-item {
    padding: 0.75rem;
    width: 100%;
  }

  .contact-icon {
    font-size: 1.25rem;
  }
} 