/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo img {
    max-height: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-mobile {
    display: none;
}

/* Main */
main {
    min-height: calc(100vh - 200px);
}

/* Homepage - Parking Preview */
.parking-preview {
    text-align: center;
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parking-preview a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.parking-preview a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.parking-preview a:hover::before {
    left: 100%;
}

.parking-preview a:hover {
    transform: translateY(-10px);
}

.parking-preview img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.parking-preview a:hover img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.parking-preview h2 {
    margin-top: 30px;
    font-size: 28px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Parking Page - Full Width Hero (breaks out of container) */
.hero {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    padding: 60px 0;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Documents Grid */
.documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.documents a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.documents a::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.documents a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
}

.documents a:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
}

.documents img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    object-fit: contain;
}

.documents a:hover img {
    filter: brightness(0.7);
}

/* Text Content */
.text-content {
    margin-top: 50px;
    line-height: 1.9;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 400;
}

.text-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.text-content strong {
    color: #ffffff;
}

.text-content a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.text-content a:hover {
    color: #6ba3e8;
    border-bottom: 1px solid #4a90e2;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    .content h1 {
        font-size: 26px;
    }
    
    .documents {
        grid-template-columns: 1fr;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .content {
        padding: 40px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #4a90e2;
    color: #ffffff;
}