/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C5A572; /* Gold/bronze color from logo */
    --secondary-color: #8B7355; /* Darker shade of gold */
    --text-color: #ffffff;
    --dark-bg: #000000;
    --light-text: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo styles */
.logo {
    max-width: 200px;
    height: auto;
    animation: fadeInLogo 1.2s ease forwards;
    opacity: 0;
}


/* Hero Section */
.hero {
    min-height: 95vh;
    background: linear-gradient(to bottom, #000000 0%, #111111 100%);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    animation: slideFadeIn 1s ease-out forwards;
  opacity: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;

}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  z-index: 5;
}

/* On Hover */
.cta-button:hover {
  background-color: #b49059; /* Slightly deeper gold */
  box-shadow: 0 0 0 2px var(--primary-color), 0 0 10px rgba(197, 165, 114, 0.3);
  border-color: var(--primary-color);
  cursor: pointer;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
}

.scroll-indicator i {
    font-size: 2rem;
    opacity: 0.8;
}

.section-divider {
  line-height: 0;
  overflow: hidden;
  background: transparent;
  position: relative;
  z-index: 1;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

.mobile-divider {
  display: none;
  width: 80%;
  height: 1px;
  margin: 2rem auto;
  background-color: var(--primary-color);
  opacity: 0.6;
}


/*About Section*/
.about-section {
  background-color: #111;
  padding: 5rem 2rem;
  color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
}

.about-heading h2 {
  font-size: 3rem;
  color: #C5A572;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.75;
}

.about-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #C5A572;
  text-decoration: none;
  font-weight: 600;
}

.about-link:hover {
  text-decoration: underline;
}

.parallax-section {
  background-image: url('../assets/parallax_optimized.webp'); /* Replace with your image path */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 6rem 2rem;
  color: #fff;
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay for text visibility */
  padding: 4rem 2rem;
}

.parallax-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.parallax-content h2 {
  font-size: 2.5rem;
  color: #C5A572;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.parallax-content p {
  font-size: 1.15rem;
  line-height: 1.8;
}
/* Services Section */
.services {
            text-align: center;
            margin-bottom: 10px;
}
#services > div > h3{
    color: var(--primary-color);
    font-size: 2rem;
}
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid transparent;
  transition: all 0.6s ease;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Left-side animated border effect */
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: 
    opacity 0.4s ease,
    transform 0.6s ease-in-out;
  border-radius: 2px;
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: transform 0.6s ease;
}

.service-card:hover h3 {
  transform: scale(1.05);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--light-text);
  opacity: 0.9;
}

.why-choose {
  background-color: #111;
  padding: 5rem 2rem;
  text-align: center;
}

.why-choose h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.features {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 1.2rem;
}

/* === BLOG PREVIEW SECTION === */
.blog-preview {
    background: #111;
    padding: 5rem 2rem;
    color: var(--light-text);
    text-align: center;
}

.blog-preview h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.blog-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.blog-card a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card a:hover {
    text-decoration: underline;
}

.blog-card:hover {
    transform: translateY(-5px);
}


/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1), rgba(139, 115, 85, 0.1));
    color: var(--light-text);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Nav Styles */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--dark-bg);
  border-bottom: 1px solid rgba(197, 165, 114, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  max-height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  background: var(--text-color);
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}

.nav-toggle-label span::before {
  position: absolute;
  top: -8px;
}

.nav-toggle-label span::after {
  position: absolute;
  top: 8px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
     opacity: 0;
  transform: translateY(10px);
  }

      /* Reveal when toggle is checked */
    .nav-toggle:checked ~ nav .nav-menu {
      max-height: 400px;
      opacity: 1;
      transform: translateY(0);
    }

  .nav-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: var(--dark-bg);
    }
  

/* Reset opacity so animations can play */
  .nav-menu a {
      display: block;
      opacity: 0;
      transform: translateY(10px);
    }

  .nav-toggle:checked ~ nav .nav-menu {
      max-height: 400px;
    }
    
    .nav-toggle:checked ~ nav .nav-menu a {
      animation: navFade 1.2s ease forwards;
      animation-fill-mode: forwards;
    }
    
      .nav-toggle:checked ~ nav .nav-menu a:nth-child(1) {
        animation-delay: 0.3s;
      }
      .nav-toggle:checked ~ nav .nav-menu a:nth-child(2) {
        animation-delay: 0.6s;
      }
      .nav-toggle:checked ~ nav .nav-menu a:nth-child(3) {
        animation-delay: 0.9s;
      }
      .nav-toggle:checked ~ nav .nav-menu a:nth-child(4) {
        animation-delay: 1.2s;
      }
      .blog-cards {
        flex-direction: column;
        align-items: center;
    }

    .blog-card {
        width: 100%;
    }
    }
  @keyframes navFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


/*FOOTER*/
.site-footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 20px;
  font-size: 0.95em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
  margin-bottom: 30px;
}

.footer-column h4 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-column p,
.footer-column li {
  margin: 0 10px 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #d4af37;
}

.social-links i {
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  color: #aaa;
  font-size: 0.85em;
}


/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}



@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .scroll-indicator{
        left: 47%;
    }

        .mobile-divider {
        display: block;
      }
    
      .section-divider {
        display: none;
      }

    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
      .services {
        padding: 3rem 1rem;
      }
    
      .service-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05); /* softer contrast */
        border-left: 4px solid var(--primary-color); /* visible static accent */
      }
    
      .service-card::before {
        display: none; /* remove hover animation on mobile */
      }
    
      .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
      }
    
      .service-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
      }
    
      .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
      }
    
} 