/* =========================================================
   SrvMod Minimal Landing Page (Centered Logo Version)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

:root {
  --accent: #06b6d4;
  --accent-light: #38bdf8;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --bg: #0f172a;
}

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

/* Body Layout */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  text-align: center;
}

/* =========================================================
   HERO BACKGROUND (top third only)
   ========================================================= */
.hero {
  background: url("../assets/srvmod hero image.png") no-repeat center center/cover;
  width: 100%;
  height: 33vh;
}

/* =========================================================
   CENTERED MAIN CONTENT (logo in the true middle)
   ========================================================= */
.center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -8vh; /* adjust upward slightly for balance */
}

.logo {
  width: 140px;
  height: 140px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}

p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* =========================================================
   FOOTER (logo | email | copyright)
   ========================================================= */
footer {
  background-color: rgba(15, 23, 42, 0.95);
  padding: 2rem 3rem; /* increased vertical and horizontal space */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  text-align: center;
}

/* Logo side */
.footer-left {
  text-align: left;
}

/* Copyright side */
.footer-right {
  text-align: right;
  color: var(--muted);
  font-size: 1.05rem; /* slightly larger text */
}

/* Larger logo for readability */
.footer-logo {
  width: 80px;
  height: 80px;
}

/* Center link */
.footer-center a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-center a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 700px) {
  .logo {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-logo {
    width: 65px;
    height: 65px;
  }

  .footer-center a,
  .footer-right {
    font-size: 0.95rem;
  }

  footer {
    padding: 1.8rem 1.5rem;
  }
}



