/* design.css - full stylesheet for design page with ONE logo */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.section {
    padding: 6rem 0;
}

.section.alternate {
    background: #f8f9fa;
}

#design {
    background: transparent !important;
    text-align: center;
    color: #1a1a1a;
}

#design h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

#design p {
    max-width: 850px;
    margin: 0 auto 1.25rem;
    font-size: 1.15rem;
    color: #555;
}

.section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* SINGLE LOGO GALLERY - ONE CENTERED LOGO */
.logo-gallery {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.logo-item {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(135deg, #fff5e6, #ffe0b2);
    border-radius: 20px;
    border: 3px solid #f8d1a3;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-image:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
    border-color: #f4b75a;
}

.top-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.top-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.top-nav a:hover {
    color: #007bff;
}

footer {
    background: #1a1a1a;
    color: #ddd;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #7ab7ff;
}

@media (max-width: 768px) {
    #design h1 {
        font-size: 2.6rem;
    }

    .section {
        padding: 4rem 0;
    }

    .top-nav ul {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .logo-item {
        width: 240px;
        height: 240px;
    }
}