/* Luxurious Gold CSS - Modernized Design */
:root {
    --primary-color: #d4af37;
    --primary-dark: hsl(46, 70%, 40%); /* Darkened version of #d4af37 */
    --secondary-color: #333333;
    --text-color: #ffffff;
    --accent-color: #b8962e;
    --shadow-color: rgba(0,0,0,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { line-height: 1.7; color: var(--text-color); background: var(--secondary-color); font-family: 'Playfair Display', serif; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
header { position: sticky; top: 0; background: rgba(51,51,51,0.95); backdrop-filter: blur(10px); z-index: 1000; transition: all 0.3s ease; }
nav { display: flex; justify-content: space-between; align-items: center; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav ul li a { color: var(--text-color); text-decoration: none; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; position: relative; transition: color 0.3s ease; }
nav ul li a::before { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary-color); transform: scaleX(0); transition: transform 0.3s ease; }
nav ul li a:hover::before { transform: scaleX(1); }
nav ul li a:hover { color: var(--primary-color); }
.banner { height: 80vh; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; background-attachment: fixed; background-size: cover; }
.banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, var(--secondary-color)); opacity: 0.7; }
.banner-content { z-index: 1; animation: fadeIn 1.5s ease-out; }
.banner h1 { font-size: 5rem; margin-bottom: 1rem; text-shadow: 3px 3px 6px var(--shadow-color); }
.banner p { font-size: 1.8rem; max-width: 800px; margin: 0 auto; }
section { padding: 6rem 0; display: grid; gap: 3rem; }
section h2 { font-size: 3.5rem; text-align: center; margin-bottom: 3rem; position: relative; }
section h2::after { content: ''; display: block; width: 100px; height: 3px; background: var(--primary-color); margin: 1rem auto 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: rgba(255,255,255,0.05); border: 1px solid var(--accent-color); border-radius: 15px; overflow: hidden; transition: all 0.4s ease; box-shadow: 0 4px 15px var(--shadow-color); }
.card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 35px var(--shadow-color); }
.card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s ease; }
.card:hover img { transform: scale(1.1); }
.card-content { padding: 1.5rem; }
.card h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--primary-color); }
.card p { font-size: 1.1rem; margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif; }
.card a { display: inline-block; padding: 0.8rem 1.5rem; background: var(--primary-color); color: var(--secondary-color); text-decoration: none; border-radius: 5px; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif; font-weight: bold; }
.card a:hover { background: var(--primary-dark); transform: translateY(-2px); }
form { display: grid; gap: 1.5rem; max-width: 600px; margin: 0 auto; }
form input, form textarea { padding: 1rem; background: rgba(255,255,255,0.1); border: 1px solid var(--primary-color); border-radius: 8px; color: var(--text-color); font-size: 1rem; }
form button { padding: 1rem; background: var(--primary-color); color: var(--secondary-color); border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; font-size: 1.1rem; }
form button:hover { background: var(--primary-dark); transform: translateY(-3px); }
footer { padding: 3rem 0; text-align: center; background: rgba(0,0,0,0.2); }
footer p { font-size: 1rem; }
footer .flex { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
footer a { color: var(--text-color); transition: color 0.3s ease; }
footer a:hover { color: var(--primary-color); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px) { .banner h1 { font-size: 4rem; } .banner p { font-size: 1.5rem; } }
@media (max-width: 768px) {
    .banner { height: 60vh; }
    .banner h1 { font-size: 3rem; }
    .banner p { font-size: 1.2rem; }
    nav ul { flex-direction: column; gap: 1rem; text-align: center; }
    section { padding: 4rem 0; }
    .grid { grid-template-columns: 1fr; }
    .card img { height: 200px; }
}
