/* Page-specific styles for index.html (home) */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--cream) 50%, var(--mint) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(129,178,154,0.2) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
  max-width: 600px;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.hero h1 span {
  color: var(--sage-dark);
  font-style: italic;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(224,122,95,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover { background: var(--navy); color: white; }

.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
}
.hero-float-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 20%; right: 48%; animation-delay: 0s; }
.hero-float-card.card-2 { top: 25%; right: 3%; animation-delay: 1s; }
.hero-float-card .card-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* ===== ABOUT ===== */
.about {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.about-image::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--sage);
  border-radius: 20px;
  z-index: -1;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-tags span {
  background: var(--mint-light);
  color: var(--sage-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}


/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 6rem 5%;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--navy);
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,52,54,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: white; font-size: 1.1rem; margin-bottom: 0.3rem; }
.portfolio-overlay span { color: var(--gold); font-size: 0.85rem; font-weight: 500; }


/* ===== SERVICES ===== */
.services {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--sage-dark);
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}


/* ===== PACKAGES ===== */
.packages {
  padding: 6rem 5%;
  background: var(--mint-light);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.package-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.package-card.featured {
  border-color: var(--sage);
  transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}
.package-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.package-list {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}
.package-list li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.package-list li i { color: var(--sage); font-size: 0.85rem; }
.package-btn {
  display: inline-block;
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  background: var(--mint-light);
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.package-btn:hover { background: var(--sage); color: white; }


/* ===== INSTAGRAM ===== */
.instagram {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.instagram-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item::after {
  content: '\f16d';
  font-family: 'Font Awesome 6 Brands';
  position: absolute;
  inset: 0;
  background: rgba(129,178,154,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-item:hover::after { opacity: 1; }


/* ===== WHAT BRANDS GET ===== */
.brands-get {
  padding: 6rem 5%;
  background: var(--cream);
}
.stats-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.stat-tile {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.stat-tile.featured-stat {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}
.stat-tile.featured-stat .stat-number,
.stat-tile.featured-stat .stat-label {
  color: white;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stats-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .stats-tiles { grid-template-columns: repeat(2, 1fr); }
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.brand-value-card {
  text-align: center;
  padding: 2rem;
}
.brand-value-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--sage-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.brand-value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.brand-value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}


/* ===== CTA ===== */
.cta {
  padding: 6rem 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: white;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.cta-btn-white { background: white; color: var(--sage-dark); }
.cta-btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cta-btn-outline { border: 2px solid white; color: white; background: transparent; }
.cta-btn-outline:hover { background: white; color: var(--sage-dark); }


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Mobile nav rules (.nav-links, .nav-cta, .mobile-toggle) now live in assets/base.css. */
  .hero { flex-direction: column; padding-top: 6rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-image { position: relative; right: 0; top: 0; transform: none; width: 80%; margin-top: 2rem; }
  .hero-float-card { display: none; }
  .hero-buttons { justify-content: center; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
}
