/* styles.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #013220;
  color: #fff;
  padding: 1rem 2rem;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffcc00;
}

.quote-button {
  background-color: #ffcc00;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/img/inquery\ form_BG.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #ffcc00;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Main Section Styling */
.section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #013220;
}

.section p, .section li, .section details {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.8rem;
}

.section ul, .section ol {
  text-align: left;
  display: inline-block;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  cursor: zoom-in;
}

.gallery-grid img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #013220;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #025e3c;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

footer {
  background-color: #013220;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Login Page */
.login-container {
  max-width: 400px;
  margin: 4rem auto;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.login-container h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #013220;
}

.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.login-form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form .forgot {
  display: block;
  margin-bottom: 1rem;
  text-align: right;
  font-size: 0.9rem;
  color: #013220;
  text-decoration: none;
}

.login-form .forgot:hover {
  text-decoration: underline;
}

.login-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #013220;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #025e3c;
}
.hamburger {
visibility: hidden;
}

/* Responsive Burger Menu */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .hamburger {
    visibility: visible;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #013220;
    padding: 1rem 2rem;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reset / Forgot Password styling */
.reset-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(1,50,32,0.06);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.reset-box h3 {
  margin: 0 0 0.75rem 0;
  color: #013220;
}

/* Inputs / buttons used in reset area */
.form-input {
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
  background: #fff;
}

.form-button {
  background-color: #013220;
  color: #fff;
  padding: 0.55rem 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.form-button:hover {
  background-color: #025e3c;
}

.form-link {
  background: transparent;
  border: none;
  color: #013220;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.95rem;
}

/* layout rows */
.reset-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.reset-row .form-input {
  flex: 1 1 auto;
}

/* actions row */
.reset-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.25rem;
}

/* feedback message */
.reset-message {
  margin-top: 0.75rem;
  padding: 0.6rem;
  border-radius: 6px;
  font-size: 0.95rem;
  display: block;
}

.reset-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #bbf7d0;
}

.reset-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* responsive: stack fields on small screens */
@media (max-width: 480px) {
  .reset-row {
    flex-direction: column;
  }
  .reset-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
