/* ==========================================================
   HERO.CSS - Hero section (homepage)
   ========================================================== */

/* ---------------------------------------------------------
   Hero section container
   --------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: clamp(560px, 85vh, 900px);
    width: 100%;
    background-image: url('../img/index/hero-dog.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* ---------------------------------------------------------
   Hero title
   --------------------------------------------------------- */
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-title .text-secondary {
    color: #D4C4A0 !important;
    opacity: 1;
}

/* ---------------------------------------------------------
   Hero subtitle
   --------------------------------------------------------- */
.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* ---------------------------------------------------------
   Hero buttons
   --------------------------------------------------------- */
.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    background-color: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}
