/*
Theme Name: Cocktails for Hire
Theme URI: https://cocktailsforhire.nl/
Author: Dave Vera (Optimized by Manus)
Author URI: https://cocktailsforhire.nl/
Description: A premium WordPress theme for Cocktails for Hire, featuring modern design, animations, and optimized performance.
Version: 2.0.0
Requires at least: 5.6
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cocktails-for-hire
Tags: cocktails, bar, catering, responsive, modern
*/

/* 
==========================================================================
TABLE OF CONTENTS:
==========================================================================
1. Variables & Reset
2. Typography
3. Layout & Grid
4. Header & Navigation
5. Hero Section
6. Intro Section
7. USPs Section
8. How It Works Section
9. Services Section
10. Catering Section
11. Workshops Section
12. Gallery Section
13. Testimonials Section
14. FAQ Section
15. Contact Form
16. Chat Widget
17. Footer
18. Animations
19. Utilities
20. Responsive Styles
==========================================================================
*/

/* 
==========================================================================
1. Variables & Reset
==========================================================================
*/

:root {
  /* Colors */
  --primary-color: #1e3a8a;
  --primary-light: #ffffff;
  --primary-dark: #000000;
  --secondary-color: #e11d48;
  --secondary-light: #ffffff;
  --secondary-dark: #000000;
  --text-color: #ffffff;
  --text-light: #ffffff;
  --text-dark: #ffffff;
  --background-color: #000000;
  --background-alt: #000000;
  --gray-light: #f3f4f6;
  --gray-medium: #d1d5db;
  --gray-dark: #4b5563;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-below: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-header: 100;
  --z-modal: 1000;
  --z-tooltip: 1500;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: white;
  background-color: black;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

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

ul, ol {
  list-style: none;
}

/* 
==========================================================================
2. Typography
==========================================================================
*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

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

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-light {
  color: var(--text-light);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-loose {
  line-height: 2;
}

/* 
==========================================================================
3. Layout & Grid
==========================================================================
*/

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.container-fluid {
  width: 100%;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.section {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

.section-sm {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.section-lg {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

.section-title {
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: transparent;
}

.section-title.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: white;
  margin-bottom: var(--spacing-xl);
}

.section-divider.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* 
==========================================================================
4. Header & Navigation
==========================================================================
*/

.site-header {
  display: none !important;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: white;
  font-weight: 500;
  padding: var(--spacing-xs) 0;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: width var(--transition-normal);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: transparent;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  padding: var(--spacing-xl);
  transition: right var(--transition-normal);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.mobile-menu ul {
  margin-top: var(--spacing-2xl);
}

.mobile-menu li {
  margin-bottom: var(--spacing-md);
}

.mobile-menu a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  padding: var(--spacing-xs) 0;
}

.header-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: white;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  transition: background-color var(--transition-fast);
}

.header-cta:hover {
  background-color: transparent;
  color: white;
}

/* 
==========================================================================
5. Hero Section
==========================================================================
*/

.video-header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.video-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-header-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.video-header-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-header-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-header-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: white;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  border-color: 2px solid white;
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  transition: all var(--transition-fast);
}

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

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-normal);
}

.video-play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid white;
  margin-left: 5px;
}

.video-play-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.video-loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* 
==========================================================================
6. Intro Section
==========================================================================
*/

.intro-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-color);
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-2xl);
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-title {
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem;
}

.intro-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.intro-description {
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
  line-height: 1.7;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.intro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

/* 
==========================================================================
7. USPs Section
==========================================================================
*/

.usps-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-alt);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.usp-item {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.usp-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.usp-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.usp-description {
  color: var(--text-light);
  line-height: 1.7;
}

/* 
==========================================================================
8. How It Works Section
==========================================================================
*/

.how-it-works-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-color);
}

.steps-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--gray-medium);
}

.step-item {
  position: relative;
  display: flex;
  margin-bottom: var(--spacing-2xl);
}

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

.step-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  padding: var(--spacing-lg);
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 1;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.step-description {
  color: var(--text-light);
  line-height: 1.7;
}

/* 
==========================================================================
9. Services Section
==========================================================================
*/

.services-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-content {
  position: relative;
  padding: var(--spacing-lg);
  background-color: var(--background-color);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.service-description {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
}

.service-link i {
  margin-left: var(--spacing-xs);
  transition: transform var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* 
==========================================================================
10. Catering Section
==========================================================================
*/

.catering-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-color);
}

.catering-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-2xl);
}

