* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    cursor: url('cursor.png') 16 16, auto;
    background-color: wheat;
  }
  button, a, .navbar, .nav-links a, .social-float a, .more-button, .feature-row, .artwork {
   cursor: url('cursor.png') 16 16, auto;
}

  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #692828;
    padding: 1rem 2rem;
    color: white;
    position: relative;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffd700;
  }
  
  .side-arch {
    position: absolute;
    top: 0;
    height: 100vh;
    z-index: 1; /* Ensure it stays behind main content if needed */
  }
  
  .left-arch {
    left: 0;
  }
  
  .right-arch {
    right: 0;
  }
  
  .side-arch img {
    height: 100%;
    object-fit: cover;
  }

  .social-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .social-float a img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
  }
  
  .social-float a img:hover {
    transform: scale(1.1);
  }
  @media (max-width: 600px) {
    .social-float {
      bottom: 15px;
      right: 15px;
      gap: 10px;
    }
  
    .social-float a img {
      width: 40px;
      height: 40px;
    }
  }
  

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

.hero {
  height: 100vh;
  background: url('./images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: white;
  position: relative;
  z-index: 2;
  transform: scale(1) skew(-5deg) translateY(0);
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: inline-block;
}

/* Drop shadow / outline style like the image */
.hero h1::after {
  content: attr(data-text);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
  color: rgba(0, 0, 0, 0.4); /* Shadow color */
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
}


/* Fullscreen paper overlay */
.paper-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/stucco-texture-light-color.jpg"); /* Light paper color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  animation: slideUp 5s ease forwards;
}

.paper-sheet {
  border: 2px solid #ccc;
  padding: 2rem 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transform: scale(0.8) rotateX(90deg);
  animation: paperOpen 1.5s ease-out forwards 0.5s;
}

.paper-sheet h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #333;
}

/* Animation to simulate page turning/folding */
@keyframes paperOpen {
  0% {
    transform: scale(0.8) rotateX(90deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotateX(0deg);
    opacity: 1;
  }
}

/* Slide up and disappear animation */
@keyframes slideUp {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }
}


    /* Preloader full screen */
 
  .gallery-section {
    padding: 3rem 2rem;
  }
  
  .gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 45px;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .artwork {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out;
  }
  
  .artwork img {
    width: 100%;
    height: 400px;
    display: block;
  }

  .artwork img:hover{
    box-shadow: #333;
  }
  
  .artwork p {
    padding: 1rem;
    text-align: center;
  }
  
  .artwork.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .more-button-container {
    text-align: center;
    margin-top: 200px;
}

.more-button {
    display: inline-block;
    padding: 10px 20px;
    color: #100e0e;
    background-color:#b25050;
    box-shadow: black;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    transition: background-color 0.3s ease;
}

.more-button:hover {
    background-color: #787878;
}

  section {
    padding: 3rem 2rem;
  }
  
  .featured-section {
    padding: 3rem 2rem;
  }
  
  .featured-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 45px;
  }
  
  .feature-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
  }
  
  .feature-row.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .feature-row.reverse {
    flex-direction: row-reverse;
  }
  
  .feature-img {
    flex: 1 1 300px;
    max-width: 500px;
  }
  
  .feature-img img {
    width: 90%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Philosopher:wght@400&display=swap');

.feature-text {
  flex: 1 1 300px;
  padding: 1rem;
  max-width: 600px;
  color: #3b1e1e; /* Deep earthy tone */
  font-family: 'Philosopher', sans-serif;
}

.feature-text h3 {
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #6b2e2e; /* Maroon heritage tone */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  letter-spacing: 1px;
  text-transform: capitalize;
}

.feature-text p {
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1rem;
  border-left: 4px solid #a57c5b; /* stone accent */
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Philosopher', sans-serif;
  letter-spacing: 0.4px;
}

  

  .site-footer {
    background-color: #1c1c1c;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #444;
    padding-bottom: 2rem;
  }
  
  .footer-logo h2 {
    font-size: 1.8rem;
    color: #f5d37b;
    margin-bottom: 0.5rem;
  }
  
  .footer-logo p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 1rem;
    color: #f5d37b;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #f5d37b;
  }
  
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: #ccc;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #333;
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }
  
    .navbar .logo {
      margin-bottom: 1rem;
      margin-left: 26%;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }
  
    .nav-links a {
      font-size: 1.1rem;
    }
  
    .hero h1 {
      font-size: 2rem;
      padding: 0 1rem;
    }
  
    .gallery-section h2,
    .featured-section h2 {
      font-size: 2rem;
    }
  
    .gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .artwork {
      width: 90%;
    }
  
    .feature-row,
    .feature-row.reverse {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .feature-text {
      width: 100%;
    }
  
    .feature-text p {
      width: auto;
      padding: 0 1rem;
    }
  
    .feature-img img,
    .artwork img {
      height: auto;
      width: 100%;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo h2 {
      font-size: 1.5rem;
    }
  
    .more-button {
      font-size: 24px;
      padding: 8px 16px;
    }
  }
/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #692828;
    display: none;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-left: 45%;
  }
}
  
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

.running-projects-section {
  padding: 4rem 1rem;
  background: rgb(235, 217, 183);
  color: #4b2d2d;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #692828;
}

.section-header p {
  font-size: 1.1rem;
  color: #7a4a2b;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 400%; /* 4 images, so 4 x 100% */
}

.slider-track img {
  width: 100vw;   /* Match screen width */
  height: 600px;
  flex-shrink: 0;
  object-fit: cover;
}
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(105, 40, 40, 0.7);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 6px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.extra-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.project-video video {
  width: 100%;
  max-width: 500px;
  border: 4px solid #b58e6f;
  border-radius: 10px;
}

.project-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-gallery img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .slider-track img {
    height: 280px;
  }

  .prev-btn, .next-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }

  .project-gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .project-gallery img {
    width: 45vw;
    height: auto;
  }

  .project-video video {
    max-width: 90vw;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Philosopher&family=Playfair+Display:wght@600&display=swap');

#project-counter {
  background-color: rgb(235, 214, 170);
  padding: 80px 20px;
  position: relative;
  text-align: center;
  font-family: 'Philosopher', sans-serif;
  color: #fff;
  overflow: hidden;
}

#project-counter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

#project-counter .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

#project-counter h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #ffd700; /* Golden header */
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

#project-counter .counter-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

#project-counter .counter-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e0c9a6;
}

#project-counter .counter-box .counter {
  font-size: 3.5rem;
  font-weight: bold;
  color: #00eaff;
  text-shadow: 0 0 15px #00eaff;
  transition: transform 0.3s ease;
}

#project-counter .counter-box:hover .counter {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  #project-counter h2 {
    font-size: 2.2rem;
  }
  #project-counter .counter {
    font-size: 2.5rem;
  }
}
