/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Colors */
:root {
  --navy: #1e3a8a;
  --light-navy: #3b82f6;
  --gold: #d4af37;
  --gray: #6b7280;
  --light-gray:#f8f9fa
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: 900px;
}

/* Typography */
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

/* Hero */
.hero {
  background-color: var(--navy);
  color: white;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  padding-right: 20px;
}

.hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  margin: 1.5rem 0 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 8px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background-color: #e0c04a;
  transform: translateY(-2px);
}

.btn-secondary,
.btn-outline {
  background-color: white;
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-secondary:hover,
.btn-outline:hover {
  background-color: var(--gold);
  color: var(--navy);
}

.hero-buttons,
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero-buttons,
  .footer-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Disclaimer */
.disclaimer {
  background: white;
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.disclaimer-strong {
  font-size: 1.2rem;
  color: #c53030;
  margin-bottom: 0.5rem;
}

.disclaimer-info {
  color: #555;
}

/* Services */
.services {
  padding: 80px 0;
  background-color: #ECE8E9
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.services-note {
  font-size: 1.1rem;
  margin-top: 2rem;
  color: #555;
}

/* About */
.about {
  padding: 80px 0;
  background: white;
}

.about p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.about ul {
  list-style: disc;
  padding-left: 24px;
  margin: 1.5rem 0;
}

.about ul li {
  margin-bottom: 0.8rem;
}

.highlight {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: white;
  padding: 80px 0 40px;
}

.footer h2 {
  color: white;
}

.footer p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.footer-small {
  margin-top: 3rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.text-center {
  text-align: center;
}



/* new stuff for navigation */


@media screen and (max-width: 768px) {
  /* Target your nav container – replace .nav or nav with your actual selector */
  nav, .nav, .menu, .navbar, header ul {  /* add your class/ID here */
    flex-wrap: wrap !important;          /* if using flex */
    justify-content: center;
    text-align: center;
  }

  nav ul, .nav ul {
    flex-wrap: wrap;
    padding: 0.5rem;
  }

  nav li, .nav li {
    margin: 0.5rem 1rem !important;     /* smaller spacing */
    flex: 1 1 auto;                     /* allow shrinking/growing */
  }

  nav a, .nav a {
    display: block;                     /* bigger tap area */
    padding: 0.8rem 1rem;
    font-size: 1.1rem;                  /* easier to read/tap */
  }

  /* Prevent horizontal scroll */
  body, html {
    overflow-x: hidden;
  }
}