/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f1f3f8;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* LOGO POSITION */
.logo-circle {
  position: absolute;
  top: 80px;         /* Moves it down from the top */
  left: 70px;        /* Moves it slightly inward from the left */
  width: 200px;      /* Increases the size of the circle */
  height: 200px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* HEADER */
header {
  background: url('background1.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 20px 40px;
  position: relative;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
}

.tagline {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #bbb;
  margin: 40px auto;
}

.tagline::before,
.tagline::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #bbb;
  margin: 10px 0;
}


/* NAVIGATION */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-box {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 12px 25px;
  transition: background 0.3s ease, transform 0.3s;
}

.nav-box:hover {
  background: #f0a500;
  transform: translateY(-3px);
}

.nav-box a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

/* SECTION CARDS */
.card {
  background: white;
  margin: 40px auto;
  padding: 40px 25px;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.01);
}

.card h2 {
  color: #f0a500;
  margin-bottom: 20px;
  font-size: 2rem;
  border-left: 6px solid #f0a500;
  padding-left: 10px;
}

/* SERVICES GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.box {
  padding: 15px;
  background: #fafafa;
  border-left: 4px solid #101010;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.box:hover {
  border-left-color: #f0a500;
  transform: translateX(5px);
}

.box h3 {
  margin-bottom: 10px;
  color: #333;
}

/* FORM STYLING */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #f0a500;
  outline: none;
}

button {
  padding: 12px 30px;
  background: #101010;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #f0a500;
  color: #101010;
}

/* FOOTER */
footer {
  background: #101010;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}


.header-content {
  text-align: center;
}
.contact-info {
  margin-top: 20px;
  text-align: center;
}

.contact-info a {
  color: #f0a500;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-info-inline {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}

.contact-info-inline span {
  margin: 0 10px;
  white-space: nowrap;
}

.contact-info-inline a {
  color: #f0a500;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-inline a:hover {
  text-decoration: underline;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

#flyerGallery {
  display: none; /* hidden by default */
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery img.service-img {
  width: calc(25% - 15px);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery img.service-img:hover {
  transform: scale(1.03);
}

.view-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f0a500;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background-color: #e69500;
}

.box a {
  color: #f0a500;
  font-weight: 600;
  text-decoration: none;
}

.box a:hover {
  text-decoration: underline;
}

.view-instagram {
  text-align: center;
  margin-top: 30px;
}

.view-instagram a {
  color: #f0a500;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-instagram a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 600px) {
  /* give the header more top space so content drops below the logo */
  header {
    padding-top: 220px;
  }

  /* center the logo and reduce the size on phone */
  .logo-circle {
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
  }

  /* reduce big heading size on phone */
  h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.2rem;
    margin: 20px auto;
  }

  nav {
    gap: 12px;
  }

  .nav-box {
    padding: 10px 18px;
  }
}
