/* Payless Moving & Deliveries – style.css */
/* Color palette – user can adjust */
:root {
  --primary-green: #006838;
  --accent-orange: #ff6600;
  --bg-light: #f9f9f9;
  --text-dark: #222222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.5rem 2rem;
  border-bottom: 2px solid var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  height: 80px;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar nav a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.navbar nav a:hover {
  color: var(--accent-orange);
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/logo_metallic.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.cta-button {
  background: var(--accent-orange);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.cta-button:hover {
  background: #e65c00;
}

/* Services Grid */
.services-grid {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.services-grid h2 {
  margin-bottom: 2rem;
  color: var(--primary-green);
}

.service-card {
  display: inline-block;
  width: 320px;
  margin: 1.5rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  vertical-align: top;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 0.5rem 0;
  color: var(--primary-green);
}

.service-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
}

/* About */
.about {
  padding: 5rem 2rem;
  background: var(--primary-green);
  color: #fff;
  text-align: center;
}

.featured-detail {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.featured-detail h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.featured-detail p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact */
.contact {
  padding: 3rem 2rem;
  background: #fff;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 500;
}

.contact input,
.contact textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

.contact button:hover {
  background: #0055aa;
}

.review-link {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.review-link a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
}

.review-link a:hover {
  color: var(--accent-orange);
}

/* Instagram Feed Section */
.instagram-feed {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: center;
}

.instagram-feed .container {
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-feed h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.instagram-feed p {
  color: #666;
  margin-bottom: 2.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  justify-items: center;
}

.instagram-post {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-post:hover {
  transform: translateY(-5px);
}

.instagram-post blockquote {
  margin: 0 !important;
  width: 100% !important;
  border: none !important;
  padding: 0 !important;
}

.insta-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.insta-img:hover {
  opacity: 0.9;
}

.insta-cta {
  margin-top: 2rem;
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.cta-button.secondary:hover {
  background: var(--primary-green);
  color: #fff;
}



footer {
  background: var(--text-dark);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: var(--accent-orange);
  transform: scale(1.1);
}