/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;700&family=Libre+Franklin:wght@300;400;600&display=swap');

/* Reset browser defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Libre Franklin', 'Franklin Gothic Book', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #E8E8E8;
  padding: 20px;
}

/* Header */
header {
  background-color: #222222;
  color: white;
  text-align: center;
  padding: 20px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
}

header h1 {
  font-family: 'Bodoni Moda', 'Bodoni MT', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
    
}

header p {
  font-size: 1.2rem;
}

.site-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 10px;
}

.logotxt{
    font-size: 1.1rem;
    color: #FAB452;
}
/* Main content */
main {
  max-width: 1000px;
  margin: 0 auto;
}

section {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

section h2 {
  color: #222222;
  margin-bottom: 20px;
  border-bottom: 3px solid #ED8F09;
  padding-bottom: 10px;
}

ul {
  margin-left: 20px;
}

blockquote {
  font-style: italic;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 5px solid #E24910;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  font-family: 'Libre Franklin', 'Franklin Gothic Book', 'Segoe UI', sans-serif;
}

button {
  background-color: #E24910;
  color: white;
  font-size: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Libre Franklin', 'Franklin Gothic Book', 'Segoe UI', sans-serif;
}

button:hover {
  background-color: #C53A0C;
}

button:focus {
  outline: 2px solid #ED8F09;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
}

section.scroll-reveal {
  opacity: 0.6;
  transform: translateY(30px);
    transform: scale(0.8);
  transition: all 0.6s ease-out;
}

section.scroll-reveal.active-section {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1;
}


@media (max-width: 600px) {
  .site-logo {
    max-width: 180px;
  }
}