@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Pinyon+Script&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Typography */

h1, h2, h3 {
    font-weight: 400;
    margin-bottom: 15px;
}

h1 {
    font-size: 32px;
    color: #333;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #e07850;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
}

/* Header */
.header {
    background-color: #fff;
    padding: 40px 20px 20px;
    text-align: center;
}

.site-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    color: #333;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Navigation */
.nav {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.nav li {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid #ccc;
}

.nav li:last-child {
    border-right: none;
}

.nav a {
    display: block;
    padding: 8px 0;
    color: #e07850;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover,
.nav li.active a {
    color: #c05830;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Pinyon Script', cursive;
    font-size: 52px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero p {
    color: #fff;
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e07850;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c05830;
    text-decoration: none;
}

/* Main Content */
.main-content {
    padding: 50px 40px;
    background-color: #fff;
    min-height: 400px;
    background-image:
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 8px 8px;
}

/* Home Page Images Grid */
.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.image-grid img {
    width: 318px;
    height: 318px;
    object-fit: cover;
    border-radius: 4px;
}

/* About Page */
.about-section {
    display: block;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-title {
    flex: 1;
}

.about-title h2 {
    font-family: 'Pinyon Script', cursive;
    font-size: 48px;
    color: #333;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.2;
}

.about-title .founder {
    font-family: 'Pinyon Script', cursive;
    font-size: 28px;
    color: #333;
    font-style: italic;
}

.about-image {
    flex-shrink: 0;
    margin-left: 40px;
}

.about-image img {
    width: 280px;
    height: auto;
    object-fit: cover;
}

.about-content {
    margin-top: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* Services Page */
.services-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.services-image {
    flex-shrink: 0;
}

.services-image img {
    width: auto;
    max-width: 450px;
    max-height: 500px;
    object-fit: contain;
    filter: grayscale(100%);
}

.services-content {
    flex: 1;
}

.services-content h1 {
    font-family: 'Pinyon Script', cursive !important;
    font-size: 48px !important;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.services-content ul {
    margin-left: 25px;
    margin-top: 15px;
}

.services-content li {
    margin-bottom: 3px;
    line-height: 1.5;
}

/* Contact Page */
.contact-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 0;
}

.contact-form h1 {
    font-family: 'Pinyon Script', cursive !important;
    font-size: 48px !important;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    color: #333;
}

.form-group label span {
    color: #c00;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.form-submit:hover {
    background-color: #333;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-family: 'Pinyon Script', cursive;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 5px;
    color: #333;
}

.map-container {
    margin-top: 0;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 30px 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #e07850;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #c05830;
}

.copyright {
    color: #666;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    .nav ul {
        flex-wrap: wrap;
    }

    .nav li {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about-header {
        flex-direction: column;
    }

    .about-image {
        margin-left: 0;
        margin-top: 20px;
    }

    .about-image img {
        width: 100%;
        max-width: 280px;
    }

    .services-section,
    .contact-section {
        flex-direction: column;
    }

    .services-image img {
        width: 100%;
        max-width: 350px;
        max-height: none;
    }

    .image-grid img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
