/* ============================================================
       GLOBAL STYLES
    ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0a2e 0%, #16213e 100%);
  color: rgb(215, 163, 31);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Background decoration */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.container {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  max-width: 1000px;  /* INCREASED: allows more space for logo */
  width: 100%;
}

/* ============================================================
       LOGO STYLES
    ============================================================ */
.logo {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

.logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 700px;  /* INCREASED: larger logo */
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.02);
}

/* Fallback text styling if image doesn't load */
.logo.fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo.fallback::before {
  content: "Golden Ratio Consulting";
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: rgb(215, 163, 31);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.logo.fallback::after {
  content: "Strategic Finance & IT Partner";
  font-size: 0.9rem;
  color: rgba(215, 163, 31, 0.8);
  letter-spacing: 0.03em;
}

.logo.fallback img {
  display: none;
}

/* ============================================================
       BUTTON STYLES
    ============================================================ */
.enter-btn {
  color: rgba(246, 245, 245, 0.95);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
  border: 2px solid rgb(215, 163, 31);
  padding: 14px 35px;
  border-radius: 50px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 0.8s;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.enter-btn:hover,
.enter-btn:focus {
  background: rgb(215, 163, 31);
  color: #0a0a2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(215, 163, 31, 0.3);
  outline: none;
}

.enter-btn:active {
  transform: translateY(0);
}

/* ============================================================
       ANIMATIONS
    ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
       RESPONSIVE STYLES
    ============================================================ */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 30px 20px;
  }
  
  .logo img {
    max-height: 220px;  /* INCREASED: larger on tablet */
  }

  .enter-btn {
    font-size: 1rem;
    padding: 12px 25px;
    letter-spacing: 1.5px;
  }

  .logo.fallback::before {
    font-size: 1.5rem;
  }

  .logo.fallback::after {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .logo img {
    max-height: 160px;  /* INCREASED: larger on mobile */
  }

  .enter-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .logo.fallback::before {
    font-size: 1.2rem;
  }
}

/* ============================================================
       PRINT STYLES
    ============================================================ */
@media print {
  body::before {
    opacity: 0;
  }

  .enter-btn {
    border: 1px solid #000;
    color: #000;
  }
}