/* Kwik Keys Velo Theme - Organic/Natural Design */

/* CSS Variables for Custom Color Palette */
:root {
  /* Primary Colors - Organic/Natural */
  --primary-turquoise: #40E0D0;
  --primary-sky-blue: #87CEEB;
  --accent-lime: #9ACD32;
  
  /* Extended Palette */
  --turquoise-dark: #20B2AA;
  --turquoise-light: #AFEEEE;
  --sky-blue-dark: #4682B4;
  --sky-blue-light: #B0E0E6;
  --lime-dark: #7FAF1E;
  --lime-light: #B7E56A;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --charcoal: #212529;
  
  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Arial Black', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

/* Custom Bootstrap Overrides */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--dark-gray);
}

/* Hero Section Styling */
.hero-section {
  background: linear-gradient(135deg, 
    rgba(64, 224, 208, 0.9) 0%, 
    rgba(135, 206, 235, 0.9) 50%, 
    rgba(154, 205, 50, 0.8) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-repeat: repeat;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Button Styles */
.btn-velo-primary {
  background: linear-gradient(45deg, var(--accent-lime), var(--lime-light));
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-velo-primary:hover {
  background: linear-gradient(45deg, var(--lime-dark), var(--accent-lime));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-velo-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

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

.btn-outline-turquoise {
  background: transparent;
  border: 2px solid var(--primary-turquoise);
  color: var(--primary-turquoise);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

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

.btn-outline-turquoise.active,
.btn-outline-turquoise:focus {
  background: var(--primary-turquoise);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(64, 224, 208, 0.25);
}

/* Card Styles */
.velo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
  height: 100%;
}

.velo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.velo-card-img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.velo-card:hover .velo-card-img {
  transform: scale(1.05);
}

.velo-card-body {
  padding: var(--space-lg);
}

.velo-card-title {
  font-size: 1.5rem;
  color: var(--primary-turquoise);
  margin-bottom: var(--space-sm);
}

.velo-card-text {
  color: var(--medium-gray);
  margin-bottom: var(--space-md);
}

/* Navigation */
.navbar-velo {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

.navbar-velo .navbar-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-turquoise);
  text-decoration: none;
}

.navbar-velo .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 var(--space-sm);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-velo .nav-link:hover {
  color: var(--primary-turquoise);
}

.navbar-velo .nav-link.active {
  color: var(--primary-turquoise);
}

.navbar-velo .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-lime);
  transition: width 0.3s ease;
}

.navbar-velo .nav-link:hover::after {
  width: 100%;
}

/* Mobile Navigation */
.navbar-toggler {
  border: none;
  color: var(--primary-turquoise);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.mobile-menu {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-sm);
}

/* Section Styles */
.section-padding {
  padding: var(--space-xxl) 0;
}

.section-padding-sm {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-turquoise), var(--accent-lime));
  border-radius: 2px;
}

/* Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-turquoise), var(--sky-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.contact-info .feature-icon {
  margin: 0 1rem 0 0;
}

.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
}

.feature-icon.bg-white {
  background: var(--white) !important;
  color: var(--primary-turquoise);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  margin-bottom: var(--space-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-size: 4rem;
  color: var(--primary-turquoise);
  font-family: serif;
}

/* Form Styles */
.velo-form-control {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.velo-form-control:focus {
  border-color: var(--primary-turquoise);
  box-shadow: 0 0 0 0.2rem rgba(64, 224, 208, 0.25);
  background: var(--white);
}

.form-label {
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.velo-form {
  margin-top: var(--space-md);
}

/* Footer */
.footer-velo {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-velo h5 {
  color: var(--primary-turquoise);
  margin-bottom: var(--space-md);
}

.footer-velo a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-velo a:hover {
  color: var(--accent-lime);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: var(--space-sm);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-lime);
  transform: translateY(-2px);
  color: var(--white);
}

/* Cookie Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: 9999;
  max-width: 500px;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-title {
  color: var(--primary-turquoise);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.cookie-banner-text {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: var(--space-sm);
}

.cookie-btn-accept {
  background: var(--accent-lime);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--lime-dark);
  color: var(--white);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--medium-gray);
  border: 1px solid var(--light-gray);
}

.cookie-btn-decline:hover {
  background: var(--light-gray);
  color: var(--dark-gray);
}

/* Contact Info and Forms */
.contact-info {
  margin-top: var(--space-lg);
}

.map-container {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.alert {
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-sm);
}

.alert-info {
  background: var(--turquoise-light);
  color: var(--charcoal);
}

/* Rental Book Button */
.rental-book-btn {
  background: var(--primary-turquoise);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rental-book-btn:hover {
  background: var(--turquoise-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Table Styles */
.table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-dark {
  background: var(--charcoal);
  color: var(--white);
}

/* Blockquote */
.blockquote {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 4px solid var(--primary-turquoise);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
}

.blockquote-footer {
  color: var(--medium-gray);
  font-size: 0.9rem;
  font-style: normal;
  margin-top: var(--space-sm);
}

/* Utility Classes */
.text-turquoise {
  color: var(--primary-turquoise) !important;
}

.text-lime {
  color: var(--accent-lime) !important;
}

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

.bg-lime {
  background-color: var(--accent-lime) !important;
}

.bg-light-turquoise {
  background-color: var(--turquoise-light) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: var(--space-xl) 0;
  }
  
  .section-padding {
    padding: var(--space-xl) 0;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
  
  .btn-velo-primary,
  .btn-velo-secondary {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 576px) {
  :root {
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .velo-card-img {
    height: 200px;
  }
}