/* Reset and basic styling */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background-color: #1f2937; /* Dark Navy */
  scroll-behavior: smooth;
}

h1, h2 {
  color: #d4af37; /* Gold */
}

a {
  color: #d4af37;
  text-decoration: none;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 15px;
  background-color: #d4af37;
  color: #1f2937;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #b8962f;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 5px 0;
}

/* Footer */
footer {
  background-color: #111827;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

/* Fade-in animation */
section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

section:nth-of-type(1) { animation-delay: 0.2s; }
section:nth-of-type(2) { animation-delay: 0.4s; }
section:nth-of-type(3) { animation-delay: 0.6s; }
section:nth-of-type(4) { animation-delay: 0.8s; }
section:nth-of-type(5) { animation-delay: 1s; }
section:nth-of-type(6) { animation-delay: 1.2s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  section {
    padding: 50px 15px;
  }
}


/* Header logo */
.site-header {
  text-align: center;
  padding: 20px 0;
}
.header-logo {
  width: 180px;
  height: auto;
}


/* Secondary button */
.secondary-btn {
  background: #fff;
  color: #003366;
  border: 2px solid #003366;
  margin-top:10px;
}

/* Responsive header */
@media (max-width:600px){
  .header-logo{
    width:140px;
  }
}


.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

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


.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid #eee;
    padding: 10px 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.navbar a:hover {
    color: #000;
    text-decoration: underline;
}


.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 10px 0;
}

.logo {
    max-width: 240px;
    height: auto;
    display: block;
}


/* Smooth fade + slight slide-down animation */
@keyframes fadeSlideDown {
    0% { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Fade-up reveal for content */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Logo animation */
.site-header img {
    animation: fadeSlideDown 1.1s ease-out forwards;
}

/* Section reveal (applies to all main content) */
.reveal {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Button hover micro-animations */
button, .btn, a.button {
    transition: all 0.25s ease;
}

button:hover, .btn:hover, a.button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}

/* Footer styling */
footer {
    margin-top: 60px;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    background: #f6f6f6;
    font-size: 16px;
    color: #333;
    border-top: 2px solid #eee;
}
