/* Base Styles */
html {
  width: 100%;
  height: 100%;
  font-family: 'Cinzel', serif;
  background-color: #fdfaf5;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

/* Utility Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Dedication Banner */
#dedication {
  background-color: #f0ede5;
  color: #7a3c10;
  font-size: 20px;
  padding: 30px;
  font-weight: bold;
  border-bottom: 2px solid #c7b39c;
  text-align: center;
}

/* Top Navigation Bar */
#topnav {
  background-color: #f0ede5;
  padding: 15px 0;
  border-top: 2px solid #a14400;
  border-bottom: 2px solid #a14400;
  font-family: 'Cinzel', serif;
  position: sticky;
  top: 0;
  z-index: 999;
}

#topnav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0;
  padding: 0;
}

#topnav li {
  display: inline;
}

#topnav a {
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #a14400;
  padding: 10px 20px;
  border: 2px solid #a14400;
  border-radius: 8px;
  background-color: #fff7ee;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 transparent;
}

#topnav a:hover {
  background-color: #ff8400;
  color: #fff;
  box-shadow: 0 0 10px #ff8400;
  transform: scale(1.05);
}


/* Hero Banner */
#hero {
  width: 100%;
  height: 100vh;
  background: url("images/hero-banner-godaji.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
}

#hero-title {
  font-size: 64px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

#hero-subtitle {
  font-size: 24px;
  color: #fff;
}

/* Section Headings */
section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #5a2a00;
}

/* Paragraphs */
section p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Admin Section */
.admin-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.admin-photo {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.admin-info {
  max-width: 600px;
}

/* Weapons Display Section */
#weapons .weapon {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

#weapons img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.weapon-info {
  max-width: 600px;
}

.weapon-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #7a3c10;
}

.weapon-info p {
  font-size: 16px;
}

/* Visit Section */
#visit p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

#visit iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  font-family: inherit;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background-color: #7a3c10;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact-form button:hover {
  background-color: #5a2a00;
}

/* Jai Shivaji */
#jai-shivaji {
  background-color: #fde9ce;
  padding: 40px;
  text-align: center;
}

#jai-shivaji h1 {
  font-size: 40px;
  color: #a14400;
}

/* Footer */
footer {
  background-color: #222;
  color: #eee;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero-title {
    font-size: 42px;
  }

  #hero-subtitle {
    font-size: 18px;
  }

  .admin-section {
    flex-direction: column;
  }

  .container {
    padding: 20px 15px;
  }

  .weapon-info h3 {
    font-size: 20px;
  }

  .weapon-info p {
    font-size: 15px;
  }

  #jai-shivaji h1 {
    font-size: 28px;
  }
}
