body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#fff5f5;
}

header{
    background:#b30000;
    color:white;
    padding:20px;
    text-align:center;
}

nav{
    background:#cc0000;
    text-align:center;
    padding:10px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:10px 15px;
    font-weight:bold;
}

nav a:hover{
    color:yellow;
}

.banner{
    background:url("images/banner.jpg");
    background-size:cover;
    height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:40px;
    font-weight:bold;
}

.container{
    width:90%;
    margin:auto;
    padding:20px;
}

h2{
    color:#b30000;
    border-bottom:2px solid #b30000;
    padding-bottom:5px;
}

.card{
    background:white;
    padding:15px;
    margin:15px 0;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

img{
    max-width:100%;
    border-radius:10px;
}

footer{
    background:#b30000;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:20px;
}

button{
    background:#cc0000;
    color:white;
    padding:10px 15px;
    border:none;
    border-radius:5px;
}

button:hover{
    background:#990000;
}

input, textarea{
    width:100%;
    padding:8px;
    margin:5px 0 10px 0;
}
.hero-horse{
    background:url("https://brocanvas.vn/wp-content/uploads/2025/11/Hinh-anh-Happy-New-Year-2026-Ruc-ro.jpg");
    background-size:cover;
    background-position:center;
    height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    color:white;
}

.hero-horse::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(179,0,0,0.5); /* lớp phủ đỏ */
}

.hero-text{
    position:relative;
    z-index:2;
    text-align:center;
    font-size:40px;
    font-weight:bold;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.feature-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.feature-card h3{
    color:#b30000;
}

.feature-btn{
    display:inline-block;
    margin:15px;
    padding:10px 20px;
    background:#cc0000;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

.feature-btn:hover{
    background:#990000;
}
.caption{
    font-size:14px;
    color:#555;
    padding:8px 10px 0 10px;
    font-style:italic;
}

.feature-card p{
    padding:0 15px;
    font-size:14px;
    color:#444;
}
.quote-section{
    background:linear-gradient(135deg,#fffcfc,#e60000);
    color:rgb(2, 0, 0);
    padding:40px 20px;
    margin-top:40px;
    border-radius:15px;
    text-align:center;
}

.quote-section blockquote{
    font-size:22px;
    font-style:italic;
    margin:20px auto;
    max-width:800px;
}

.quote-author{
    margin-top:10px;
    font-weight:bold;
    color:yellow;
}