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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #402420;
  color: #F5F5DC;
  height: 100vh;
  overflow: hidden;
}

#main {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.content-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.content-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Logo Section */
.logo-container {
  position: relative;
  margin-bottom: 2.5rem;
}

.radial-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 157, 0, 0.4) 0%,
    rgba(255, 157, 0, 0.15) 40%,
    rgba(255, 157, 0, 0) 70%
  );
  opacity: 0.6;
  border-radius: 50%;
  z-index: 0;
  filter: blur(20px);
  transition: opacity 0.5s ease;
  animation: pulse 5s ease-in-out infinite;
}

.logo-wrapper {
  position: relative;
  width: 320px;
  height: auto;
  z-index: 10;
  transition: all 0.3s ease;
  animation: glow 5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .logo-wrapper {
    width: 380px;
  }
}

.logo {
  width: 100%;
  height: auto;
}

/* Text Section */
.text-section {
  text-align: center;
  margin-top: 3rem;
}

h1 {
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: #F5F5DC;
}

h2 {
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 220, 0.8);
}

.email-link {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: rgba(245, 245, 220, 0.7);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: #E6C200;
  text-shadow: 0 0 10px rgba(230, 194, 0, 0.5);
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .email-link {
    font-size: 1.25rem;
  }
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

@keyframes glow {
  0%, 100% { 
    filter: drop-shadow(0 0 25px rgba(255, 157, 0, 0.5));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 45px rgba(255, 157, 0, 0.7));
    transform: scale(1.02);
  }
}