:root {
    --primary: #8d5d46; /* Terracotta */
    --secondary: #2d453e; /* Deep Forest Green */
    --accent: #d4a373; /* Sandy Gold */
    --bg-light: #fdfaf5; /* Bone White */
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 250, 245, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary);
}

.cta-nav {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.cta-nav:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero_market_bazaar_1769664079608.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.5s ease-out;
}

#hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subheading {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* About Section */
#about {
    padding: 8rem 0;
    background-color: var(--white);
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

#about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Offerings Section */
#offerings {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--secondary);
}

.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.offering-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.offering-img {
    height: 300px;
    overflow: hidden;
}

.offering-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offering-card:hover .offering-img img {
    transform: scale(1.1);
}

.offering-content {
    padding: 2.5rem;
}

.offering-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.offering-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Testimonials Section */
#testimonials {
    padding: 8rem 0;
    background: var(--secondary);
    color: var(--white);
}

#testimonials .section-title {
    color: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Contact Section */
#contact {
    padding: 8rem 0;
}

.contact-box {
    background: var(--accent);
    padding: 6rem;
    border-radius: 40px;
    text-align: center;
    color: var(--secondary);
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box .btn {
    background: var(--secondary);
    color: var(--white);
}

/* Footer */
footer {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; }
    .contact-box { padding: 4rem 2rem; }
    #hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
}
