/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5b47 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    letter-spacing: -0.5px;
}

.header-contact {
    background-color: #8b7355;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.header-contact:hover {
    background-color: #6b5b47;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('https://images.pexels.com/photos/208745/pexels-photo-208745.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d1d5db" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: #f7fafc;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #8b7355;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(139, 115, 85, 0.2);
}

.cta-button:hover {
    background-color: #6b5b47;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 115, 85, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: #2d3748;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.5px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #f1f0ed 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: #2d3748;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.contact-details {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.phone,
.email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.label {
    font-weight: 600;
    color: #2d3748;
    min-width: 60px;
}

.phone a,
.email a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone a:hover,
.email a:hover {
    color: #6b5b47;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3748;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.submit-btn {
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: #6b5b47;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: #a0aec0;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about,
    .contact {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .header-contact {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    body {
        font-size: 17px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .about-content p {
        font-size: 17px;
    }
    
    .contact-info p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-details {
        padding: 24px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}