/* =========================================
   HOME.CSS (Ana Sayfa Özel Stiller)
========================================= */

:root {
    --card-bg-opacity: 0.15;
}

.bg-yellow {
    background-color: var(--brand-yellow) !important;
    color: #000 !important;
}

.btn-yellow {
    background-color: var(--brand-yellow);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #dfb21b;
    color: #000;
}
.btn-green {
    background-color: var(--bs-teal);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: var(--bs-success);
    color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Product Cards */
.product-card {
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card i {
    font-size: 1.5rem;
    margin-bottom: auto;
    color: var(--brand-yellow);
}

.product-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 700;
}

/* Kart Varyasyonları */
.card-whiskey { background: linear-gradient(145deg, #2a1c15, #1a110d); }
.card-wine { background: linear-gradient(145deg, #2d1622, #1b0c14); }
.card-beer { background: linear-gradient(145deg, #2b2715, #1a170c); }
.card-energy { background: linear-gradient(145deg, #152233, #0c141f); }
.card-soft { background: linear-gradient(145deg, #112926, #091715); }
.card-snacks { background: linear-gradient(145deg, #301915, #1d0f0c); }

/* Feature Cards */
.feature-card {
    background-color: #161618;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}

.feature-card i {
    color: var(--brand-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
}

/* Info Cards */
.info-card {
    background-color: #161618;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.info-card-title {
    font-size: 0.7rem;
    color: var(--brand-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-card-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.section-padding {
    padding: 100px 0;
}