body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #b8d4e8;
    color: #222;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Hero / Home Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.home-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 0;
}

.home-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.home-catchphrase {
    font-size: 1.5em;
    font-style: italic;
}

/* Page Sections */
.page-section {
    padding: 80px 20px 40px;
}

h1 {
    text-align: center;
}

img {
    max-width: 90%;
    max-height: 90%;
}

/* Navigation */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #222;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    transition: 0.3s;
    padding-top: 60px;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    display: block;
    color: white;
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
}

/* Services */
.service-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

.service-section h2 {
    margin-top: 0;
}

@media (max-width: 767px) {
    .service-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* About */
.content-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .content-container {
        max-width: 50%;
    }
}

/* Contact */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container iframe {
    width: 100%;
    border: none;
    min-height: 500px;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    color: #555;
}

.site-footer a {
    color: #333;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: bounce 2s infinite;
}

.scroll-indicator.visible {
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .hero-section {
        flex-direction: column;
        padding: 20px 10px;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 40px;
        padding-bottom: 40px;
        box-sizing: border-box;
        justify-content: center;
    }
    .hero-section img {
        max-width: 90%;
        max-height: 55vh;
        width: 300px;
    }
    .home-text {
        margin-top: 0.5em;
    }
    .home-title, .home-catchphrase {
        text-align: center;
    }
    .home-catchphrase {
        font-size: 1.1em;
        padding-bottom: 20px;
    }
    .service-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 10px;
    }
    .service-img {
        width: 100px;
        height: 100px;
    }
    .page-section {
        padding: 60px 10px 30px;
    }
    .page-section p,
    .service-content p {
        font-size: 1.05em;
        line-height: 1.6;
    }
    .content-container {
        max-width: 100%;
        padding: 0 5px;
    }
    .contact-container {
        padding: 0 5px;
    }
    .scroll-indicator {
        bottom: 15px;
    }
}
