/* styles.css */

/* Import Google Font inside CSS for fallback (optional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #151B31;
  --accent-color: #151B31;
  --text-color: #333;
  --light-color: #f7f9fc;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 0;
}

/* ---------------------------------- */
/* Hero Section                       */
/* ---------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('image-pixground-com.jpeg') center/cover no-repeat fixed;
  overflow: hidden;
}

/* Dark overlay to improve text readability */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Logo styling with subtle floating animation */
.logo {
  width: 480px;
  max-width: 60vw;
  z-index: 2;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 1.2s ease-out forwards, float 6s ease-in-out infinite 2s;
}

/* Tagline headline */
.tagline {
  z-index: 2;
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s 0.6s ease-out forwards;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ---------------------------------- */
/* Sections                           */
/* ---------------------------------- */
section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact p {
  text-align: center;
  font-size: 1.1rem;
}

.contact a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ---------------------------------- */
/* Footer                             */
/* ---------------------------------- */
.footer {
  background: var(--primary-color);
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
}

.footer p {
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .logo {
    width: 320px;
  }

  .container {
    padding: 3rem 0;
  }
} 