/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@33a5132..700&display=swap');

/* Base Design System Variables */
:root {
  /* Brand Colors */
  --color-primary-green: #3B7A57;
  --color-accent-beige: #F5F2E7;
  --color-soft-white: #FFFFFF;
  --color-deep-charcoal: #222222;
  --color-muted-gold: #C9A66B;

  /* Package Theme Colors */
  --color-platinum-bg: #F8F8FF;
  --color-platinum-accent: #C0C0C0;
  --color-platinum-button: #C0C0C0;
  --color-platinum-button-hover: #A0A0A0;

  --color-gold-bg: #FDF5E6;
  --color-gold-accent: #FFD700;
  --color-gold-button: #FFD700;
  --color-gold-button-hover: #DAA520;

  --color-lite-bg: #F5F2E7;
  --color-lite-accent: #3B7A57;
  --color-lite-button: #3B7A57;
  /* --color-lite-button-hover: #2A5A42; */

  /* Semantic Colors */
  --color-text-primary: var(--color-deep-charcoal);
  --color-text-secondary: #626971;
  --color-background-primary: var(--color-soft-white);
  --color-background-secondary: var(--color-accent-beige);

  /* Typography */
   font-family: 'Montserrat', sans-serif;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

  /* Layout */
  --header-height: 80px;
  --container-max-width: 1200px;

  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
   font-family: 'Montserrat', sans-serif;
  font-size: var(--font-size-body);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-background-primary);
  padding-top: var(--header-height);
  background-color: #f7fdf7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
   font-family: 'Montserrat', sans-serif;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-base);
}

a {
  color: var(--color-primary-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}




/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Navigation barr */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  height: var(--header-height);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo {
    max-height: 32px;
  }
}

.nav-brand h2 {
  color: var(--color-primary-green);
  font-size: 1.4rem;
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
  .nav-brand h2 {
    font-size: 1.27rem;
  }
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-background-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    display: flex;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    left: 0;
  }
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-green);
  background-color: rgba(59, 122, 87, 0.1);
}

.nav-link:focus {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-normal);
  border-radius: 1px;
}
.interest-btn {
    display: inline-block;
    background: #3a5132;
    color: #fff;
    padding: 0.6rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.nav-social-mobile {
  display: none; /* Hidden by default */
  margin-top: auto;
  padding-bottom: 2rem;
  text-align: center;
}

.nav-social-mobile a {
  font-size: 1.8rem;
  color: var(--color-primary-green);
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.nav-social-mobile a:hover {
  color: #2A5A42;
}

@media (max-width: 768px) {
  .nav-social-mobile {
    display: block;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
  }
}

/* cardd code */

 .blog-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
    }

    .blog-header h1 {
      font-size: 35px;
      margin-bottom: 20px;
      color: #3a5132;
      padding-top: 30px;
    }

    .blog-header p {
      font-size: 16px;
      color: #3a5132;
      line-height: 1.6;
    }
/* Mobile view (screens 768px and below) */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 24px;   /* smaller heading */
    margin-bottom: 15px;
    padding-top: 15px;
    text-align: center; /* optional: center align on mobile */
  }

  .blog-header p {
    font-size: 14px;   /* smaller text */
    line-height: 1.5;
    text-align: center; /* optional */
    padding: 5px 15px;   /* give some breathing space */
  }
}

 .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 45px;
    }

    .card {
      background: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

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

    .card img {
      width: 100%;
      object-fit: cover;
      height: auto;
    }
   
  



    .card-content {
      padding: 20px;
      text-align: center;
    }

    .card-category {
      color: #d35400;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .card-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #3a5132;
    }

    .card-date {
      color: #7f8c8d;
      font-size: 14px;
      font-style: italic;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .container {
        grid-template-columns: 1fr;
      }
    }

    .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}



    
/* Footer */
.porsche-footer {
  font-size: 0.9rem;
  padding: 1.5rem 8%;
  border-top: 1px solid #ddd;
  color: #3a5132;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7fdf7;
  flex-wrap: wrap;
}

.porsche-footer .logo {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.porsche-footer a {
  color: #3a5132;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.porsche-footer a:hover {
  color: #3b7a57;
}

/* Social Media Icons */
.footer-right a {
  margin-left: 12px;
  font-size: 1.5rem;
  color: #3a5132;
  transition: all 0.5s ease;
}

.footer-right a:hover {
  color: #3a8f60;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .porsche-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 1.35rem;
  }
}





/* Floating Button (Mobile Only) */
.floating-btn {
  position: fixed;
  bottom: -60px; /* hidden by default */
  left: 50%;
  transform: translateX(-50%);
  background: #3a5132;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: bottom 0.4s ease;
  z-index: 999;
}

/* Show button when active */
.floating-btn.show {
  bottom: 20px;
}

/* Mobile Only */
@media (min-width: 769px) {
  .floating-btn {
    display: none;
  }
}
