/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* 1. Banner (hero) - easy to change background image or color */
.banner {
  height: 10vh;                    /* Adjust height here */
  min-height: 400px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('images/Banner1.png') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-image {
  width: 100%;              /* Fits the width of its container */
  max-width: 800px;         /* Prevents it from getting too wide */
  height: auto;             /* Keeps proportions (no cropping!) */
  margin-top: 20px;         /* Space above the image */
  margin-bottom: 2rem;      /* adjust as needed – bigger gap after images */display: block;           /* Ensures it acts like a block (no inline weirdness) */
  border-radius: 12px;      /* Optional: nice rounded corners to match design */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Optional: subtle shadow */
}
.mainbody {
  align-items: center;

}

.featured-art-piece {
  width: 100%;              /* Fits the width of its container */
  max-width: 370px;         /* Prevents it from getting too wide */
  height: auto;             /* Keeps proportions (no cropping!) */
  margin-top: 20px;         /* Space above the image */
  display: block;           /* Ensures it acts like a block (no inline weirdness) */
  border-radius: 12px;      /* Optional: nice rounded corners to match design */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Optional: subtle shadow */
}

.hero-illustration-text {
  max-width: 370px;         /* Prevents it from getting too wide */
}

.speculative-text  {
  max-width: 370px;         /* Prevents it from getting too wide */
}
.service-bar {
  /*unused/ position: sticky;           /* stays visible when scrolling past it */
  top: 0;                     /* sticks to top of viewport */
  z-index: 900;               /* above most content */
  
  display: flex;
  flex-wrap: wrap;            /* allows buttons to go to next row on small screens */
  justify-content: center;    /* centers the whole group */
  gap: 12px 16px;             /* space between buttons – horizontal & vertical */
  
  padding: 14px 20px;
  background: rgba(20, 20, 35, 0.35);   /* lowered from 0.92 → much lighter */
  /*unused/ background: rgba(20, 20, 35, 0.92);   /* semi-transparent dark bg */
  backdrop-filter: blur(10px);
  /*unused/ backdrop-filter: blur(10px);          /* frosted glass effect – very 2025 */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.service-btn {
  /* Base size – they stay roughly equal */
  min-width: 140px;           /* minimum width – adjust as you like */
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);  /* shiny purple-indigo gradient */
  border-radius: 12px;
  box-shadow: 
    0 4px 15px rgba(99, 102, 241, 0.4),   /* glow */
    inset 0 1px 0 rgba(255,255,255,0.18); /* inner shine */
  
  transition: all 0.22s ease;
  white-space: nowrap;        /* prevents text wrapping inside button */
}

.service-btn:hover,
.service-btn:focus {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 
    0 10px 30px rgba(99, 102, 241, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); /* shift gradient on hover */
}

/* Optional: make it a bit smaller & tighter on mobile */
@media (max-width: 768px) {   /* tablets & phones */
  .service-bar {
    padding: 10px 12px;           /* less vertical & horizontal padding */
    gap: 8px 10px;                /* tighter spacing between buttons */
  }
  
  .service-btn {
    min-width: 110px;             /* was 140px → smaller */
    padding: 8px 14px;            /* smaller padding inside button */
    font-size: 13px;              /* readable but not huge */
    border-radius: 10px;          /* slightly softer corners */
  }
}

@media (max-width: 480px) {   /* small phones */
  .service-btn {
    min-width: 90px;              /* even smaller for very narrow screens */
    padding: 7px 10px;
    font-size: 12.5px;
  }
}

h2, p {
  text-align: center;
  max-width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.displayImage {
  max-width: 500px;
  display: block;           /* ← very important – images are inline by default */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.banner-content h1 {
  font-size: 10rem;
  margin-bottom: 0.5rem;
}

.banner-content p {
  font-size: 5rem;
  opacity: 0.9;
}

/* 2 & 3. Intro + Featured side by side */
.intro-featured {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.introduction,
.featured-art {
  flex: 1;
  min-width: 300px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: #222;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.15s ease;
  margin: 12px;
}

.home-btn:hover {
  background-color: #444;
  transform: translateY(-1px);
}

.home-btn {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  padding: 12px 28px;
  background: rgba(30, 30, 40, 0.92);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease;
}

.home-icon {
  display: inline-block;
  font-size: 28px;
  padding: 12px;
  color: #eee;
  text-decoration: none;
  transition: transform 0.2s;
}

.home-icon:hover {
  transform: scale(1.15);
  color: white;
}

/* Optional - nicer modern look */
.home-btn.modern {
  background: linear-gradient(145deg, #2c3e50, #1a2634);
  border: 1px solid #444;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.introduction h2,
.featured-art h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.introduction p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.featured-art img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-art p {
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
  color: #777;
}

/* Button style (used in intro) */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #c0392b;
}

/* 4. Services grid */
.services {
  max-width: 1200px;
  margin: 100px auto 140px;   /* Extra bottom margin so it's not right at the bottom */
  padding: 0 20px;
  text-align: center;
}

.services h2 {
  font-size: 3rem;
  margin-bottom: 60px;
  color: #2c3e50;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-item h3 {
  padding: 20px 20px 8px;
  font-size: 1.6rem;
  color: #2c3e50;
}

.service-item p {
  padding: 0 20px 24px;
  color: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #2c3e50;
  color: white;
  font-size: 0.95rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .intro-featured {
    flex-direction: column;
    gap: 50px;
  }
  .banner-content h1 {
    font-size: 3rem;
  }
  .banner-content p {
    font-size: 1.3rem;
  }
}