/* Gude LLC - Simple Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --shadow-color: navy;
  --text-color: yellow;
  --link-color: #87CEEB;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(180deg, 
    #1a1a2e 0%,           /* Deep night blue at top */
    #16213e 15%,          /* Dark blue */
    #0f3460 30%,          /* Navy blue */
    #e94560 45%,          /* Deep red/pink */
    #f39c12 60%,          /* Golden orange */
    #f1c40f 75%,          /* Bright yellow */
    #ecf0f1 90%,          /* Light cream */
    #ffffff 100%          /* Pure white at bottom */
  );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 2rem;
}

.header-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 800px;
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 15px;
  animation: bounceIn 1.5s ease-out;
  flex-shrink: 0;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  width: 100%;
}

.info-box, .contact-box {
  background: transparent;
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box {
  background: transparent;
  border: none;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  text-align: center;
  margin: 0;
  text-shadow: 
    -2px -2px 0 var(--shadow-color),
    2px -2px 0 var(--shadow-color),
    -2px 2px 0 var(--shadow-color),
    2px 2px 0 var(--shadow-color),
    0 0 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
  white-space: nowrap;
  flex-shrink: 0;
}

p {
  font-size: 1.2rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1rem;
  max-width: 600px;
  text-shadow: 
    -1px -1px 0 var(--shadow-color),
    1px -1px 0 var(--shadow-color),
    -1px 1px 0 var(--shadow-color),
    1px 1px 0 var(--shadow-color),
    0 0 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Link styles */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--shadow-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
  .header-section {
    flex-direction: column;
    gap: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .logo {
    width: 120px;
  }
  
  .content-section {
    gap: 1rem;
  }
  
  .info-box, .contact-box {
    padding: 1rem;
  }
}

/* Add some hover effects */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
