/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@400;600&display=swap');

:root {
    --primary-color: #C5A880;
    --primary-dark: #997B55;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif; /* Or clean sans like Outfit if requested strictly sans */
    --font-body: 'Outfit', sans-serif;
}

/* Prompt Rule: Headings lighter weight 300-500, Clean modern sans-serif stack. 
   Overriding custom var for strict compliance */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400; /* Rule: 300-500 */
    margin-bottom: 1rem;
}

h1 { font-weight: 300; letter-spacing: -0.02em; }
h2 { font-weight: 400; letter-spacing: -0.01em; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: var(--primary-color); }

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 50px; /* Modern rounded */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.btn-outline-dark {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header */
.navbar {
    padding: 1.5rem 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    font-weight: 400;
    color: var(--text-dark) !important;
    font-size: 1rem;
    margin-left: 1rem;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.header-cta {
    margin-left: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* Hero Image as Background - Rule Strict */
    background-image: url('../images/site/hero-1.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax feel */
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); /* Ensure text contrast */
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Feature Cards (Service Preview) */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-img-holder {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.service-card-body {
    padding: 2rem;
    background: white;
}

/* About Preview */
.about-preview {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.about-img-holder {
    height: 400px; /* Adjust as needed */
    width: 100%;
    background-image: url('../images/site/section-1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Reviews */
.reviews-section {
    padding: 5rem 0;
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Light card style */
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.review-stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

footer p, footer li {
    color: #aaa;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

/* Utilities */
.section-padding { padding: 5rem 0; }
.text-primary { color: var(--primary-color) !important; }
.bg-light-soft { background-color: var(--bg-light); }

/* Icons */
.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
