@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    background-color: #faf9f6;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

a { text-decoration: none; color: inherit; }


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a2b; /* Earthy tone */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: #8b5a2b; }

/* Modern Flex/Card Layouts */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.flex-half { flex: 1 1 400px; }

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8b5a2b;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover { background: #6b4420; }


.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/img2.jpg') center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; }

/* Footer */
footer {
    background: #1a1a1a;
    color: #ddd;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}


@media (max-width: 768px) {
    .nav-links { display: none; /
    .hero h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}