/* Hero Section - Homepage */
.hero {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f6f0ea 0%, #f6f0ea 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,169,97,0.15) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover::before {
    transform: translateX(0);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Categories Section */
.categories {
    padding: 6rem 5%;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: scale(1.02);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
}

.category-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.category-card:hover .category-content h2 {
    transform: translateY(-10px);
}

.category-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.category-card:hover .category-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Collection Preview Section - Magazine Editorial Style */
.collection-preview {
    padding: 8rem 5% 10rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.collection-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--primary-dark);
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Magazine-style asymmetric grid */
.collection-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    position: relative;
}

.collection-item {
    position: relative;
    overflow: hidden;
    background: white;
    opacity: 0;
    animation: fadeInItem 0.8s ease-out forwards;
}

/* Asymmetric layout pattern */
.collection-item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    animation-delay: 0.1s;
}

.collection-item:nth-child(2) {
    grid-column: 6 / 10;
    grid-row: 1 / 2;
    animation-delay: 0.2s;
}

.collection-item:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 3;
    animation-delay: 0.3s;
}

.collection-item:nth-child(4) {
    grid-column: 6 / 10;
    grid-row: 2 / 3;
    animation-delay: 0.4s;
}

.collection-item:nth-child(5) {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
    animation-delay: 0.5s;
}

.collection-item:nth-child(6) {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
    animation-delay: 0.6s;
}

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

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.collection-item:hover::before {
    opacity: 1;
}

.collection-image-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Larger items get more height */
.collection-item:nth-child(1) .collection-image-container,
.collection-item:nth-child(3) .collection-image-container {
    min-height: 650px;
}

.collection-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--medium-gray);
    opacity: 0.15;
    letter-spacing: -1px;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%) contrast(1.05);
}

.collection-item:hover .collection-image {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
}

/* Overlay info that appears on hover */
.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .collection-info {
    transform: translateY(0);
}

.collection-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.collection-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    font-weight: 300;
    max-width: 90%;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Decorative element */
.collection-preview::after {
    content: '✦';
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.4;
}

/* Footer */
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    /* Simplify to 2-column layout */
    .collection-item:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 2;
    }
    
    .collection-item:nth-child(2) {
        grid-column: 7 / 13;
        grid-row: 1 / 2;
    }
    
    .collection-item:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 2 / 3;
    }
    
    .collection-item:nth-child(4) {
        grid-column: 7 / 13;
        grid-row: 2 / 3;
    }
    
    .collection-item:nth-child(5) {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }
    
    .collection-item:nth-child(6) {
        grid-column: 7 / 13;
        grid-row: 3 / 4;
    }
    
    .collection-image-container,
    .collection-item:nth-child(1) .collection-image-container,
    .collection-item:nth-child(3) .collection-image-container {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-card {
        height: 450px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .collection-preview {
        padding: 5rem 5% 6rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }

    /* Single column on mobile */
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collection-item,
    .collection-item:nth-child(1),
    .collection-item:nth-child(2),
    .collection-item:nth-child(3),
    .collection-item:nth-child(4),
    .collection-item:nth-child(5),
    .collection-item:nth-child(6) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .collection-image-container,
    .collection-item:nth-child(1) .collection-image-container,
    .collection-item:nth-child(3) .collection-image-container {
        min-height: 400px;
    }
    
    .collection-info {
        padding: 2rem 1.5rem;
    }
    
    .collection-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .collection-name {
        font-size: 1.4rem;
    }
    
    .collection-image-container {
        min-height: 350px;
    }
}