/* ========================================
   KIDD SQUID BREWING - CUSTOM CSS
   Add this to: WPBakery > Custom CSS
   ======================================== */

/* === GLOBAL STYLES === */
:root {
  --kidd-pink: #ff69b4;
  --kidd-navy: #1a2332;
  --kidd-teal: #2dd4bf;
  --kidd-cream: #fef7e5;
  --kidd-gray: #6b7280;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--kidd-navy);
  line-height: 1.6;
}

/* === HERO SECTION === */
.kidd-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(26, 35, 50, 0.7)), 
              url('http://kiddsquid.com/wp-content/uploads/2023/08/kidd-squid-pink-trans@300x.png') center/cover no-repeat;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.kidd-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 105, 180, 0.15), transparent 50%);
  pointer-events: none;
}

.kidd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.kidd-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.kidd-hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--kidd-cream);
  margin-bottom: 40px;
  font-weight: 300;
}

.kidd-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.kidd-btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.kidd-btn-primary {
  background: var(--kidd-pink);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

.kidd-btn-primary:hover {
  background: #ff4da6;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 105, 180, 0.6);
}

.kidd-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.kidd-btn-secondary:hover {
  background: white;
  color: var(--kidd-navy);
  transform: translateY(-2px);
}

/* === INFO BAR === */
.kidd-info-bar {
  background: white;
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
}

.kidd-info-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.kidd-info-item:hover {
  transform: translateY(-5px);
}

.kidd-info-icon {
  font-size: 2.5rem;
  color: var(--kidd-pink);
  margin-bottom: 15px;
  display: block;
}

.kidd-info-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--kidd-gray);
  margin-bottom: 8px;
  font-weight: 600;
}

.kidd-info-detail {
  font-size: 1.1rem;
  color: var(--kidd-navy);
  font-weight: 600;
}

/* === SECTION STYLES === */
.kidd-section {
  padding: 80px 20px;
}

.kidd-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: var(--kidd-navy);
}

.kidd-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--kidd-gray);
  max-width: 700px;
  margin: 0 auto 60px;
}

/* === BEER CARDS === */
.kidd-beer-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.kidd-beer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
}

.kidd-beer-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kidd-beer-card:hover .kidd-beer-image {
  transform: scale(1.05);
}

.kidd-beer-content {
  padding: 30px;
}

.kidd-beer-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kidd-navy);
  margin-bottom: 10px;
}

.kidd-beer-style {
  color: var(--kidd-pink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.kidd-beer-description {
  color: var(--kidd-gray);
  line-height: 1.7;
}

/* === ABOUT SECTION === */
.kidd-about {
  background: linear-gradient(135deg, var(--kidd-cream), #fff);
}

.kidd-story {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--kidd-navy);
}

.kidd-story p {
  margin-bottom: 20px;
}

.kidd-highlight {
  color: var(--kidd-pink);
  font-weight: 600;
}

/* === LOCATION SECTION === */
.kidd-location-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.kidd-location-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--kidd-navy);
}

.kidd-location-detail {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
  gap: 15px;
}

.kidd-location-icon {
  color: var(--kidd-pink);
  font-size: 1.5rem;
  margin-top: 3px;
}

.kidd-location-text h4 {
  font-weight: 600;
  color: var(--kidd-navy);
  margin-bottom: 5px;
}

.kidd-location-text p {
  color: var(--kidd-gray);
  margin: 0;
}

/* === FOOTER === */
.kidd-footer {
  background: var(--kidd-navy);
  color: white;
  padding: 50px 20px 30px;
  text-align: center;
}

.kidd-footer-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.kidd-social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.kidd-social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.kidd-social-icon:hover {
  background: var(--kidd-pink);
  transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .kidd-hero {
    min-height: 70vh;
    padding: 40px 20px;
  }
  
  .kidd-info-bar {
    margin-top: 0;
    border-radius: 0;
  }
  
  .kidd-section {
    padding: 50px 20px;
  }
  
  .kidd-cta-group {
    flex-direction: column;
  }
  
  .kidd-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .kidd-beer-image {
    height: 220px;
  }
}

/* === UTILITY CLASSES === */
.kidd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.kidd-text-center {
  text-align: center;
}

.kidd-mb-0 { margin-bottom: 0 !important; }
.kidd-mb-20 { margin-bottom: 20px !important; }
.kidd-mb-40 { margin-bottom: 40px !important; }