* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f6f8;
  color: #222;
}

/* Watermark logo */
.watermark {
  position: fixed;
  inset: 0;
  background: url("images/Picture1.jpg") center no-repeat;
  background-size: 55%;
  opacity: 0.04;
  z-index: -1;
}

/* Header */
.top-header {
  background: linear-gradient(90deg, #4b0000, #8b0000);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 90px;
}

/* Navbar */
.navbar {
  background: #1c1c1c;
  text-align: center;
}

.navbar a {
  color: white;
  padding: 14px 22px;
  display: inline-block;
  text-decoration: none;
}

.navbar a:hover {
  background: #8b0000;
}

/* Hero */
.hero {
  background: #ffffff;
  padding: 40px;
  text-align: center;
}

.hero h2 {
  color: #8b0000;
}

/* Sections */
.about, .details, .owner-section {
  padding: 35px;
  background: white;
  margin: 20px;
  border-radius: 8px;
}

/* Owner */
.owner-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.owner-card img {
  width: 140px;
  border-radius: 8px;
  border: 2px solid #8b0000;
}

/* Details */
.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.detail-box {
  background: #fafafa;
  padding: 20px;
  border-left: 5px solid #8b0000;
}

/* Gallery */
.gallery-grid {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #1c1c1c;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Services */
.services-section {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  border-left: 6px solid #8b0000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  color: #8b0000;
  margin-bottom: 10px;
}
