html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.bubblehouse-title {
    font-family: 'Segoe UI', 'Poppins', 'Montserrat', sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 0;
}

.bubblehouse-subtitle {
    display: block;
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

/* =========================
   ADMIN UI POLISH
   ========================= */

.admin-container {
    max-width: 1200px;
}

.admin-title {
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.admin-card {
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.btn {
    border-radius: 6px;
}
.hero-section {
    background-image: url('/images/home/bubblehouse-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45) );
    width: 100%;
    height: 100%;
    padding: 80px 20px;
}


.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

    .hero-title span {
        color: #ffd966;
        font-weight: 900;
    }

.hero-subtitle {
    font-size: 1.3rem;
    color: #f1f1f1;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}
.hero-title,
.hero-subtitle,
.hero-section .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease-out forwards;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-section .btn {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




