/* Simple, clean reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

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

/* Header */
.hero {
    padding: 40px 20px 20px 20px;
}

.top-layout {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 40px;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 30px;
}

.title-section {
    text-align: center;
    overflow: visible;
    min-width: 0;
}

.title {
    font-size: 36rem !important;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Image Gallery */
.gallery {
    text-align: center;
    padding: 0px 30px 10px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Bottom Banners */
.bottom-banners {
    padding: 0 30px 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gisselbrecht-card {
    background-image: url('claude-gisselbrecht.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}



.gisselbrecht-card .card-content {
    position: relative;
    z-index: 2;
}

/* Circle Banner */
.circle-banner-section {
    text-align: center;
    padding: 20px 30px 60px 30px;
}

.circle-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.circle-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #2c3e50;
}

.circle-banner p {
    margin: 0;
}

.image-placeholder {
    background: #ffffff;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Side Cards */
.side-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
}

.side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.card-text {
    color: #6c757d;
    font-size: 0.65rem;
    margin: 8px 0 0 0;
    text-align: center;
    line-height: 1.3;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.card-logo-small {
    max-width: 90px;
    height: auto;
    margin-bottom: 0;
}

.oyster-logo-small {
    max-width: 72px;
    height: auto;
    margin-bottom: 0;
}

.click-here-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    white-space: nowrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px 20px 20px;
    margin-top: auto;
    border-top: 1px solid #e9ecef;
}

footer p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .top-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .title {
        font-size: 4rem;
    }
    
    .side-card {
        min-height: auto;
    }
    
    .circle-banner {
        width: 150px;
        height: 150px;
        font-size: 0.9rem;
    }
    
    .gisselbrecht-desktop {
        display: none !important;
    }
    
    .gisselbrecht-mobile {
        display: block !important;
    }
}
