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

:root {
  --primary-green: #39b54a; /* Vibrant green */
  --accent-yellow: #FFD700;
  --bg-light: #ffffff;
  --bg-secondary: #f4f9f4; /* very light green */
  --text-dark: #222222;
  --text-gray: #555555;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  padding: 2rem 0;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(57, 181, 74, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.content-wrapper {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  position: relative;
}

.tagline {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.5rem 2rem;
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.highlight-yellow {
  color: var(--accent-yellow);
}

.highlight-green {
  color: var(--primary-green);
}

header {
  margin-bottom: 3rem;
  animation: fade-in-down 1s ease-out forwards;
}

@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
  text-shadow: 2px 4px 15px rgba(0,0,0,0.05);
  color: var(--text-dark);
}

.subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -1px;
}

.subtitle span {
  font-size: 2rem; 
  color: var(--text-dark); 
  letter-spacing: 2px; 
  font-family: 'Inter', sans-serif; 
  font-weight: 400;
}

.feature-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 0 auto;
  max-width: 800px;
  flex-wrap: wrap;
}

.feature-bar .arrow {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.feature-bar i {
  margin-right: 0.5rem;
  color: var(--primary-green);
}

.feature-bar .highlight-yellow i {
  color: #d4b400; /* slightly darker yellow for visibility */
}

.feature-bar .highlight-yellow {
  color: #d4b400; /* darker yellow text for white bg */
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fade-in-up 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-img:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 30px rgba(57, 181, 74, 0.2);
}

.info-section {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(57, 181, 74, 0.2);
  margin-bottom: 3rem;
  animation: fade-in 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.info-section p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.input-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

input[type="email"] {
  flex: 1;
  padding: 1.2rem 1.8rem;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.1);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 1.1rem;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

input[type="email"]:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 15px rgba(57, 181, 74, 0.2);
}

input[type="email"]::placeholder {
  color: #999999;
}

button {
  background-color: var(--accent-yellow);
  color: #000;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover {
  background-color: var(--primary-green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(57, 181, 74, 0.3);
}

button:active {
  transform: translateY(0);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fade-in 1s ease-out 0.9s forwards;
  opacity: 0;
}

.social-links a {
  color: var(--text-gray);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
}

.social-links a:hover {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(57, 181, 74, 0.2);
}

.logo-container {
  margin-bottom: 2rem;
  animation: fade-in-down 1s ease-out forwards;
}

.logo {
  max-width: 250px;
  height: auto;
}

.contact-details {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details i {
  color: var(--primary-green);
  margin-right: 0.5rem;
  width: 20px;
}

/* Responsive Design */
@media (max-width: 900px) {
  h1 { font-size: 5rem; }
  .subtitle { font-size: 3rem; }
  .image-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-img:last-child { display: none; } 
}

@media (max-width: 600px) {
  h1 { font-size: 3.5rem; }
  .subtitle { font-size: 2rem; }
  .tagline { font-size: 1.1rem; }
  .image-gallery { grid-template-columns: 1fr; }
  .gallery-img:last-child { display: block; } 
  .input-group { flex-direction: column; }
  button { justify-content: center; width: 100%; }
  .feature-bar { flex-direction: column; gap: 0.8rem; border-radius: 20px; padding: 1.5rem; }
  .feature-bar .arrow { display: none; }
}
