/* ========================================
   HoneyBeeHue - Component Styles
   ======================================== */

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  padding: var(--space-lg) 0;
  background-color: var(--color-background);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.logo-image {
  width: auto;
  height: 280px;
  max-width: 640px;
  object-fit: contain;
}

/* Smaller logo variant for secondary pages */
.logo-image-small {
  height: 120px;
  max-width: 300px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-honey-gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-honey-gold);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

/* ========================================
   Hero Section with Seamless Image
   ======================================== */
.hero-image-section {
  text-align: center;
  padding-top: var(--space-xl);
  background-color: var(--color-background);
  overflow: hidden;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  /* Remove any gaps/margins */
  line-height: 0;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Ensure image blends seamlessly */
  background-color: var(--color-background);
  /* No borders or shadows to interfere */
  border: none;
  box-shadow: none;
}

/* ========================================
   Hexagon Gallery
   ======================================== */
.hexagon-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-xl) 0;
  position: relative;
}

.hexagon-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floral background decoration */
.hexagon-wrapper::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, 
    rgba(139, 155, 107, 0.1) 0%, 
    transparent 70%);
  z-index: -1;
}

.hexagon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hexagon {
  position: relative;
  width: 200px;
  height: 230px;
  background: var(--color-white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.hexagon:hover {
  transform: scale(1.05);
}

.hexagon-inner {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hexagon-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hexagon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-align: center;
  padding: var(--space-md);
}

/* Hexagon positions */
.hexagon--left {
  background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-honey-gold-light) 100%);
  transform: translateX(30px);
  z-index: 2;
}

.hexagon--right {
  background: linear-gradient(135deg, var(--color-lavender) 0%, #E8DFF5 100%);
  transform: translateX(-30px);
  z-index: 1;
}

/* ========================================
   Floral Decorations
   ======================================== */
.floral-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.floral-decoration--top {
  top: -20px;
  right: -30px;
  width: 120px;
  opacity: 0.9;
}

.floral-decoration--bottom {
  bottom: -20px;
  left: -30px;
  width: 120px;
  opacity: 0.9;
}

/* ========================================
   Service Section
   ======================================== */
.service-section {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.service-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.service-subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.service-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-item {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin: 0;
}

.service-price {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background-color: #5BA4E6;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: #4A8FCC;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(91, 164, 230, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-honey-gold);
  color: var(--color-honey-gold);
}

.btn-outline:hover {
  background-color: var(--color-honey-gold);
  color: var(--color-white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: var(--space-2xl) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-3xl);
}

.footer-text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.footer-link {
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-honey-gold);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 768px) {
  .header-content {
    position: relative;
  }
  
  /* Hide hamburger menu - always show nav */
  .menu-toggle {
    display: none !important;
  }
  
  /* Always visible nav, stacked below logo */
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-lg);
  }
  
  .nav-link {
    font-size: var(--text-xs);
  }
  
  .hexagon {
    width: 150px;
    height: 173px;
  }
  
  .hexagon--left {
    transform: translateX(20px);
  }
  
  .hexagon--right {
    transform: translateX(-20px);
  }
}

@media (max-width: 480px) {
  .hexagon {
    width: 120px;
    height: 138px;
  }
  
  .hexagon--left {
    transform: translateX(15px);
  }
  
  .hexagon--right {
    transform: translateX(-15px);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-xl);
  }
}
