@charset "utf-8";
/* CSS Document */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.social-posts {
    max-width: 600px;
    margin: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.profile-pic {
  text-align: center; /* center the photo horizontally */
  margin-bottom: 15px; /* space below photo */
}

.foto-redonda {
  display: inline-block; /* make the container shrink-wrap */
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 80px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  border: 2px solid #fff; /* optional white border */
}

.foto-redonda img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.business-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.feeling-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

.feeling-text em {
    color: #888;
    font-style: italic;
}

.post-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    flex: 1;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

/* Hover and focus effects for all buttons */
.btn:hover,
.btn:focus {
    transform: translateY(-1px); /* subtle lift effect */
}

/* Specific button styles and their hover states */
.link-light {
    background-color: #4BD634;
    color: #fff;
}

.link-light:hover {
    background-color: #3db528;
}

.link-action {
    background-color: #0E2D09;
    color: white;
}

.link-action:hover {
    background-color: #133f0c;
}

.btn-profile {
    background-color: #E1E1E1;
    color: #000;
}

.btn-profile:hover {
    background-color: #cfcfcf;
    color: #000;
}

.btn-book {
    background-color: #1B5AE1;
    color: #fff;
    border: 1px solid #fff;
}

.btn-book:hover {
    background-color: #1549b5;
    border-color: #eee;
}


/* === Responsive Layout Wrapper === */
.main-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-areas:
    "sidebar main"
    "mobilead mobilead";
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  padding: 10px 15px;
  box-sizing: border-box;
}

.sidebar-ad {
  grid-area: sidebar;
  margin-bottom: 20px; /* ← Adds space between ads */
}

.sidebar-ad-label {
  font-size: 10px;
  margin: 8px 0px;
  color: #333;
  font-weight: 500;
}


.main-content {
  grid-area: main;
}

.mobile-ad {
  grid-area: mobilead;
  display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .main-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "mobilead";
  }

  .sidebar-ad {
    display: none;
  }

  .mobile-ad {
    display: block;
    margin: 10px auto;
  }
}

/* Google-style ad */
.ad-box {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  background-color: #fffef7;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.ad-box .ad-label {
  background-color: #f6c244;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-block;
}

.ad-box a {
  text-decoration: none;
  color: #1a0dab;
}

.ad-box a:hover {
  text-decoration: underline;
}

