/* Home Page */
.main-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.left-column {
  width: 100%;
}

.right-column {
  width: 100%;
}

/* Desktop */
@media (min-width: 900px) {
  .main-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    justify-content: center;
  }
  
  .left-column {
    width: 47%;
    min-width: 310px;
    max-width: 580px;
  }
  
  .right-column {
    width: 47%;
    max-width: 580px;
  }
}

/* Profile */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.profile-image {
  width: 270px;
  height: 180px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 3px solid var(--color-accent);
  background-image: url('icons/lesjupesdesfilles.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(139, 69, 19, 0.25);
}

.boutique-name {
  font-size: 1.85em;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.boutique-description {
  font-size: 1em;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 22px;
}

/* SEO-only content: Hidden from visual display but accessible to search engines */
.seo-only {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
}

/* Links Container */
.links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80%;
}

/* Google Maps Modal */
.google-map {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.google-map.visible {
  display: flex;
}

.google-map-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.2);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px 20px 20px;
  animation: modalSlideIn 0.3s ease-out;
}

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

.google-map-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}

.google-map-close:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.google-map-close:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.google-map iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(139,69,19,0.08);
}

.store-hours {
  background: #fdebd3;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(139,69,19,0.07);
  padding: 15px 16px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-primary);
  font-size: 13px;
}

.store-hours h3 { 
  font-size: 14px; 
  color: var(--color-secondary); 
  margin-bottom: 7px; 
  font-weight: 600; 
  text-align: center; 
}

.store-hours ul { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  text-align: center; 
}

.store-hours li { 
  margin-bottom: 7px; 
  font-size: 1em; 
  display: block; 
}

.store-hours strong { 
  color: var(--color-secondary); 
  font-weight: 700; 
}

/* Info Modal */
.info-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.info-modal.visible {
  display: flex;
}

.info-modal-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.2);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px 20px 20px;
  animation: modalSlideIn 0.3s ease-out;
}

.info-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}

.info-modal-close:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.info-modal-close:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.info-modal-content h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1em;
  margin-top: revert-layer;
}

.info-content {
  background: #fdebd3;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(139,69,19,0.07);
  padding: 15px 16px;
  text-align: center;
  color: var(--color-primary);
  font-size: 13px;
}

.info-content p {
  line-height: 1.6;
  margin-bottom: 0.7rem;
  font-size: 1em;
}

.info-content strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* Responsive Home */
@media (max-width: 680px) {
  .main-layout { 
    flex-direction: column; 
    gap: 14px; 
  }
  
  .left-column, .right-column { 
    width: 100%; 
  }
  
  .profile-image { 
    width: 220px;
    height: 146px;
  }
  
  .boutique-name { 
    font-size: 1.12em; 
  }
  
  .boutique-description { 
    font-size: 0.95em; 
  }
  
  .links-container { 
    gap: 11px; 
    margin-top: 8px;
    margin-inline: auto;
  }
  
  .store-hours, .google-map { 
    max-width: 95vw; 
  }
}
