/* Global Styles */
:root {
  --primary-color: #441A38;
  --secondary-color: #fff;
  --text-color: #333;
  --background-color: #f5f5f5;
  --accent-color: #6D2B59;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: var(--background-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.site-header {
  background: var(--primary-color);
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.active {
  border-bottom: 2px solid var(--secondary-color);
}

.header-ctas {
  display: flex;
  gap: 1rem;
}

/* Button Styles */
.btn, .btn-outline {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

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

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Hero Section */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--secondary-color);
  padding: 4rem 0;
  text-align: center;
}

.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(68, 26, 56, 0.7);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Home Page Specific */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(68, 26, 56, 0.6);
  z-index: 1;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-slider img.active {
  opacity: 1;
}

.capture-inner {
  padding: 4rem 0;
  text-align: center;
}

.capture-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.card h3 {
  color: var(--primary-color);
  margin: 1rem;
}

.card p {
  color: var(--text-color);
  margin: 1rem;
  line-height: 1.5;
}

/* About Page Specific */
.about-content {
  padding: 4rem 0;
  background: var(--secondary-color);
}

.about-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-content p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Portfolio Page Specific */
.portfolio-grid {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.portfolio-item {
  transition: transform 0.3s ease;
}

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

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-item-info {
  background: var(--secondary-color);
  padding: 1.5rem;
}

.portfolio-item-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.portfolio-item-info p {
  color: var(--text-color);
}

/* Contact Page Specific */
.contact-content {
  background: var(--secondary-color);
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form, .contact-info {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 4rem 0;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.6;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #441A38;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #441A38;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  gap: 15px;
}

.btn,
.btn-outline {
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn {
  background: linear-gradient(135deg, #441A38 0%, #443B19 100%);
  color: white;
  border: none;
}

.btn:hover {
  background: linear-gradient(135deg, #552149 0%, #554B29 100%);
}

.btn-outline {
  border: 2px solid #441A38;
  color: #441A38;
}

.btn-outline:hover {
  background: #441A38;
  color: white;
}

/* ==========================================================================
   Hero Slider (Home Page)
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #441A38;
  transition: all 0.3s ease;
  z-index: 2;
}

.prev:hover,
.next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* ==========================================================================
   Hero Section (Sub-Pages)
   ========================================================================== */

.page-hero {
  height: 60vh;
  background: linear-gradient(135deg, #441A38 0%, #443B19 100%);
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(68, 26, 56, 0.3), rgba(68, 59, 25, 0.3));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  color: white;
}

.page-hero p {
  font-size: 1.2em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* ==========================================================================
   Capture Section (Home Page)
   ========================================================================== */

.capture {
  padding: 100px 0;
  background: #f9f9f9;
}

.capture-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.capture-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

.capture-intro h2 {
  color: #441A38;
  font-size: 2.5em;
  margin-bottom: 20px;
}

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

.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(68, 26, 56, 0.15);
}

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

.card h3 {
  color: #441A38;
  padding: 20px 20px 10px;
}

.card p {
  padding: 0 20px 20px;
  color: #443B19;
}

.capture-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   Featured Gallery (Home Page)
   ========================================================================== */

.featured-gallery {
  padding: 6rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(68, 26, 56, 0.9));
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.gallery-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: #441A38;
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.gallery-cta .btn:hover {
  background: #552149;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .gallery-overlay {
    padding: 1.5rem;
  }

  .gallery-overlay h3 {
    font-size: 1.25rem;
  }

  .gallery-overlay p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial {
  background: linear-gradient(135deg, #441A38 0%, #443B19 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  color: white;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #441A38;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.newsletter {
  margin-top: 1rem;
}

.newsletter p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #441A38;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.newsletter small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-group h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  margin-bottom: 0.75rem;
}

.link-group ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-group ul a:hover {
  color: #fff;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links i {
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   About Page Specific
   ========================================================================== */

.about-content {
  padding: 100px 0;
  background: #f9f9f9;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.story h2 {
  color: #441A38;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.story p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.8;
}

.team-photos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-team-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-values {
  padding: 100px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.value {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.value.visible {
  opacity: 1;
  transform: translateY(0);
}

.value:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(68, 26, 56, 0.1);
}

.value i {
  font-size: 2.5em;
  color: #441A38;
  margin-bottom: 20px;
}

.value h3 {
  color: #441A38;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.value p {
  color: #666;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5em;
  }
  
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Portfolio Page Specific
   ========================================================================== */

.portfolio-hero {
  background: linear-gradient(135deg, #441A38 0%, #443B19 100%);
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/13947239961_b11170d3f6_k.jpg') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.portfolio-hero .container {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  padding: 100px 0;
  background: #f9f9f9;
}

.portfolio-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(68, 26, 56, 0.1);
}

.grid-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(68, 26, 56, 0.9);
  color: white;
  font-size: 1.1em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.grid-item:hover span {
  transform: translateY(0);
}

.portfolio-cta {
  text-align: center;
  margin-top: 60px;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  background: white;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 10px;
  background: rgba(68, 26, 56, 0.9);
  border-radius: 0 0 5px 5px;
}

/* Animation Delays for Grid Items */
.grid-item:nth-child(2) { transition-delay: 0.1s; }
.grid-item:nth-child(3) { transition-delay: 0.2s; }
.grid-item:nth-child(4) { transition-delay: 0.3s; }
.grid-item:nth-child(5) { transition-delay: 0.4s; }
.grid-item:nth-child(6) { transition-delay: 0.5s; }
.grid-item:nth-child(7) { transition-delay: 0.6s; }
.grid-item:nth-child(8) { transition-delay: 0.7s; }

@media (max-width: 768px) {
  .portfolio-grid .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .grid-item {
    height: 250px;
  }

  .grid-item img {
    height: 250px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ==========================================================================
   Contact Page Specific
   ========================================================================== */

.contact-content {
  padding: 4rem 0;
}

.contact-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-content p {
  margin-bottom: 2rem;
  opacity: 0.85;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.contact-info li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #441A38;
  border-radius: 4px;
  background: #1e1a16;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #443B19;
  outline: none;
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #e08d3c;
  color: #1e1a16;
  cursor: pointer;
  border-radius: 4px;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards ease-in-out;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .capture-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .newsletter {
    margin: 0 auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Animation Delays */
.card:nth-child(2) {
  transition-delay: 0.2s;
}

.card:nth-child(3) {
  transition-delay: 0.4s;
}

.gallery-item:nth-child(2) {
  transition-delay: 0.15s;
}

.gallery-item:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  transition-delay: 0.45s;
}

/* Contact Page Enhancements */
.info-card {
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
}

.location-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  color: var(--primary-color);
  margin: 1.5rem;
}

.info-card p {
  margin: 1rem 1.5rem;
  color: var(--text-color);
}

/* Portfolio Grid Enhancements */
.portfolio-grid {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.portfolio-item {
  transition: transform 0.3s ease;
}

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

.portfolio-item-info {
  background: var(--secondary-color);
  padding: 1.5rem;
}

.portfolio-item-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.portfolio-item-info p {
  color: var(--text-color);
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 26, 56, 0.5);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #441A38;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services {
    padding: 6rem 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem;
    margin: 0;
    color: #441A38;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.featured-gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(68, 26, 56, 0.9));
    padding: 2rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.testimonial {
    background: #441A38;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    opacity: 0.3;
}

.testimonial blockquote::before {
    left: -1rem;
    top: -1rem;
}

.testimonial blockquote::after {
    right: -1rem;
    bottom: -2rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial blockquote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}
