/* Reset and base */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* the basics */
body {
  font-size: 16px;
  margin: 0;
  padding-top: 80px; /* Matches header height + buffer */
  padding-left: 25px;
  padding-right: 25px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  background-color: #0d1017;
  color: azure;
}
a:link {
  color: azure; /* Blue (default browser color) */
  text-decoration: none;
}

a:visited {
  color: azure; /* Purple (default browser color) */
  text-decoration: none;
}

a:hover {
  color: azure; /* Orange-red */
}

a:active {
  color: azure; /* Red (default browser color) */
  text-decoration: none;
}

/* Centered content wrapper */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  position: fixed;
  top: 15px;
  left: 25px;
  right: 25px;
  z-index: 100;
  max-width: 1350px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(125, 125, 125, 0.40);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(255, 255, 255, 0.55),
    0 0 8px rgba(0, 0, 0, 0.15);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* keeps left and right at ends */
  gap: 2rem;
  padding: 0 1rem;
  min-height: 60px;
}  

/* Group logo + left nav */
header .left-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Right nav (Contact) */
header .header-right {
  display: flex;
  align-items: center;
}

/* Logo */
.header_logo {
  max-width: 80px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* Main content wrapper */
.main_content {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Headings in main content */
.main_content h1,
.main_content h2,
.main_content h3,
.main_content h4,
.main_content h5,
.main_content h6 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.main_content h1 {
  font-size: 3.5rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.main_content h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.main_content h3 {
  text-align: center;
  font-size: 1.75rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Main content images */
main img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  object-fit: contain;
}

/* Auto-tile multiple images */
main p:has(img + img) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* This section for contact form */

.contact-form {
  max-width: 900px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.form-group input[type="date"] {
  min-width: 0;
}

button[type="submit"] {
  padding: 0.75rem 1.5rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

button[type="submit"]:hover {
  background: #555;
}

/* done with contact form */

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.hero-logo {
  margin-bottom: 3rem;
}

.contact-section {
  margin-top: 3rem;
}

/* Footer text */
.footer-text {
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  body {
    padding-top: 90px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main_content {
    padding: 0 0.75rem;
  }

  .hero-logo {
    max-width: 96%;
  }

  main p:has(img + img) {
    grid-template-columns: 1fr;
  }
}