/* styles.css - Professional enhancements */

/* Base colors */
:root {
  --primary: #8c6846;
  --primary-dark: #6b4f34;
  --accent: #a67c52;
  --text-dark: #1f2937;
  --bg-light: #f9fafb;
}

/* General body styling */
body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Navbar refinement */
.sticky-nav {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(6px);
}

.sticky-nav a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

/* Headings */
.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

/* Cards / panels */
.bg-white {
  background-color: #ffffff !important;
}

.rounded-xl,
.rounded-2xl,
.rounded-lg {
  border-radius: 12px !important; /* enhanced rounding */
}

.shadow,
.shadow-lg {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.vintage-btn {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(140, 104, 70, 0.3);
}

.vintage-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(140, 104, 70, 0.4);
}

/* CTA border buttons (white border ones) */
.border-4 {
  border-width: 2px !important;
}

/* Image fade container translucent backdrop */
.image-fade-container {
  background: rgba(0, 0, 0, 0.4); /* subtle translucent dark */
}

/* Image fade transition styles for smooth transitions */
.fading-image {
  transition: opacity 1.2s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  border-radius: 12px;
}

.fade-out {
  opacity: 0;
}

/* Add rounded corners to all images */
img {
  border-radius: 12px;
}

/* Ensure smooth transitions for play image */
#play-image {
  transition: opacity 1.2s ease-in-out;
  border-radius: 12px;
}

/* Consistent navigation styling */
.nav-link {
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff !important;
}

.nav-link:hover {
  color: #d1d5db !important;
}

/* Active navigation state - no background, just white text */
.nav-active {
  font-weight: 600;
  color: #ffffff !important;
}



/* Mobile optimizations */
@media (max-width: 640px) {
  /* Mobile menu styling - positioned under hamburger */
  #mobileMenu {
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.95), rgba(45, 55, 72, 0.95)) !important; /* Semi-transparent */
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: auto !important;
    min-width: 220px;
    max-width: 280px;
    left: 0;
    right: auto;
    top: 100%;
    margin-top: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Enhanced mobile navigation spacing */
  #mobileMenu li {
    margin: 8px 0;
  }
  
  #mobileMenu .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  #mobileMenu .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
  }
  
  /* Gallery link at bottom on mobile */
  #mobileMenu li:last-child {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Improve touch targets */
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
  }
  
  /* Improve touch targets */
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
  }
  
  /* Better mobile spacing */
  .service-card {
    margin-bottom: 1rem;
  }
  
  /* Optimize text for mobile */
  .section-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  /* Improve button touch targets */
  .vintage-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Better mobile image sizing */
  .image-fade-container {
    max-height: 180px !important;
  }
  
  /* Improve mobile navigation */
  #mobileMenu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* Gallery section styling */
.image-gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Contact form inputs */
input,
textarea {
  border-color: #d1d5db;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(166, 124, 82, 0.3);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: #ffffff;
} 