

/* The Pal House - Modern Interior Style Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background: #181818;
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px 0 48px;
    background: transparent;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 18px;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.navbar a:hover {
    color: #b2ff59;
}
.navbar .logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 48px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero-detail {
    font-size: 1.1rem;
    color: #fff;
    max-width: 420px;
    margin-bottom: 24px;
    font-weight: 400;
}
.hero-touch {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: transparent;
    cursor: pointer;
    margin-top: 32px;
    transition: border-color 0.2s, color 0.2s;
}
.hero-touch:hover {
    border-color: #b2ff59;
    color: #b2ff59;
}

section {
    width: 100%;
    margin: 0 auto 32px auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
}

.section-img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.15rem;
    color: #e0e0e0;
    text-align: left;
    max-width: 700px;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
    width: 100%;
}
.service {
    background: #232323;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px 16px;
    text-align: left;
    transition: box-shadow 0.2s;
}
.service h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.service p {
    font-size: 1rem;
    color: #bdbdbd;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 18px;
    width: 100%;
}
.contact-item {
    background: #232323;
    border-radius: 8px;
    padding: 12px;
    text-align: left;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.contact-item a {
    color: #b2ff59;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.navigation {
    margin-top: 24px;
    text-align: left;
}
.nav-link {
    display: inline-block;
    padding: 12px 28px;
    background: #232323;
    color: #fff;
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
    background: #b2ff59;
    color: #232323;
}

@media (max-width: 1200px) {
    .container {
        max-width: 98vw;
        padding: 0;
    }
    section {
        padding: 18px 8px;
    }
    .navbar {
        padding: 24px 12px 0 12px;
    }
    .hero {
        padding: 48px 12px 48px 12px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}