/* Homepage Specific Styles */

.hero-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="0.5" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.3" fill="%23000" opacity="0.015"/><circle cx="10" cy="90" r="0.4" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
    box-shadow: 0 4px 15px rgba(91, 127, 204, 0.3);
}

.hero-buttons .btn-secondary {
    backdrop-filter: none;
    background: transparent;
    border-color: var(--primary-blue);
}

/* Featured Collections styling */
.columns-container .column {
    position: relative;
    overflow: hidden;
}

.columns-container .column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 127, 204, 0.1), transparent);
    transition: left 0.6s ease;
}

.columns-container .column:hover::before {
    left: 100%;
}

/* Alternating section backgrounds - removed for uniform transparent background */
.section:nth-child(even) {
    background-color: transparent;
}

.section:nth-child(odd) {
    background-color: transparent;
}

/* Enhanced column styling for homepage */
.column-title {
    position: relative;
    padding-bottom: 0.5rem;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--hover-blue));
    border-radius: 2px;
}

/* Latest News section styling */
.section:last-of-type .columns-container {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .section:last-of-type .columns-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        background: var(--text-dark);
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
    }
}

/* Hover effects for homepage buttons */
.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.column .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 127, 204, 0.25);
}

/* Animation delays for staggered effects */
.columns-container .column:nth-child(1) {
    animation-delay: 0.1s;
}

.columns-container .column:nth-child(2) {
    animation-delay: 0.2s;
}

.columns-container .column:nth-child(3) {
    animation-delay: 0.3s;
}