@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Poppins:wght@300;400;500;600&display=swap");

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

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: -1;
}

.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 5em;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
  text-transform: lowercase;
  letter-spacing: -1px;
  text-shadow: 3px 3px 30px rgba(0, 0, 0, 0.7);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 100px;
  margin-top: 80px;
  max-width: 900px;
  width: 100%;
}

.info-item {
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.info-label {
  font-size: 0.85em;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
}

.info-value {
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.info-value a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.info-value a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: white;
  transition: transform 0.3s ease;
}

.info-value a:hover {
  opacity: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.info-value a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

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

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

.content {
  animation: fadeIn 1.2s ease-out;
}

.logo {
  animation: fadeIn 1s ease-out 0.2s both;
}

h1 {
  animation: fadeIn 1s ease-out 0.4s both;
}

.info-item:nth-child(1) {
  animation: slideIn 0.8s ease-out 0.6s both;
}

.info-item:nth-child(2) {
  animation: slideIn 0.8s ease-out 0.8s both;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 3em;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .logo {
    font-size: 1.1em;
    margin-bottom: 40px;
  }

  .info-item {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2em;
  }

  .logo {
    font-size: 0.95em;
    letter-spacing: 3px;
  }

  .info-value {
    font-size: 1.05em;
  }

  .info-item {
    padding: 30px 20px;
  }

  .info-label {
    font-size: 0.8em;
    letter-spacing: 2px;
  }
}

/* Height adjustments */
@media (max-height: 600px) {
  .logo {
    margin-bottom: 30px;
  }

  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .info-grid {
    margin-top: 30px;
    gap: 40px;
  }
}
