/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #a3453a;
    /* Logo Tree Red */
    --secondary: #b38d5d;
    /* Logo River Gold */
    --dark: #2d3436;
    /* Logo Mountain Charcoal */
    --light: #f9f9f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Then apply it to your selectors */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--dark);
    padding: 20px 0;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 52, 54, 0.8), rgba(45, 52, 54, 0.8)), url('logo.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--primary);
}

.grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.portfolio-grid a {
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    color: inherit;
}

.card {
    background: var(--light);
    padding: 30px;
    border-left: 5px solid var(--secondary);
}

.project-card {
    border: 1px solid #eee;
    position: relative;
    padding: 30px;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.project-card .project-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;      /* adjust size as needed */
    height: auto;
    opacity: 0.9;     /* optional */
    pointer-events: none; /* keeps it from blocking clicks */
}

.project-tag {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 100px 0 50px;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
}

.copyright {
    margin-top: 50px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive Tablet/Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for this demo */
}