/* 
 * Custom styles for Moment Coffee Lab Theme
 * Tailwind CSS is largely used, but custom CSS goes here for animations, overrides, etc. 
 */

:root {
  --primary-color: #CBB296;
  --primary-dark: #B0977B;
  --secondary-color: #F2EAE0;
  --dark-color: #5C4D3C;
  --text-dark: #333333;
  --text-light: #F8F9FA;
}

html {
  scroll-behavior: smooth;
}

/* GPU acceleration for fixed/animated elements */
.site-header {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}



body {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Be Vietnam Pro', sans-serif;
}

/* Base Utility Overrides */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

/* Specific Section Styles */

/* Banner Swiper */
.banner-swiper .swiper-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Contact Form 7 specific overrides */
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  color: #1e293b;
  transition: all 0.2s;
}
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}
.wpcf7-submit {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.wpcf7-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}
