/* ============================================
   AMG Optimus Ltd.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1B4332;
  text-decoration: none;
}

a:hover {
  color: #C5A55A;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1B4332;
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin-bottom: 1.2em;
}

/* --- Header --- */
.site-header {
  background: #0D2818;
  padding: 15px 0;
  border-bottom: 3px solid #C5A55A;
}

.site-header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-text span {
  color: #C5A55A;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #C5A55A;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* --- Hero Banner --- */
.hero-banner {
  background: #1B4332;
  padding: 80px 30px;
  text-align: center;
}

.hero-banner h1 {
  color: #fff;
  font-size: 2.8rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero-banner h1 em {
  color: #C5A55A;
  font-style: italic;
}

.hero-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 30px;
}

.hero-banner .btn {
  display: inline-block;
  background: #C5A55A;
  color: #0D2818;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
}

.hero-banner .btn:hover {
  background: #A68A3C;
  color: #fff;
}

/* --- Content Sections --- */
.content-section {
  padding: 70px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 16px;
  color: #444;
  max-width: 680px;
}

/* --- Two Column --- */
.two-col {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 70px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.two-col .col-image {
  flex: 0 0 300px;
}

.two-col .col-image img {
  width: 100%;
  border-radius: 3px;
}

.two-col .col-text {
  flex: 1;
}

.two-col .col-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.two-col .col-text p {
  font-size: 16px;
  color: #444;
}

/* --- Green Band --- */
.green-band {
  background: #1B4332;
  padding: 60px 30px;
  text-align: center;
}

.green-band h2 {
  color: #C5A55A;
  font-size: 1.8rem;
  max-width: 600px;
  margin: 0 auto 15px;
}

.green-band p {
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 25px;
  font-size: 16px;
}

.green-band .btn {
  display: inline-block;
  border: 2px solid #C5A55A;
  color: #C5A55A;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 3px;
}

.green-band .btn:hover {
  background: #C5A55A;
  color: #0D2818;
}

/* --- Dark Band --- */
.dark-band {
  background: #0D2818;
  padding: 50px 30px;
  text-align: center;
}

.dark-band h2 {
  color: #C5A55A;
  font-size: 1.6rem;
  max-width: 600px;
  margin: 0 auto 15px;
}

.dark-band p {
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto;
  font-size: 15px;
}

/* --- Light Section --- */
.light-section {
  background: #f9f8f5;
  padding: 70px 30px;
}

.light-section .wrap {
  max-width: 900px;
  margin: 0 auto;
}

.light-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.light-section p {
  font-size: 16px;
  color: #444;
  max-width: 680px;
}

/* --- Simple List --- */
.simple-list {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.simple-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #444;
}

.simple-list li strong {
  color: #1B4332;
}

.simple-list li:last-child {
  border-bottom: none;
}

/* --- Buttons --- */
.btn-row {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #C5A55A;
  color: #0D2818;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
}

.btn-primary:hover {
  background: #A68A3C;
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #1B4332;
  color: #1B4332;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
}

.btn-secondary:hover {
  background: #1B4332;
  color: #fff;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 500px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #1B4332;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #1B4332;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Footer --- */
.site-footer {
  background: #0D2818;
  padding: 50px 30px 20px;
  border-top: 3px solid #C5A55A;
}

.site-footer .wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #C5A55A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #C5A55A;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 5px;
}

.footer-bottom {
  max-width: 1000px;
  margin: 30px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: #C5A55A;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0D2818;
    flex-direction: column;
    padding: 20px 30px;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .site-header .wrap {
    position: relative;
  }

  .hero-banner {
    padding: 50px 20px;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .two-col {
    flex-direction: column;
    gap: 25px;
    padding: 50px 20px;
  }

  .two-col .col-image {
    flex: none;
    max-width: 250px;
  }

  .content-section {
    padding: 50px 20px;
  }

  .light-section {
    padding: 50px 20px;
  }

  .green-band {
    padding: 40px 20px;
  }

  .dark-band {
    padding: 40px 20px;
  }

  .site-footer .wrap {
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
