/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #2B2D33;
}

/* Header */
.site-header {
  background-color: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo img {
  width: 150px;
  height: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ff6600;
}

/* Hero Section */
.hero {
  background-color: #2B2D33;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #FB7D13;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e65c00;
}

.signup, .signup:link, .signup:visited {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.signup:hover {
  color: #ff6600;
}

/* Features Section */
.features {
  padding: 2rem;
  background-color: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.features ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: disc inside;
}

/* Gallery Section */
.gallery {
  padding: 2rem;
  background-color: #f9f9f9;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-images img {
  width: 30%;
  border-radius: 5px;
}

/* Reviews Section */
.reviews {
  padding: 2rem;
  background-color: #fff;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.reviews blockquote {
  max-width: 600px;
  margin: 1rem auto;
  font-style: italic;
  border-left: 4px solid #ff6600;
  padding-left: 1rem;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 1rem 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ff6600;
}

/* Sign in Form */
.login {
  width: 300px;
  margin: 100px auto;
  padding: 30px;
}

.login input[type="email"],
.login input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;   
}

.login button {
    width: 100%;
    padding: 10px;
    background-color: #FB7D13;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login button:hover {
    background: #cc7a00;
}

.login-text {
  color: #fff;
}

.login-box {
  background-color: #1F2229;
  color: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  border-radius: 4px;
  line-height: 1;
}

/* Signup */
  .error {
      color: red;
      margin-top: 1em;
    }

    .signup {
  width: 300px;
  margin: 100px auto;
  padding: 30px;
}

.signup input[type="email"],
.signup input[type="password"],
.signup input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;   
}

.signup-button {
    width: 100%;
    padding: 10px;
    background-color: #FB7D13;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.signup-button:hover {
    background: #cc7a00;
}

#email-valid-check {
  font-size: 18px;
  margin-left: 8px;
}

.login-text {
  color: #fff;
}

.login-box {
  background-color: #1F2229;
  color: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  border-radius: 4px;
  line-height: 1;
}
