/* nabike.eu — Custom Styles */

:root {
    --nabike-green: #2d6a4f;
    --nabike-dark: #1b4332;
    --nabike-light: #d8f3dc;
}

/* Navbar */
#mainNav {
    background-color: rgba(27, 67, 50, 0.95);
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
}

#mainNav .nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}

#mainNav .nav-link:hover {
    color: var(--bs-warning) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.05'%3E%3Cpolygon fill='%23ffffff' points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* About Section */
.about-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
}

.about-image-placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #d8f3dc 0%, #b7e4c7 100%);
    border-radius: 1rem;
}

/* Service Cards */
.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

/* Gallery */
.gallery-placeholder {
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
    transition: background 0.2s ease;
}

.gallery-placeholder:hover {
    background: #e8e8e8;
}

/* Contact */
.contact-item a {
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--bs-warning) !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* Section spacing */
section {
    scroll-margin-top: 70px;
}
