/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 54, 93, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  color: #d69e2e;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d69e2e;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d69e2e;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.6);
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-primary {
  background: #d69e2e;
  color: #fff;
}

.btn-primary:hover {
  background: #b7791f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(214, 158, 46, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #1a365d;
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: #1a365d;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #718096;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: #1a365d;
  margin-top: 2rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-image {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  clip-path: inset(0% 0% 5% 5%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Events Section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0% 0% 5% 5%);
}

.event-content {
  padding: 2rem;
}

.event-content h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.event-date {
  color: #d69e2e;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-date i {
  margin-right: 0.5rem;
}

.event-description {
  color: #718096;
  margin-bottom: 1.5rem;
}

.event-link {
  color: #1a365d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.event-link:hover {
  color: #d69e2e;
}

/* Facilities Section */
.facilities-section {
  background: #f8fafc;
}

.facilities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.facilities-image {
  text-align: center;
}

.facilities-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  clip-path: inset(0% 0% 5% 5%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facilities-text h3 {
  color: #1a365d;
  margin-top: 2rem;
}

.facilities-text h3:first-child {
  margin-top: 0;
}

.facilities-list {
  list-style: none;
  margin: 1.5rem 0;
}

.facilities-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.facilities-list i {
  color: #d69e2e;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.facilities-cta {
  margin-top: 2rem;
}

/* Subscribe Section */
.subscribe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.subscribe-text h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.subscribe-benefits {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #4a5568;
}

.benefit-item i {
  color: #d69e2e;
  margin-right: 1rem;
  font-size: 1.5rem;
  width: 30px;
}

.subscribe-form {
  text-align: center;
}

.subscribe-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  clip-path: inset(0% 0% 5% 5%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #d69e2e;
}

/* Contact Section */
.contact-section {
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: #d69e2e;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  width: 30px;
}

.contact-item h3 {
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4a5568;
  margin-bottom: 0;
}

.contact-image {
  text-align: center;
}

.contact-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  clip-path: inset(0% 0% 5% 5%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: #1a365d;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo h3 {
  color: #d69e2e;
  margin-bottom: 0;
}

.footer-section h4 {
  color: #d69e2e;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d69e2e;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(26, 54, 93, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content,
  .facilities-content,
  .subscribe-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
input:focus {
  outline: 2px solid #d69e2e;
  outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Print styles */
@media print {
  .navbar,
  .hero-buttons,
  .newsletter-form {
    display: none;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
  }

  .hero-overlay {
    display: none;
  }

  .hero-title {
    color: #000;
    text-shadow: none;
  }

  .hero-subtitle {
    color: #333;
    text-shadow: none;
  }
}

