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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #070707;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.banner-container {
    margin-bottom: 0.25rem;
}

.banner-logo {
    max-width: 720px;
    width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #f8f8a0;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}


/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e6d47c;
}

.plex-card::before {
    background: #e6d47c;
}

.overseerr-card::before {
    background: #e6d47c;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e6d47c;
}

.plex-card .service-icon {
    color: #e6d47c;
}

.overseerr-card .service-icon {
    color: #e6d47c;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.service-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-weight: 300;
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: auto;
}

.service-link:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}


/* Footer */
.footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 300;
}

/* Nicole bottom image */
.nicole-bottom-image {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: cover;
    object-position: bottom;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .banner-logo {
        max-width: 480px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-logo {
        max-width: 360px;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1rem;
    }
}
