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

:root {
  --primary-color: #1B4332;
  --secondary-color: #2D6A4F;
  --accent-color: #B08968;
  --bg-color: #F8F9F1;
  --text-color: #2D2D2D;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.8);
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --nav-height: 80px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .nav-links a {
  font-family: 'Outfit', sans-serif;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  height: var(--nav-height);
  background: var(--glass);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Sections */
section {
  padding: 100px 0;
}

.hero {
  padding-top: calc(var(--nav-height) + 50px);
  text-align: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: slideUp 0.8s ease-out;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #4A4A4A;
  animation: slideUp 1s ease-out;
}

/* CTA Button */
.cta-container {
  padding: 60px 0;
  text-align: center;
  background: white;
  margin: 40px 0;
  border-radius: 20px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn-cta:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-cta i {
  margin-left: 10px;
}

/* Content Blocks */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.content-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.content-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
}
