/* Buildify Main Stylesheet
   Author: Claude
   Version: 1.0
   Description: Modern, responsive stylesheet for Buildify renovation company
*/

/* ---------- RESET & BASE STYLES ---------- */
:root {
  --primary: #b98947;
  --primary-light: #d4a968;
  --primary-dark: #96703a;
  --secondary: #1E2A3A;
  --secondary-light: #2D3A4A;
  --secondary-dark: #0F1A2A;
  --light: #F8F8F8;
  --light-gray: #EAEAEA;
  --mid-gray: #AAAAAA;
  --dark-gray: #666666;
  --text: #333333;
  --white: #FFFFFF;
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --border-radius: 5px;
  --border-radius-lg: 10px;
  --container-width: 1320px;
  --header-height: 80px;
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  color: var(--secondary);
  font-weight: 600;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--dark-gray);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  border: none;
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* ---------- HEADER & NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: var(--header-height);
  transition: var(--transition);
}

.header-scrolled {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img, .logo svg {
  height: 300px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover:after,
.nav-item.active .nav-link:after {
  width: 100%;
}

.nav-item.active .nav-link {
  color: var(--primary);
}

.header-buttons {
  display: flex;
  align-items: center;
}

.header-buttons .btn {
  margin-left: 15px;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
  top: 0px;
}

.mobile-toggle span:nth-child(2),
.mobile-toggle span:nth-child(3) {
  top: 9px;
}

.mobile-toggle span:nth-child(4) {
  top: 18px;
}

.mobile-toggle.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile-toggle.open span:nth-child(2) {
  transform: rotate(45deg);
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-toggle.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.lang-select {
  position: relative;
  margin-left: 20px;
}

.lang-select select {
  appearance: none;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  padding-right: 15px;
  cursor: pointer;
  color: var(--secondary);
}

.lang-select:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--secondary);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

/* ---------- SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
  font-weight: 600;
}

.service-description {
  color: var(--dark-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ---------- ABOUT SECTION ---------- */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.about-image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary);
  border-radius: var(--border-radius-lg);
  top: -20px;
  left: -20px;
  z-index: -1;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.about-features {
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.about-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  margin-right: 10px;
}

/* ---------- PROJECTS/PORTFOLIO SECTION ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 280px;
}

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

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: var(--white);
  transform: translateY(0);
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-category {
  font-size: 0.9rem;
  opacity: 0.8;
}

.project-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
}

.project-card:hover .project-button {
  opacity: 1;
  transform: translateY(0);
}

.project-button svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ---------- BLOG SECTION ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.blog-views {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-left: 15px;
}

.blog-views svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--secondary);
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--dark-gray);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Single Blog Post */
.single-post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 40px;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.post-meta {
  display: flex;
  align-items: center;
  color: var(--mid-gray);
  font-size: 0.9rem;
}

.post-meta > div {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.post-meta svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
}

.post-content {
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--secondary);
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 35px 0 15px;
  color: var(--secondary);
}

.post-content ul,
.post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 10px;
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.related-posts {
  margin-top: 60px;
  border-top: 1px solid var(--light-gray);
  padding-top: 40px;
}

.related-posts-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--secondary);
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  position: relative;
}

.testimonial-wrapper {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.testimonial-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 15px;
}

.testimonial-content {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.testimonial-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--mid-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path-to-pattern.svg') repeat;
  opacity: 0.05;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ---------- PROCESS SECTION ---------- */
.process-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-icon {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  position: relative;
}

.process-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.process-content {
  flex: 1;
  padding: 0 20px;
}

.process-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.process-description {
  color: var(--dark-gray);
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  width: 2px;
  background-color: var(--primary);
  opacity: 0.2;
  z-index: 0;
}

/* ---------- CONTACT SECTION ---------- */
.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--secondary);
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  flex: 0 0 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 141, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.contact-info-content p,
.contact-info-content a {
  color: var(--dark-gray);
}

.contact-info-content a:hover {
  color: var(--primary);
}

.contact-form {
  flex: 1;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 141, 0, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img,
.footer-logo svg {
  height: 50px;
  width: auto;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  flex: 0 0 25px;
  color: var(--primary);
  margin-right: 10px;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- RESPONSIVE STYLES ---------- */
@media screen and (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-content {
    gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 99;
  }

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

  .nav-item {
    margin: 0 0 20px;
    width: 100%;
  }

  .mobile-toggle {
    display: block;
  }

  .header-buttons .btn {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image:before {
    display: none;
  }

  .contact-container {
    flex-direction: column;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
  }

  .process-icon {
    flex: 0 0 auto;
    margin-bottom: 20px;
  }

  .process-line {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .services-grid,
  .projects-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --header-height: 60px;
  }

  .hero {
    min-height: 450px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transition: all 0.6s ease-in-out;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom styling for custom components - can override or add as needed */