:root {
    --color-beige: #f5f0e8;
    --color-beige-dark: #e8dfd3;
    --color-accent: #d4b895;
    --color-accent-dark: #c4a57d;
    --color-text: #4a4a4a;
    --color-text-light: #6e6e6e;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: var(--color-accent-dark);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: var(--color-beige);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 60px;
    width: auto;
    margin-right: 15px;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.site-description {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-light);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 30px;
}

.main-navigation a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-accent-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text);
}

/* Hero Section */
.hero {
    background-color: var(--color-beige);
    padding: 100px 0;
    text-align: center;
}

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

.hero p {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.values-card {
    flex: 1;
    background-color: var(--color-beige);
    padding: 40px;
    border-radius: 8px;
}

.values-card h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.value-icon {
    color: var(--color-accent-dark);
    margin-right: 15px;
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--color-beige);
}

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

.service-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: var(--color-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--color-accent-dark);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.blog-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.blog-card p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.read-more {
    font-weight: 500;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--color-beige);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--color-accent-dark);
    margin-right: 15px;
    font-size: 20px;
}

.instagram-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.instagram-item {
    aspect-ratio: 1/1;
    background-color: var(--color-beige-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

/* Footer */
.site-footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--color-white);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 20px;
}

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

.social-icon {
    color: var(--color-white);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-beige);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu.active li {
    margin: 10px 0;
}
