* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #3d2817 0%, #5c4033 50%, #4a3426 100%);
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    body {
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 30, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: #e8c9a0;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #d4b896;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e8c9a0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8c9a0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Horizontal Scroll Container */
.scroll-container {
    display: flex;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-top: 60px;
}

@media (max-width: 768px) {
    .scroll-container {
        display: block;
        height: auto;
        overflow: visible;
        scroll-snap-type: none;
    }
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: rgba(45, 30, 20, 0.5);
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #e8c9a0;
    border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #d4b896;
}

/* Section Styling */
.section {
    min-width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    padding: 40px;
}

@media (max-width: 768px) {
    .section {
        min-width: 100%;
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
    }
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero {
    background: rgba(77, 54, 38, 0.85);
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 4rem;
    color: #e8c9a0;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 3rem;
    color: #e8c9a0;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h3 {
    font-size: 1.5rem;
    color: #e8c9a0;
    margin-bottom: 15px;
    font-weight: 400;
}

h4 {
    font-size: 1.3rem;
    color: #e8c9a0;
    margin: 15px 0 10px;
    font-weight: 400;
}

p {
    color: #d4b896;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(45deg, #6b4423 0%, #5a3921 50%, #4d321f 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.placeholder-text {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.8;
    font-style: italic;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(77, 54, 38, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.service-card p {
    font-size: 1rem;
    margin-top: 10px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    text-align: center;
}

.portfolio-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #6b4423 0%, #5a3921 50%, #4d321f 100%);
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.portfolio-placeholder:hover {
    transform: scale(1.05);
}

.portfolio-item p {
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Contact Section */
.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-info {
    background: rgba(77, 54, 38, 0.6);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #e8c9a0;
}

@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 20px;
    }

    .image-placeholder {
        height: 300px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
