html {
  scroll-behavior: smooth;
}

/* Global */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #0c0038;
  color: #F5F5F5;
  line-height: 1.7;
}
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #FFD700;
}
header, section, footer {
  padding: 3rem 2rem;
}
section {
  
}
section:nth-of-type(even) {
  background: #0c0038;
}

section + section {
  border-top: 1px solid #FFD700;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a002d;
  color: #F5F5F5;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-bottom: 1px solid #FFD700;
}
nav a {
  color: #F5F5F5;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #FFD700;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFD700;
}

.nav-links {
  display: flex;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0c0038;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger-menu {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .two-col {
    flex-direction: column;
  }

  .contact-form {
    max-width: 100%;
    padding: 0 2rem;
  }
}

@media screen and (max-to-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .email, .phone, .copyright, .back-to-top {
    display: block;
  }
}

/* CTA Buttons */
.cta-btn {
  display: inline-block;
  background: #FFD700;
  color: #0c0038;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-btn:hover {
  background: #E1B84D;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background: transparent;
  border: 1px solid #FFD700;
  color: #FFD700;
}
.cta-btn.secondary:hover {
  background: #FFD700;
  color: #0c0038;
}

/* Section defaults */
.section {
  text-align: center;
  margin: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact form */
.contact-form {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  background-color: #0c0038;
  color: #F5F5F5;
}
.contact-form button {
  display: block;
  margin: 0 auto;
  background: #FFD700;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  color: #0c0038;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-form button:hover {
  background: #E1B84D;
}

/* Footer */
footer {
  background: #0a002d;
  color: #f8f9fa;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid #FFD700;
}
footer a {
  color: #FFD700;
  text-decoration: none;
}

.social-media {
  margin-top: 1.5rem;
}

.social-media a {
  color: #FFD700;
  margin: 0 1rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #F5F5F5;
}
