/* Main title */
.header-container {
    justify-content: center;
    align-items: center;
    margin: 48px auto 32px;
    max-width: 1200px;
    padding: 0 24px;
  }
  
  .main-title {
    font-size: 50px !important;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    margin: 0;
    letter-spacing: -0.02em;
  }
  
  .subtitle {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
  }

  .main-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 4px;
  }
  
  @media (min-width: 768px) {
    .main-title {
      font-size: 36px;
    }
    
    .main-title::after {
      width: 100px;
    }
  }

/* Success message when user deletes their account*/
.delete-account-message {
    background-color: #fff4f4;
    border-left: 4px solid #ff4d4d;
    padding: 12px 15px;
    margin: 15px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
}

/* For Boop cards */ 
.boop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  padding: 20px;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .boop-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .boop-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

.boop-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 100%;
}

.boop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.boop-header, .boop-footer {
  padding: 18px 20px;
}

.boop-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.boop-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.boop-views {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
}

.boop-views::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff5757;
  border-radius: 50%;
  margin-right: 6px;
}

.boop-private i, .boop-public i {
  font-size: 16px;
}

.boop-private i {
  color: #555;
}

.boop-public i {
  color: #4caf50;
}

.boop-image-container {
  width: 100%;
  height: 240px;
  position: relative;
}

.boop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.boop-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.boop-location i {
  color: #333;
}

.boop-actions {
  display: flex;
  gap: 15px;
}

.boop-share i, .boop-calendar i {
  font-size: 16px;
  color: #333;
  transition: color 0.2s ease;
}

.boop-share i:hover, .boop-calendar i:hover {
  color: #ff5757;
}

.boop-image-container a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.boop-image-container a:hover {
  opacity: 0.9;
}

.location-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-link:hover {
  color: #ff5757;
}

.location-link i {
  color: #ff5757;
}

.location-link:hover i {
  color: #e04545;
}

.location-pin-icon {
  width: 16px;
  height: 16px;
  stroke: #ff5757;
  margin-right: 6px;
  flex-shrink: 0;
}

.location-link:hover .location-pin-icon {
  stroke: #e04545;
}

.location-link .fas.fa-map-marker-alt {
  display: none;
}

.boop-privacy {
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.privacy-icon.locked {
  stroke: #555;
}

.privacy-icon.unlocked {
  stroke: #4caf50;
}

.boop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.boop-views-container {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.person-icon {
  width: 16px;
  height: 16px;
  stroke: #ff5757;
}

.boop-views::before {
  display: none;
}

.privacy-container {
  position: relative;
}

.privacy-tooltip {
  position: absolute;
  bottom: 100%;
  right: -5px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
  margin-bottom: 5px;
}

.privacy-container:hover .privacy-tooltip {
  opacity: 1;
  visibility: visible;
}

.privacy-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.privacy-container:hover .privacy-icon.locked {
  stroke: #333;
}

.privacy-container:hover .privacy-icon.unlocked {
  stroke: #3d9c40;
}


/* Estilos para los iconos de vistas */
.boop-stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.boop-views-container {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #555;
}

.eye-icon {
  color: #e74c3c;
  stroke: #e74c3c;
}

/* En home.css */
.boop-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #e74c3c;
}