﻿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%;
}


.section-title {
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #d4a373; /* Màu vàng gỗ/vàng đồng tinh tế */
    }

/* ----- Hero Section ----- */
.hero-section {
    position: relative;
    height: 60vh;
    background-image: url('../img/HeroImage/title_bg-1.jpg'); /* Thay bằng ảnh bìa đẹp nhất của bạn */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
    }

.hero-content {
    z-index: 1;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 1.25rem;
        font-weight: 300;
    }
/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .inspiration-gallery {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .inspiration-gallery {
        column-count: 1;
    }
}