/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Main Page Layout */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
  padding: 2rem;
}

/* Brand Container */
.brand {
  text-align: center;
  animation: fadeIn 1.2s ease-in;
  position: relative;
}

/* Floating Shadow Effect */
.brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: -1;
  animation: shadowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* Logo Styling */
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  animation: float 3s ease-in-out infinite;
}

/* Company Name */
.name {
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2416;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Coming Soon Tag */
.tag {
  font-size: 1.25rem;
  font-weight: 400;
  color: #6b5d4f;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-top: 2px solid #d4c4a8;
  border-bottom: 2px solid #d4c4a8;
  display: inline-block;
  margin-top: 1rem;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shadowPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(0.85);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
  }

  .name {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .tag {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 150px;
  }

  .name {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  .tag {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.15em;
  }
}


