* {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', 'Yu Mincho', serif;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background: #f9f6f0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    color: #5d4e37;
    font-size: 17px;
    line-height: 34px;
    margin-bottom: 50px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: 70px;
    background: #8b7355;
    border-bottom: 3px solid #5d4e37;
}

.header .container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.navbar {
    margin: 0;
    border: none;
}

.navbar-inverse {
    background: transparent;
    border: none;
}

.navbar-brand {
    display: none;
}

.navbar-toggle {
    margin-top: 18px;
    border-color: #f9f6f0;
}

.navbar-toggle .icon-bar {
    background: #f9f6f0;
}

.navbar-collapse {
    text-align: center;
}

.navbar-nav {
    float: none;
    display: inline-block;
    margin: 0;
}

.navbar-nav>li {
    float: left;
}

.navbar-nav>li>a {
    color: #f9f6f0 !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 70px !important;
    height: 70px !important;
    padding: 0 22px !important;
    transition: all 0.3s;
}

.navbar-nav>li>a:hover {
    background: rgba(249,246,240,0.15);
}

.baner-content {
    margin-top: 70px;
    padding: 80px 70px 60px;
}

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

.center-image {
    width: 100%;
    max-width: 700px;
    height: 420px;
    background: url(../img/banner_bg.jpg);
    background-size: cover;
    background-position: center;
    margin: 0 auto 45px;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(93,78,55,0.25);
    border: 6px solid #8b7355;
}

.baner-content .text-content h2 {
    font-size: 44px;
    font-weight: 400;
    color: #5d4e37;
    letter-spacing: -0.5px;
    line-height: 1.4;
    margin-bottom: 50px;
    word-wrap: break-word;
    font-style: italic;
    text-align: center;
}

#portfolio {
    padding: 60px 70px 100px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.content-wrapper .container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.inner-container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.inner-container .row {
    margin: 0;
}

.inner-container .col-md-12 {
    background: rgba(255,255,255,0.95);
    padding: 100px 90px;
    border-radius: 12px;
    border: 3px solid #8b7355;
}

.projects-holder-3 h3 {
    font-size: 36px;
    font-weight: 400;
    color: #5d4e37;
    margin-bottom: 50px;
    line-height: 1.3;
    font-style: italic;
}

.projects-holder-3 p {
    font-size: 17px;
    line-height: 34px;
    color: #5d4e37;
}

.projects-holder-3 img {
    display: none;
}

footer {
    background: #5d4e37;
    padding: 70px;
    border-top: 3px solid #8b7355;
}

footer .container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-nav-grid a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 20px;
    background: rgba(249,246,240,0.12);
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
    border: 2px solid rgba(249,246,240,0.2);
}

.footer-nav-grid a:hover {
    background: rgba(249,246,240,0.22);
    border-color: rgba(249,246,240,0.4);
}

footer .logo a {
    color: #f9f6f0;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

footer p {
    color: rgba(249,246,240,0.9);
    font-size: 14px;
    text-align: center;
    margin: 0;
    line-height: 26px;
}

@media (max-width: 991px) {
    .center-image {
        height: 350px;
    }
    
    .inner-container .row {
        grid-template-columns: 1fr;
    }
    
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .navbar-nav>li {
        float: none;
    }
    
    .navbar-nav>li>a {
        line-height: normal !important;
        height: auto !important;
        padding: 15px 20px !important;
    }
    
    .navbar-collapse {
        background: #8b7355;
    }
    
    .center-image {
        height: 280px;
        margin-bottom: 50px;
    }
    
    .baner-content,
    #portfolio,
    footer {
        padding-left: 35px;
        padding-right: 35px;
    }
    
    .baner-content .text-content h2 {
        font-size: 34px;
    }
    
    .inner-container .col-md-12 {
    
        padding: 45px 35px;
    }
    
    .projects-holder-3 h3 {
        font-size: 28px;
    }
    
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    p {
        font-size: 16px;
        line-height: 32px;
    }
}
