/* ============================================
   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;
    }
}

/* Hero Additional Styles */
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: rgba(244, 244, 244, 0.9);
}

.hero-tagline {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-start);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-exclusive {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(244, 244, 244, 0.7);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    font-size: 1.15rem;
    padding: 1.3rem 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(37, 51, 67, 0.5), rgba(26, 37, 51, 0.5));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(244, 244, 244, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Knight Frank Section */
.knight-frank-section {
    padding: 8rem 3rem;
}

.knight-frank-content {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.kf-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.kf-stat-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 135, 27, 0.15));
    border: 2px solid var(--gold-start);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kf-number {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.kf-label {
    font-size: 1.3rem;
    color: rgba(244, 244, 244, 0.9);
    font-weight: 600;
}

.kf-source {
    font-size: 0.85rem;
    color: rgba(244, 244, 244, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

.kf-comparison {
    background: rgba(15, 24, 35, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
}

.kf-comparison h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    position: relative;
}

.bar-fill {
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 135, 27, 0.3));
    border-radius: 6px;
    transition: width 1s ease;
}

.bar-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    color: rgba(244, 244, 244, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.bar-name {
    white-space: nowrap;
}

.bar-value {
    font-weight: 700;
    color: var(--gold-start);
}

.chart-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(244, 244, 244, 0.5);
    text-align: center;
    font-style: italic;
}

.kf-logo-container {
    background: linear-gradient(135deg, rgba(37, 51, 67, 0.5), rgba(26, 37, 51, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.kf-powered {
    font-size: 0.9rem;
    color: rgba(244, 244, 244, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kf-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.kf-description {
    font-size: 0.85rem;
    color: rgba(244, 244, 244, 0.7);
    line-height: 1.6;
}

/* Bottles vs Casks Section */
.bottles-vs-casks .why-whisky-content ul li {
    font-size: 1.02rem;
}

/* Responsive Updates */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .knight-frank-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .kf-logo-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .kf-number {
        font-size: 3.5rem;
    }
    
    .bar-label {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }
}

