body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #F2F2F2;
}

nav {
    background: #000;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover,
nav a.active {
    color: #B30000;
}

.hero {
    height: 100vh;
    background: linear-gradient(black, #B30000);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 60%;
    max-width: 600px;
}

.page-header {
    background: #B30000;
    color: white;
    padding: 40px;
    text-align: center;
}

.content, .services-grid, .contact-container {
    padding: 40px;
}

.services-grid {
    display: flex;
    gap: 20px;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
}

button {
    background: #B30000;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
}

.about-page {
    background: linear-gradient(135deg, #000000, #8b0000);
    color: white;
    min-height: 100vh;
    padding: 40px;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px); /* subtract navbar height */
  padding: 40px 20px;
}

.about-content {
  max-width: 900px;
  background: rgba(0, 0, 0, 0.4); /* subtle glass effect */
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.about-content h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 20px;
}

.services-page {
  background: linear-gradient(135deg, #000000, #b30000);
  color: white;
  min-height: 100vh;
  padding: 40px;
}

.service-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.service-box h2 {
  color: white;
  margin-bottom: 10px;
}

.service-box p {
  color: white;
  line-height: 1.6;
}

.contact-page {
  background: linear-gradient(135deg, #000000, #b30000);
  color: white;
  min-height: 100vh;
  padding: 40px;
}

.owner-info {
  margin-bottom: 25px;
}

.contact-content h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.services-header {
  background: rgba(0, 0, 0, 0.4);   /* matches the service boxes */
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}


.contact-content p {
  margin-bottom: 15px;
}

.gallery-page {
  background: linear-gradient(135deg, #000000, #b30000);
  color: white;
  min-height: 100vh;
  padding: 40px;
}

.gallery-container {
  max-width: 1000px;
  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}
