.elementor-167 .elementor-element.elementor-element-3c39d4f{width:var( --container-widget-width, 116.429% );max-width:116.429%;--container-widget-width:116.429%;--container-widget-flex-grow:0;}/* Start custom CSS *//* ========================================
   howzeyourcoffee - Landing Page Styles
   WordPress-Ready CSS
   ======================================== */

/* CSS Custom Properties (Variables) */
:root {
  --espresso: #1a0f0a;
  --dark-roast: #2d1810;
  --crema: #f5e6d3;
  --latte: #e8d5c4;
  --copper: #b87333;
  --gold: #d4a853;
  --cream: #faf6f1;
  --blush: #e8b4b8;
  --rose: #d4919a;
  --dusty-pink: #c9a0a5;
  --shadow: rgba(26, 15, 10, 0.15);
}

/* Reset & Base Styles */
.hyc-landing * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hyc-landing {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Pattern */
.hyc-landing::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(184, 115, 51, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 180, 184, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 30%, rgba(212, 145, 154, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(245, 230, 211, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Header */
.hyc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.hyc-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-roast);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.hyc-logo span {
  color: var(--copper);
}

.hyc-header-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1.5px solid var(--copper);
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.hyc-header-cta:hover {
  background: var(--copper);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3);
}

/* Hero Section */
.hyc-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  min-height: 100vh;
  gap: 4rem;
}

/* Left Side - CTAs */
.hyc-left-side {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero Actions (index.html parity) */
.hyc-hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
  width: 100%;
}

.hyc-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.hyc-cta-button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: 5px;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.hyc-cta-button:hover::after {
  width: 100%;
}

.hyc-cta-blog {
  color: var(--dark-roast);
}

.hyc-cta-blog:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.hyc-cta-guest {
  color: var(--rose);
}

.hyc-cta-guest:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Right Side - Branding & Carousel */
.hyc-right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hyc-branding {
  text-align: center;
  margin-bottom: 3rem;
}

.hyc-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--dark-roast);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hyc-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--copper);
  opacity: 0.9;
}

/* Illustration Scene */
.hyc-illustration-container {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.hyc-coffee-scene {
  position: relative;
  width: 100%;
  height: 350px;
}

.hyc-coffee-scene svg {
  width: 100%;
  height: 100%;
}

/* Chat bubble animation */
.hyc-chat-bubble {
  animation: hyc-float 3s ease-in-out infinite;
}

@keyframes hyc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Steam animation */
.hyc-steam {
  animation: hyc-steam 2s ease-in-out infinite;
  opacity: 0.6;
}

.hyc-steam:nth-child(2) {
  animation-delay: 0.3s;
}

.hyc-steam:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes hyc-steam {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-10px) scaleX(1.1); opacity: 0.3; }
  100% { transform: translateY(-20px) scaleX(0.8); opacity: 0; }
}

/* Character hover effects */
.hyc-character {
  transition: transform 0.3s ease;
}

.hyc-character:hover {
  transform: scale(1.02);
}

/* Right character rotation */
.hyc-right-character {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.hyc-right-character.hyc-slide-out {
  opacity: 0;
  transform: translateX(-50px);
}

.hyc-right-character.hyc-slide-in {
  opacity: 0;
  transform: translateX(50px);
}

.hyc-bubble-icon {
  transition: opacity 0.3s ease-out;
}

/* Modal */
.hyc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 10, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.hyc-modal-overlay.hyc-active {
  opacity: 1;
  visibility: visible;
}

.hyc-modal {
  background: var(--cream);
  border-radius: 24px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 30px 80px rgba(26, 15, 10, 0.3);
}

.hyc-modal-overlay.hyc-active .hyc-modal {
  transform: scale(1) translateY(0);
}

.hyc-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--blush);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--dark-roast);
  transition: all 0.3s ease;
}

.hyc-modal-close:hover {
  background: var(--rose);
  color: white;
}

.hyc-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark-roast);
  margin-bottom: 0.5rem;
}

.hyc-modal-subtitle {
  color: var(--copper);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.hyc-form-group {
  margin-bottom: 1.25rem;
}

.hyc-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-roast);
  margin-bottom: 0.5rem;
}

.hyc-form-label .hyc-optional {
  font-weight: 400;
  opacity: 0.6;
}

.hyc-form-input,
.hyc-form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--latte);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--espresso);
  background: white;
  transition: all 0.3s ease;
}

.hyc-form-input:focus,
.hyc-form-textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(212, 145, 154, 0.15);
}

.hyc-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.hyc-submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--rose), var(--blush));
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--espresso);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.hyc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 145, 154, 0.5);
}

.hyc-success-message {
  display: none;
  text-align: center;
  padding: 2rem;
}

.hyc-success-message.hyc-show {
  display: block;
}

.hyc-success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hyc-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark-roast);
  margin-bottom: 0.5rem;
}

.hyc-success-text {
  color: var(--copper);
}

.hyc-form-content.hyc-hide {
  display: none;
}

/* Responsive */
@media (max-width: 968px) {
  .hyc-header {
    padding: 1rem 2rem;
  }

  .hyc-hero {
    flex-direction: column;
    padding: 7rem 2rem 2rem;
    gap: 3rem;
  }

  .hyc-left-side {
    flex: none;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .hyc-cta-button {
    padding: 1rem 1.5rem;
  }

  .hyc-coffee-scene {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .hyc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hyc-left-side {
    flex-direction: column;
    align-items: stretch;
  }

  .hyc-coffee-scene {
    height: 240px;
  }

  .hyc-modal {
    padding: 2rem;
  }
}/* End custom CSS */