/* ========================================
   LANORA STRATEGIES — STYLE.CSS
   Premium Minimal White Aesthetic
   Clean ✦ Glass ✦ Motion ✦ Depth
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
  --text: #111;
  --subtext: #666;
  --bg: #fff;
  --bg-alt: #fafafa;
  --accent: #e7f0ff;
  --shadow: 0 10px 40px rgba(0,0,0,0.06);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* -------------------------------
   Navbar (Glass Floating Pill)
-------------------------------- */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  border-radius: 60px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 18px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  opacity: 0.8;
  transition: 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* -------------------------------
   Sections
-------------------------------- */
.section {
  padding: 120px 8vw;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--text);
}

h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

p {
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* -------------------------------
   Hero Section
-------------------------------- */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0,0,0,0.03), transparent 60%);
  animation: floatLight 10s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes floatLight {
  from { transform: translate(0, 0); }
  to { transform: translate(40px, 40px); }
}

.hero .container {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
  animation: fadeSlide 1.3s ease forwards;
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--subtext);
  margin-bottom: 30px;
}

.hero .sub {
  max-width: 600px;
  margin: 0 auto 35px;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------
   Buttons
-------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.primary-btn {
  background: #111;
  color: #fff;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dark-btn {
  background: #111;
  color: #fff;
}

.dark-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* -------------------------------
   Cards (How Section)
-------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* -------------------------------
   Video Grid (Quality Section)
-------------------------------- */
.quality .note {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 40px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-item video {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-item:hover video {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.credit {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}

.credit a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.credit a:hover {
  text-decoration: underline;
}

/* -------------------------------
   Website Grid
-------------------------------- */
.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.site-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.site-grid img:hover {
  transform: translateY(-6px);
}

/* -------------------------------
   Pricing
-------------------------------- */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 30px;
  flex: 1 1 280px;
  max-width: 400px;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.highlight-card {
  background: var(--accent);
}

.price-card h4 {
  margin: 10px 0 20px;
  font-size: 1.5rem;
}

.price-card ul {
  list-style: none;
  text-align: left;
  color: var(--subtext);
  line-height: 1.8;
}

/* -------------------------------
   Clients
-------------------------------- */
.clients p {
  max-width: 700px;
  margin: 0 auto;
}

/* -------------------------------
   Contact Section
-------------------------------- */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
}

.contact-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 40px;
  flex: 1 1 280px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* -------------------------------
   Footer
-------------------------------- */
.footer {
  background: var(--bg-alt);
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  color: var(--subtext);
}

/* -------------------------------
   Animations (Scroll Fade)
-------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------
   Responsive
-------------------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
  .section {
    padding: 90px 6vw;
  }
}

/* =====================================================
   📱 MOBILE OPTIMIZATION
   Make Lanora beautiful on phones & tablets
===================================================== */

/* Tablets & small laptops (below 992px) */
@media (max-width: 992px) {
  .navbar {
    width: 80%;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 2rem;
  }

  .video-grid {
    gap: 1.5rem;
  }
}

/* Mobile view (below 768px) */
@media (max-width: 768px) {
  /* --- NAVBAR --- */
  .navbar {
    width: 90%;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    top: 1rem;
  }

  .navbar ul {
    gap: 0.8rem;
  }

  .navbar a {
    padding: 0.3rem 0.6rem;
  }
  .navbar ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.navbar li {
  flex: 0 1 auto;
}

.navbar a {
  white-space: nowrap;
}


  /* --- HERO SECTION --- */
  .hero {
    padding: 6rem 1.2rem 4rem 1.2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero .cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  /* --- QUALITY VIDEOS SECTION --- */
  .video-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .video-grid video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
  }

  /* --- PRICING SECTION --- */
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .price-card {
    width: 90%;
    max-width: 400px;
  }

  /* --- CONTACT SECTION --- */
  .contact-section {
    text-align: center;
    padding: 4rem 1.5rem;
  }

  .contact-details {
    flex-direction: column;
    gap: 1.2rem;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.9rem;
    color: white !important; /* ensures white text */
  }

  /* --- GENERAL ADJUSTMENTS --- */
  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .navbar {
    width: 95%;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
  }

  .price-card h3 {
    font-size: 1.2rem;
  }

  .price-card ul li {
    font-size: 0.9rem;
  }

  footer p {
    font-size: 0.8rem;
  }
}
