/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0e2f44;
  background-color: #f9f9f9;
  line-height: 1.6;
}
.container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
}

/* Header */
header {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  text-align: center;
}
header .logo {
  height: 100px;
  float: left;
}
nav {
  float: right;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: #0e2f44;
  font-weight: bold;
}
nav .btn {
  background: #f26522;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
nav .btn:hover {
  background: #cc531c;
}

/* Hero */
.hero {
  background: url('images/flooring-background.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  background-color: #0e2f44;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn-primary {
  background: #f26522;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #cc531c;
}

/* How It Works */
.info {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.info h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #0e2f44;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.step {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.step h3 {
  margin-bottom: 10px;
  color: #f26522;
}

/* CTA Section */
.cta-section {
  background: #f26522;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #0e2f44;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.step-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.gallery {
  margin: 60px auto;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}







.auth-form {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #333;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.auth-form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.auth-form button:hover {
  background-color: #0056b3;
}

.auth-form p {
  margin-top: 15px;
  font-size: 14px;
}

.auth-form a {
  color: #007BFF;
  text-decoration: none;
}


.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.installer-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.profile-share-box {
    margin-bottom: 20px;
}

.share-icons a {
    margin-right: 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}



header.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.logo {
  max-height: 200px;
}

.menu-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 999;
}

.bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Hamburger Animation into "X" */
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Styles */
.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav.active {
    max-height: 400px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .nav ul li {
    padding: 10px 0;
  }
}

