@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
  /* Colors */
  --color-primary: #3e4264;       /* Indigo */
  --color-primary-dark: #2f324c;
  --color-secondary: #393e46;     /* Dark Charcoal */
  --color-accent: #8ea586;        /* Sage Green */
  --color-bg-light: #f5eedd;      /* Cream */
  --color-bg-white: #FFFFFF;
  --color-bg-dark: #2a2d33;
  --color-text-main: #393e46;
  --color-text-light: #555c66;
  --color-border: #dcd4c3;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Belleza', sans-serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --header-height: 100px; /* Increased to accommodate larger logo */
  --section-spacing: 5rem;
  --border-radius: 4px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  padding-top: var(--header-height); /* Space for fixed header */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* =========================================
   2. Typography & Utilities
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--color-text-light); }

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: var(--section-spacing) 0;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-title span {
  display: block;
  font-family: var(--font-accent);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 1rem auto;
}

/* =========================================
   3. Navigation
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(245, 238, 221, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px; /* Made the logo larger */
  width: auto;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
}

.desktop-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 0.95rem;
  position: relative;
}

.desktop-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.desktop-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--color-bg-light);
  padding: 2rem;
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-menu a {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--color-border);
}

/* =========================================
   4. Hero Section
   ========================================= */
.hero {
  position: relative;
  height: 85vh; /* Modern height, not full 100vh sometimes is better */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

/* =========================================
   5. Partner / Trust Banner (Strategic Placement)
   ========================================= */
.trust-bar {
  background-color: #fff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.trust-bar img.partner-banner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  opacity: 0.9;
  filter: grayscale(20%);
  transition: var(--transition);
}
.trust-bar img.partner-banner:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* =========================================
   6. Services Section (Grid)
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  group: hover;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

/* =========================================
   7. Carousel / Brands
   ========================================= */
.brand-carousel {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
}
/* Swiper styles are loaded from library, just minimal overrides */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide img {
  max-height: 60px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.swiper-slide img:hover {
  opacity: 1;
}

/* =========================================
   8. About & Values
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-top: -2px;
}

/* =========================================
   9. Gallery
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-bg {
  transform: scale(1.1);
}

/* =========================================
   10. Contact
   ========================================= */
.contact-section {
  background-color: var(--color-secondary);
  color: #fff;
}
.contact-section h2, .contact-section h3 {
  color: #fff;
}
.contact-section p {
  color: rgba(255,255,255,0.7);
}

.contact-layout {
  display: grid;
  gap: 3rem;
}
@media(min-width: 800px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: var(--border-radius);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.1);
}

.contact-details {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* =========================================
   11. Footer
   ========================================= */
.footer {
  background-color: var(--color-bg-dark);
  color: #fff;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover {
  color: var(--color-primary);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* =========================================
   13. Blog Section
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  color: var(--color-primary);
  gap: 0.5rem;
}

/* =========================================
   14. Social Media Feed (Instagram Style)
   ========================================= */
.social-feed {
  background-color: #fff;
  padding-bottom: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px; /* Small gap for grid look */
}

@media (min-width: 600px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-overlay svg {
  color: #fff;
  width: 32px;
  height: 32px;
}

.insta-item:hover .insta-img {
  transform: scale(1.1);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}

.social-header {
  text-align: center;
  margin-bottom: 3rem;
}

.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* =========================================
   12. Responsive
   ========================================= */
@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .mobile-menu-btn { display: block; }
  .navbar .container { padding: 0 1.5rem; }
}
