.full-bg-section {
    position: relative;
    background: url('background\ \(15\).jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 40px 20px;
  }
  
  .full-bg-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .brand-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 90%;
  }
  
  .brand-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  }
  
  .brand-line {
    width: 70px;
    height: 4px;
    background-color: orange;
    margin: 0 auto 10px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,165,0,0.6);
  }
  
  .brand-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: #eee;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    .brand-title {
      font-size: 2rem;
    }
  
    .brand-subtitle {
      font-size: 1rem;
    }
  
    .brand-line {
      width: 50px;
    }
  }
  














  .activity-offer-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #fff4e6, #ffe5b4);
    text-align: center;
  }
  
  .activity-offer-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .activity-offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
  }
  
  .activity-offer-card:hover {
    transform: translateY(-10px);
  }
  
  .activity-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .activity-info {
    padding: 20px;
  }
  
  .activity-info h3 {
    font-size: 1.5rem;
    color: #ff7a00;
    margin-bottom: 10px;
  }
  
  .activity-info p {
    color: #333;
    font-size: 1rem;
  }