/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Why Whisky Section with Images */
.why-whisky-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 5rem;
}

.why-whisky-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.why-whisky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-whisky-image:hover img {
    transform: scale(1.1);
}

.why-whisky-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.why-whisky-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(244, 244, 244, 0.8);
    margin-bottom: 1.5rem;
}

.why-whisky-list {
    list-style: none;
    margin-top: 2rem;
}

.why-whisky-list li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: rgba(244, 244, 244, 0.8);
    font-size: 1.05rem;
}

.why-whisky-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-start);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Barrel Section */
.barrel-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.barrel-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
}

.barrel-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.barrel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.barrel-card:hover img {
    transform: scale(1.1);
}

.barrel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 24, 35, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100px);
    transition: transform 0.5s ease;
}

.barrel-card:hover .barrel-overlay {
    transform: translateY(0);
}

.barrel-overlay h3 {
    color: var(--gold-start);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.barrel-overlay p {
    color: rgba(244, 244, 244, 0.9);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #0f1823 0%, #1a2533 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--gold-start);
    font-size: 1.5rem;
}

.process-step p {
    color: rgba(244, 244, 244, 0.8);
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .why-whisky-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .barrel-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .barrel-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

