/* Scandinavian Nature-Inspired Style */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
    --warm-white: #faf9f6;
    --soft-sage: #e8ede7;
    --light-wood: #c8b8a6;
    --muted-gray: #6b7280;
    --deep-charcoal: #1f2937;
    --radius: 20px;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--warm-white);
    color: var(--deep-charcoal);
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--deep-charcoal);
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: var(--muted-gray);
    margin-left: 30px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--deep-charcoal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 249, 246, 0.4);
    z-index: -1;
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: var(--radius);
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-divider {
    width: 50px;
    height: 1px;
    background: var(--light-wood);
    margin: 20px auto;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted-gray);
    margin-bottom: 30px;
}

.hero-phone {
    display: block;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--deep-charcoal);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--soft-sage);
    color: var(--deep-charcoal);
}

.btn-secondary {
    background: white;
    border-color: var(--soft-sage);
    color: var(--deep-charcoal);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 0;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--light-wood);
    margin-bottom: 20px;
}

/* Why Choose Us */
.features {
    padding: 100px 0;
    background: var(--soft-sage);
    border-radius: var(--radius);
    margin-bottom: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.masonry {
    column-count: 2;
    column-gap: 30px;
}

.masonry-item {
    margin-bottom: 30px;
    break-inside: avoid;
}

.masonry-item img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Contact */
.contact {
    padding: 100px 0;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 25px;
}

input, textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    background: #fafafa;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--soft-sage);
}

.btn-submit {
    background: var(--soft-sage);
    width: 100%;
    border: none;
    cursor: pointer;
}

#form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

/* Map */
.map {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 100px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--muted-gray);
}

.footer-col p, .footer-col a {
    color: var(--muted-gray);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
    padding-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .about, .features-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 30px; }
    .hero-content h1 { font-size: 2rem; }
    .masonry { column-count: 1; }
}
