/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HEADER */
#main-header {
    width: 100%;
    height: 120px;
    background: #fff;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: 0.3s ease;
    border-bottom: 1px solid #eee;
}

#main-header.scrolled {
    height: 110px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #555;
}

/* HERO SECTION */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: #fdfdfd;
}

.hero-logo {
    max-width: 400px;
    margin-bottom: 20px;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #000;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fff;
    color: #000;
}

/* SECTION COMMONS */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: #000;
    margin: 15px auto;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    border-color: #000;
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #000;
}

/* FOOTER */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo {
    width: 250px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* RESPONSIVE */
.menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    #hero h1 {
        font-size: 1.8rem;
    }
}