/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f3e5c2; /* light beige */
  color: #000;
}

/* Navigation */
/* Hero Section */
.hero {
  position: relative;
  background-image: url("../images/sidhu\ 15.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header Over Hero */
/* Header Over Hero - Left-Aligned Nav */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 20px 40px;
}


.logo {
  font-weight: bolder;
  font-size: 28px;
  color: rgb(0, 0, 0);
}
.nav-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  text-transform: lowercase;

}


/* Hero Text Content */
.hero-overlay {
  position: relative;
  top: 300px; /* adjust as needed */
  padding: 0 40px;
  z-index: 1;
}


.hero h1 {
  font-size: 50px;
  font-weight: bolder;;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 48px;
  font-weight: bold;

  line-height: 1.2;
}

.cta-button {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #fffefed9;
  color: rgb(179, 30, 30);
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}


/* Intro Section */
section:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background-color: #ded6c3d7;
}

section:nth-of-type(2) p {
  width: 90%;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}

section:nth-of-type(2) img {
  width: 300px;
  height: auto;
  border-radius: 4px;
}

/* CTA Section */
section:nth-of-type(3) {
  background-color: #e8c1a8;
  padding: 40px;
  text-align: center;
}

section:nth-of-type(3) p {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

section:nth-of-type(3) a {
  background-color: #c75161;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #f3e5c2;
  padding: 30px 20px;
  text-align: center;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

footer ul li a {
  text-decoration: none;
  background-color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: 2px solid black;
  color: black;
  border-radius: 4px;
}

footer p {
  font-weight: bold;
  font-size: 26px;
}

/* Contact Page - Hero Section */

.contact-hero {
  background-color: #db7f7f;
  padding: 60px 20px;
  text-align: center;
}
.nav-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

/* Contact Form Section */
.contact-page {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.contact-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  background-color: #cfc6c6;
  border: none;
  padding: 12px;
  font-size: 14px;
  border-radius: 3px;
}

.contact-form button {
  background-color: #db7f7f;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  align-self: center;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0 20px;
  font-weight: bold;
}

/* === Responsive Layout === */

/* Tablet (width 768px and below) */
@media (max-width: 768px) {
  .gallery-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-row img {
    width: 48%;
    height: auto;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 10px 10px 0 0;
    font-size: 14px;
  }
}

/* Mobile (width 540px and below) */
@media (max-width: 540px) {
  .gallery-row img {
    width: 100%;
    margin-bottom: 10px;
  }

  .gallery {
    padding: 10px;
  }

  .logo {
    font-size: 18px;
  }

  nav a {
    font-size: 13px;
  }

  footer {
    font-size: 12px;
    padding: 15px;
  }
}




