/*
Theme Name: NicollPlant
Author: Paul
Version: 1.0
*/

/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Background with zoom animation */
body {
  background: url("images/background.jpg") no-repeat center center/cover;
  height: 100vh;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: zoomEffect 14s ease-in-out infinite;
}

/* Zoom keyframes */
@keyframes zoomEffect {
  0%, 100% {
    background-size: 100%;
  }
  50% {
    background-size: 115%;
  }
}

/* Overlay for text contrast */
.overlay {
  background-color: rgba(255, 255, 255, 0.65);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content styling with fade-in */
.content {
  max-width: 900px;
  padding: 20px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

/* Fade-in keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Default (desktop) */
h1 {
  font-size: 5rem;       /* Huge on desktop */
  margin-bottom: 30px;
  font-weight: bold;
}

p {
  font-size: 2rem;     /* Large text on desktop */
  margin: 5px 0;
}

/* Tablet screens */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  p {
    font-size: 1.4rem;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }
  p {
    font-size: 1rem;
  }
}