.catering-text {
  flex: 1;
  min-width: 300px;
}

.catering-title {
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem;
}

.catering-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.catering-description {
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
  line-height: 1.7;
}

.catering-features {
  margin-bottom: var(--spacing-lg);
}

.catering-feature {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.catering-feature i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: var(--spacing-md);
}

.catering-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.catering-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.catering-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

/* 
==========================================================================
11. Workshops Section
==========================================================================
*/

.workshops-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-alt);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.workshop-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--background-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.workshop-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.workshop-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.workshop-content {
  padding: var(--spacing-lg);
}

.workshop-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.workshop-meta {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  font-size: 0.875rem;
}

.workshop-meta > div {
  display: flex;
  align-items: center;
  margin-right: var(--spacing-md);
}

.workshop-meta i {
  margin-right: var(--spacing-xs);
}

.workshop-description {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.workshop-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.workshop-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  transition: background-color var(--transition-fast);
}

.workshop-button:hover {
  background-color: var(--primary-dark);
  color: white;
}

/* 
==========================================================================
12. Gallery Section
==========================================================================
*/

.gallery-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 1;
  opacity: 0;
  transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-item-zoom {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-load-more {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* 
==========================================================================
13. Testimonials Section
==========================================================================
*/

.testimonials-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-alt);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  padding: var(--spacing-xl);
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  color: var(--text-color);
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.2em;
}

.testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.2em;
}

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

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}

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

.testimonial-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.testimonial-position {
  color: var(--text-light);
  font-size: 0.875rem;
}

.testimonial-rating {
  margin-top: var(--spacing-sm);
  color: var(--warning-color);
  font-size: 1.25rem;
}

/* Slick Carousel Customization */
.slick-dots {
  display: flex !important;
  justify-content: center;
  margin-top: var(--spacing-lg);
  padding: 0;
}

.slick-dots li {
  margin: 0 var(--spacing-xs);
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  border: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
  transition: background-color var(--transition-fast);
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: var(--primary-dark);
}

/* 
==========================================================================
14. FAQ Section
==========================================================================
*/

.faq-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background-color: black;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: black;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  position: relative;
  padding: var(--spacing-lg);
  background-color: black;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: darkgray;
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-answer.active {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  max-height: 1000px;
}

.faq-answer-content {
  color: white;
  line-height: 1.7;
}

/* 
==========================================================================
17. Footer
==========================================================================
*/

.site-footer {
  background-color: black;
  padding-top: var(--spacing-2xl);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-2xl);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: blue;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

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

.footer-bottom a {
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: white;
  font-size: 0.875rem;
}

.footer-bottom a:hover {
  color: white;
}

/* 
==========================================================================
18. Animations
==========================================================================
*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
	
}

.animate-on-scroll {
  opacity: 0;
}
.animate-fadeIn {
  animation: fadeIn 0.4s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.4s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.4s ease forwards;
}

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

.animate-fadeInDown {
  animation: fadeInDown 0.4s ease forwards;
}

/* 
==========================================================================
19. Utilities
==========================================================================
*/

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

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

.bg-light {
  background-color: var(--background-alt);
}

.bg-dark {
  background-color: var(--text-dark);
}

.text-white {
  color: white;
}

.rounded {
  border-radius: var(--border-radius-md);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-full {
  border-radius: var(--border-radius-full);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 
==========================================================================
20. Responsive Styles
==========================================================================
*/

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .video-header-title {
    font-size: 3rem;
  }
  
  .video-header-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .video-header-title {
    font-size: 2.5rem;
  }
  
  .intro-title,
  .catering-title {
    font-size: 2rem;
  }
  
  .steps-container::before {
    left: 20px;
    transform: none;
  }
  
  .step-item {
    flex-direction: column !important;
  }
  
  .step-content {
    width: 100%;
    margin-left: 50px;
  }
  
  .step-number {
    left: 20px;
    transform: none;
  }
  
  .slick-prev {
    left: 10px;
  }
  
  .slick-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .video-header {
    min-height: 500px;
  }
  
  .video-header-title {
    font-size: 2rem;
  }
  
  .video-header-subtitle {
    font-size: 1.1rem;
  }
  
  .video-header-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .intro-image::before,
  .catering-image::after {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .video-header-title {
    font-size: 1.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
}

@media (max-width: 480px) {
  .video-header-title {
    font-size: 1.5rem;
  }
  
  .video-header-subtitle {
    font-size: 1rem;
  }
  
  .intro-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  

/* WordPress Admin Bar Compatibility */
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}
