* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lake-inspired color palette */
    --lake-blue: #7fb3d3;
    --deep-water: #5a9bd4;
    --weathered-wood: #a0896b;
    --dock-brown: #8b7355;
    --forest-green: #4a5d23;
    --sky-blue: #b8d4e3;
    --cloud-white: #f5f7fa;
    --dark-navy: #2c3e50;
    --warm-beige: #f4f1ec;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--dark-navy);
    background-color: var(--cloud-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--sky-blue);
}

.logo p {
    font-size: 0.9rem;
    color: var(--weathered-wood);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sky-blue);
}

/* Hero Section */
.hero {
    background: url('Images/Lake.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    color: var(--cloud-white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--weathered-wood);
    color: white;
    box-shadow: 0 4px 15px rgba(160, 137, 107, 0.3);
}

.btn.primary:hover {
    background: var(--dock-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--sky-blue);
}

.btn.secondary:hover {
    background: var(--sky-blue);
    color: var(--dark-navy);
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-navy);
}

/* Featured Products */
.featured-products {
    background: var(--cloud-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(127, 179, 211, 0.15);
    background: white;
    border: 1px solid var(--sky-blue);
}

.featured-item h3 {
    color: var(--dark-navy);
    margin: 1rem 0;
    font-size: 1.5rem;
}

/* About Section */
.about {
    background: var(--warm-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-navy);
}

.experience-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--deep-water);
    color: white;
    border-radius: 15px;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(90, 155, 212, 0.3);
}

.years {
    font-size: 3rem;
    font-weight: bold;
    color: var(--sky-blue);
}

.label {
    font-size: 1.1rem;
}

/* Gallery */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(127, 179, 211, 0.15);
    transition: transform 0.3s;
    border: 1px solid var(--sky-blue);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(90, 155, 212, 0.25);
}

.gallery-item h3 {
    padding: 1rem;
    background: var(--dark-navy);
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

/* Placeholder Images */
.placeholder-image {
    height: 200px;
    background: linear-gradient(135deg, var(--weathered-wood), var(--dock-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-image .placeholder-image {
    height: 300px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--lake-blue), var(--deep-water));
}

/* Contact */
.contact {
    background: var(--warm-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: var(--dark-navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--dark-navy);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(127, 179, 211, 0.15);
    border: 1px solid var(--sky-blue);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid var(--sky-blue);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--deep-water);
    box-shadow: 0 0 0 3px rgba(127, 179, 211, 0.1);
}

/* Footer */
footer {
    background: var(--dark-navy);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
    color: var(--sky-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-highlight {
        flex-direction: column;
        text-align: center;
    }
}