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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fefefe;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: normal;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #8b4513;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

nav ul li a:hover {
    color: #8b4513;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5dc 0%, #deb887 100%);
    color: #2c3e50;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(139,69,19,0.1)"/></svg>') repeat;
    animation: float 30s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    flex: 1;
    z-index: 1;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-weight: bold;
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
    font-family: 'Arial', sans-serif;
}

.cta-button {
    display: inline-block;
    background: #8b4513;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: #a0522d;
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 1;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-image i {
    font-size: 12rem;
    opacity: 0.7;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* About Section */
#about {
    padding: 5rem 2rem;
    background: white;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    padding-right: 2rem;
}

.about-content h2 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #8b4513;
    font-weight: bold;
}

/* Portfolio Section */
#portfolio {
    padding: 5rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

#portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 200px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.portfolio-image i {
    font-size: 4rem;
    color: #8b4513;
    opacity: 0.6;
}

.portfolio-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.portfolio-item p {
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Commissions Section */
#commissions {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

#commissions h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing {
    margin-top: 4rem;
}

.pricing h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.price-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.price-item {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    color: #8b4513;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-item p {
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #8b4513;
    font-weight: bold;
}

/* Contact Section */
#contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f5dc 0%, #deb887 100%);
    color: #2c3e50;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

#contact form {
    max-width: 500px;
    margin: 0 auto;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: #8b4513;
}

#contact button {
    width: 100%;
    padding: 1rem;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

#contact button:hover {
    background: #a0522d;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    #hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-image i {
        font-size: 6rem;
    }

    #about {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .stat {
        margin-bottom: 1rem;
    }

    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .price-grid {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Scroll animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}
