HTML, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  color: #fff;
  background: #181818;
}
body {
  line-height: 1.6;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.03em;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; /* bold for headings */
}
body {
  font-weight: 400; /* regular for body */
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4vw;
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.7);
  opacity: 0;
  transition: opacity 1s;
}
.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0; left: 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-logo {
  width: 280px;
  max-width: 70vw;
}

.portfolio-section {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.portfolio-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.portfolio-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  margin: 1.5rem 0 0 0;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #181818;
}
.btn-dark-outline {
  border: 2px solid #181818;
  background: #f7f5f2;
  color: #181818;
}
.btn-dark-outline:hover {
  background: #181818;
  color: #f7f5f2;
}
.btn-blue {
  background: #1B73E9;
  color: #fff;
  border: none;
}
.btn-blue i {
  margin-right: 0.5em;
}
.about-btn-wrapper {
  text-align: center;
  margin-top: 2rem; /* optional: adds space above the button */
}
.about-section {
  background: #f7f5f2;
  color: #181818; 
  text-align: center;
  padding: 3rem 0;
}
.services-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: inline-block;   /* Add this to center the list but left-align text */
  text-align: left;
}

.services-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.6em;
  height: 0.6em;
  background: #0074d9;
  border-radius: 50%;
  display: inline-block;
}
.testimonials-section {
  background: #fff;
  color: #181818;
  text-align: center;
  padding: 3rem 0;
}
.testimonials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-box {
  background: #f0f0f0;
  color: #181818;
  padding: 2rem;
  border-radius: 8px;
  flex: 1 1 300px;
  text-align: left;
  position: relative;
}

.instagram-section {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
.instagram-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.instagram-gallery img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}
.insta-link {
  display: inline-block;
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 1rem;
  text-decoration: none;
}
.insta-link i {
  margin-right: 0.5em;
}

.footer {
  display: flex;
  padding: 2rem 4vw;
  background: #1b1b1b;
  color: #fff;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-column {
  flex: 1 1 200px;
}
.footer-column.center {
  text-align: center;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  margin-left: 1rem;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}

/* CONTACT PAGE */
.contact-main {
  background: #f7f5f2;
  color: #181818;
  min-height: 100vh;
  padding: 4rem 0;
  text-align: center;
  display: flex;
  align-items: center;
}

.contact-main .container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-form label {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 0.25rem;
  background: #f7f5f2;
  color: #181818;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1B73E9;
  background: #fff;
}

.contact-form button {
  align-self: center;
  margin-top: 1.5rem;
  background: #181818;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

.contact-info {
  margin-top: 2.5rem;
  font-size: 1.1em;
  color: #555;
  background: #f7f5f2;
  padding: 1.25rem 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.contact-info a {
  color: #1B73E9;
  text-decoration: underline;
  word-break: break-all;
}
/* BLOG SECTION */
.blog-main {
  background: #fff;
  color: #181818;
  min-height: 100vh;
  padding: 4rem 0;
  text-align: center;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.blog-post {
  display: flex;
  background: #f7f5f2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
.blog-img-placeholder {
  width: 220px;
  height: 160px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content {
  padding: 2rem;
  flex: 1;
}
.blog-content h2 {
  margin-top: 0;
}
.blog-content a {
  display: inline-block;
  margin-top: 1em;
  color: #1B73E9;
  text-decoration: underline;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .testimonials, .portfolio-gallery, .instagram-gallery, .footer {
    flex-direction: column;
    align-items: center;
  }
  .blog-list {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 700px) {
  .blog-post {
    flex-direction: column;
    align-items: center;
  }
  .blog-img-placeholder, .blog-img-placeholder img {
    width: 100%;
    height: 180px;
  }
  .blog-content {
    padding: 1rem;
  }
}
