/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --bg-black: #0f0f0f;       /* Deep Black */
    --bg-dark: #1a1a1a;        /* Dark Grey for cards */
    --gold-primary: #d4af37;   /* Metallic Gold */
    --gold-hover: #b59020;
    --text-white: #f5f5f5;
    --text-grey: #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--gold-primary); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- HEADER SECTION 1: TOP BAR --- */
.top-bar {
    background-color: #000;
    border-bottom: 1px solid #333;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-grey);
}

.social-icons a { margin-right: 15px; color: var(--gold-primary); }
.social-icons a:hover { color: #fff; }

.promo-banner {
    flex-grow: 1;
    text-align: center;
    color: var(--gold-primary);
    font-weight: 600;
    margin: 0 20px;
    overflow: hidden;
    white-space: nowrap;
}

.contact-info span { margin-left: 15px; }
.contact-info i { color: var(--gold-primary); margin-right: 5px; }

/* --- HEADER SECTION 2: MAIN NAV --- */
header {
    background-color: var(--bg-dark);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.brand-area { display: flex; align-items: center; gap: 15px; }
.brand-logo { height: 50px; width: auto; } /* Add your logo img here */
.brand-text h1 { font-size: 1.8rem; line-height: 1; margin: 0; letter-spacing: 1px; }
.brand-text .tagline { font-size: 0.8rem; color: var(--text-grey); font-style: italic; letter-spacing: 2px;}

nav ul { display: flex; gap: 30px; }
nav a { font-weight: 500; text-transform: uppercase; font-size: 0.9rem; }
nav a:hover { color: var(--gold-primary); }

/* --- FOOTER --- */
footer {
    background-color: var(--bg-dark);
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid var(--gold-primary);
    margin-top: 60px;
}
footer p { color: var(--text-grey); font-size: 0.9rem; }

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/hero-bg.jpg'); /* Ensure this image exists */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.hero h2 { font-size: 3.5rem; color: #fff; text-shadow: 2px 2px 4px #000; }
.hero span { color: var(--gold-primary); }
.btn {
    padding: 12px 30px;
    background-color: var(--gold-primary);
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
    display: inline-block;
}
.btn:hover { background-color: #fff; }

/* --- SECTIONS GENERAL --- */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; position: relative; }
.section-title::after {
    content: ''; width: 80px; height: 3px; background: var(--gold-primary);
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
}

/* --- ABOUT US --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 8px; border: 2px solid var(--gold-primary); }
.about-text h3 { margin-bottom: 20px; color: #fff; }
.about-text p { margin-bottom: 15px; color: var(--text-grey); }

/* --- CARDS (Services) --- */
.service-subsection { margin-bottom: 60px; }
.subsection-title { font-size: 1.8rem; margin-bottom: 30px; border-left: 4px solid var(--gold-primary); padding-left: 15px; color: #fff;}

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.card {
    background: var(--bg-dark);
    padding: 20px;
    border: 1px solid #333;
    border-radius: 8px;
    transition: 0.3s;
}
.card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }
.card h4 { color: var(--gold-primary); margin-bottom: 10px; font-size: 1.2rem; }
.card p { font-size: 0.9rem; color: var(--text-grey); }

/* --- WHY CHOOSE US --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.feature-box i { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 15px; }

/* --- REVIEWS --- */
.reviews-placeholder {
    background: #151515;
    border: 1px dashed var(--gold-primary);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 10px; text-align: center; }
    .contact-info { display: flex; flex-direction: column; gap: 5px; }
    .brand-area { flex-direction: column; text-align: center; }
    header { flex-direction: column; gap: 20px; }
    nav ul { gap: 15px; font-size: 0.8rem; }
    .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
