/* Collection Hero Section - Neutral Theme */
.collection-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.collection-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.collection-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.9) contrast(1.1);
}

.collection-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
    z-index: 2;
}

.collection-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.collection-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    padding-left: 60px;
}

.collection-hero-badge {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.collection-badge-image {
    height: 140px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
}

.collection-hero-text {
    color: #ffffff;
}

.collection-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Times New Roman', Times, serif;
    white-space: nowrap;
}

.collection-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 32px 0;
    font-weight: 400;
    max-width: 450px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.collection-hero-search {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.collection-hero-input {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    width: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Times New Roman', Times, serif;
}

.collection-hero-input::placeholder {
    color: #7f8c8d;
    opacity: 0.8;
}

.collection-hero-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.collection-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
    cursor: pointer;
    white-space: nowrap;
}

.collection-hero-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.collection-hero-button::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.collection-hero-button:hover::after {
    transform: translateX(4px);
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collection-hero-content {
        padding-left: 40px;
        max-width: 450px;
    }
    
    .collection-hero-title {
        font-size: 3rem;
        line-height: 1;
    }
    
    .collection-hero-description {
        font-size: 1.1rem;
    }
    
    .collection-badge-image {
        height: 55px;
    }
    
    .collection-hero-input {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .collection-hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .collection-hero-container {
        padding: 0 20px;
    }
    
    .collection-hero-content {
        padding-left: 20px;
        max-width: 100%;
        text-align: left;
    }
    
    .collection-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1;
        white-space: normal; /* Allow title to wrap on mobile */
    }
    
    .collection-hero-description {
        font-size: 1.1rem;
        margin-bottom: 24px;
        max-width: 100%; /* Allow full width on mobile */
    }
    
    .collection-hero-search {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    
    .collection-hero-input {
        width: 100%;
        max-width: none; /* Remove max-width restriction */
        padding: 14px 16px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
    
    .collection-hero-button {
        width: 100%; /* Full width button on mobile */
        padding: 14px 28px;
        font-size: 0.95rem;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .collection-badge-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .collection-hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .collection-hero-container {
        padding: 0 16px;
    }
    
    .collection-hero-content {
        padding-left: 16px;
    }
    
    .collection-hero-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
        line-height: 1.1;
        white-space: normal; /* Allow wrapping on small screens */
    }
    
    .collection-hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .collection-hero-search {
        gap: 10px;
    }
    
    .collection-hero-input {
        padding: 12px 14px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .collection-hero-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .collection-badge-image {
        height: 40px;
    }
}