/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8f8f8;
    color: #222;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3e50;
}
.logo span {
    color: #b48a78;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav a {
    text-decoration: none;
    color: #2d3e50;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #b48a78;
}
.hero {
    background: url('mainimg.avif') center/cover no-repeat;
    color: #fff;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45,62,80,0.75);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.hero h1 span {
    color: #b48a78;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    color: #f3e9e2;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.hero .btn {
    background: linear-gradient(90deg, #4bbfa6 0%, #3a8dde 100%);
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(45,62,80,0.10);
    border: none;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}
.hero .btn:hover {
    background: linear-gradient(90deg, #3a8dde 0%, #4bbfa6 100%);
    color: #fff;
}
section {
    padding: 4rem 0 3rem 0;
}
section:not(.hero) {
    scroll-margin-top: 90px;
}
section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d3e50;
    font-weight: 700;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.about-content img {
    width: 320px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.about-content div {
    flex: 1 1 300px;
}
.read-more-btn {
    background: none;
    color: #b48a78;
    border: 1px solid #b48a78;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.read-more-btn:hover {
    background: #b48a78;
    color: #fff;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(180,138,120,0.10);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    width: 340px;
    min-height: 480px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 12px 32px rgba(180,138,120,0.18);
}
.service-card img {
    width: 100%;
    max-width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    background: #eee;
    display: block;
}
.service-card h3 {
    color: #b48a78;
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.service-card p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    flex: 1;
}
.service-card .read-more-btn {
    margin-top: auto;
}
.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.portfolio-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    width: 320px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(180,138,120,0.12);
}
.portfolio-item img {
    width: 100%;
    display: block;
}
.portfolio-info {
    padding: 1rem;
}
.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    width: 320px;
    text-align: center;
}
.testimonial-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact input, .contact textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}
.contact textarea {
    min-height: 120px;
    resize: vertical;
}
.contact .btn {
    background: linear-gradient(90deg, #4bbfa6 0%, #3a8dde 100%);
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(45,62,80,0.10);
    border: none;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.contact .btn:hover {
    background: linear-gradient(90deg, #3a8dde 0%, #4bbfa6 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(45,62,80,0.15);
}
footer {
    background: #2d3e50;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 2rem;
}
footer a {
    color: #fff;
    text-decoration: none;
    transition: text-decoration 0.2s;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 900px) {
    .about-content, .services-list, .portfolio-gallery, .testimonials-list {
        flex-direction: column;
        align-items: center;
    }
    .service-card, .portfolio-item, .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    .services-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .service-card {
        width: 100%;
        max-width: 400px;
        min-height: unset;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-content {
        max-width: 95vw;
    }
}
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
        margin-left: auto;
    }
    .hamburger span {
        display: block;
        height: 4px;
        width: 100%;
        background: #2d3e50;
        margin: 5px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
    .nav-container.nav-open .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-container.nav-open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav-container.nav-open .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        box-shadow: 0 4px 16px rgba(45,62,80,0.10);
        padding: 1rem 0;
        display: none;
        z-index: 1000;
    }
    .nav-container.nav-open nav ul {
        display: flex;
    }
    nav a {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .hamburger {
        display: flex;
    }
    nav ul {
        width: 100%;
        align-items: flex-start;
    }
    .hero {
        min-height: 90vh;
        height: 90vh;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
    section {
        padding: 2rem 0 1.5rem 0;
    }
    .about-content img {
        width: 100%;
        max-width: 320px;
    }
}
@media (min-width: 601px) {
    .hamburger {
        display: none;
    }
} 
