* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: white;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('Hotels\ Business\ Website\ \(1\).png') center/cover no-repeat;
  animation: slowZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

/* Headings */
h3 {
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 400;
}

h1 {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 10px 0;
}

h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Haircuts Grid */
.haircuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 30px 0;
  width: 80%;
}

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  min-height: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.tile.red { background: #ff004c; }
.tile.orange { background: #ff4c00; }
.tile.gray { background: #e0e0e0; color: black; }
.tile.pink { background: #ff3366; }
.tile.purple { background: #9a00ff; }
.tile.tall { grid-row: span 2; }
.tile.photo { background-size: cover; background-position: center; }

/* Buttons */
.btn {
  text-decoration: none;
  background: white;
  color: black;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: black;
  color: white;
}

/* Text Animations */
.fade-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay1 { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }
.delay3 { animation-delay: 0.9s; }
.delay4 { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background Zoom Animation */
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Footer */
.footer {
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
  color: #ccc;
}
/* Responsive for tablets */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .haircuts-grid {
    width: 90%;
    gap: 10px;
  }

  .tile {
    font-size: 16px;
    padding: 15px;
    min-height: 100px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Responsive for mobile phones */
@media (max-width: 480px) {
  h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .haircuts-grid {
    grid-template-columns: 1fr 1fr; /* two columns instead of too many */
    gap: 8px;
    width: 95%;
  }

  .tile {
    font-size: 14px;
    padding: 12px;
    min-height: 80px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  /* Stack footer columns vertically */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


