* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

body {
  background: white;
  color: #333;
  line-height: 1.6;
}

/* Header */

header {
  background: royalblue;
  color: white;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px:
  text-decoration: none;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  
}

.logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin: 0 12px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

header nav ul li a:hover {
  color: gold;
  background: black;
}

/* Hero */

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(65, 105, 225, 0.75)),
    url("photos/Woodroof.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 3.7rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: gold;
  color: #111;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* Sections */

.section {
  padding: 80px 8%;
  text-align: center;
}

.section h2,
.about h2,
.page-header h1 {
  font-size: 2.5rem;
  color: royalblue;
  margin-bottom: 25px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  border-top: 6px solid royalblue;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: royalblue;
  margin-bottom: 15px;
}

/* Owners Section */

.owners-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 90px 8%;
  background: #f8f8f8;
  align-items: center;
}

.owners-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.owners-content h2 {
  color: royalblue;
  font-size: 2.7rem;
  margin-bottom: 25px;
}

.owners-content blockquote {
  font-size: 1.3rem;
  line-height: 1.8;
  border-left: 5px solid gold;
  padding-left: 20px;
  margin-bottom: 25px;
  color: #333;
}

.owners-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.owners-content h4 {
  color: royalblue;
}

/* About */

.about {
  background: white;
  padding: 80px 8%;
}

.about div {
  max-width: 850px;
  margin: auto;
}

.about ul {
  margin-top: 20px;
  padding-left: 25px;
}

.about li {
  margin-bottom: 10px;
}

/* Page Header */

.page-header {
  background: linear-gradient(135deg, royalblue, #111);
  color: white;
  text-align: center;
  padding: 80px 8%;
}

.page-header h1 {
  color: white;
}

/* Portfolio */

.portfolio-grid {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.project {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.project:hover {
  transform: scale(1.02);
}

.project img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: zoom-in;
  transition: 0.3s ease;
}

.project img:hover {
  transform: scale(1.04);
}

.project h3 {
  color: royalblue;
  padding: 20px 20px 5px;
}

.project p {
  padding: 0 20px 25px;
}

/* Contact */

.contact-section {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-form,
.contact-info {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: royalblue;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 22px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  background: royalblue;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: black;
  color: gold;
}

.contact-info h2 {
  color: royalblue;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
}

/* Zoom Modal */

.zoomable {
  transition: 0.3s ease;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-modal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}

/* Footer */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px;
}

/* Mobile */

@media (max-width: 900px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px 25px;
  }

  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  header nav ul li {
    margin: 6px;
  }

  .hero {
    min-height: 75vh;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cards,
  .owners-section,
  .portfolio-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .owners-image img {
    height: 350px;
  }
}

@media (max-width: 500px) {
  .logo {
    flex-direction: column;
    font-size: 1.1rem;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  .section,
  .owners-section,
  .about,
  .portfolio-grid,
  .contact-section {
    padding: 55px 6%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .owners-content h2 {
    font-size: 2rem;
  }

  .owners-content blockquote {
    font-size: 1.1rem;
  }
}