﻿


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*    background: linear-gradient(to bottom, #f5f0e8 0%, #e8dcc8 100%);*/
    background-image: url('/GiftVoucherPortal/images/Background.png');
    min-height: 100vh;
}


.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: white;
    color: #2d5016;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.header-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #2d5016;
}

    .header-links a {
        color: #2d5016;
        text-decoration: none;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.choice-section {
    text-align: center;
}

    .choice-section h1 {
        font-size: 3rem;
        color: #2d5016;
        margin-bottom: 60px;
    }

.choice-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.choice-card {
    background: #2d5016;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

    .choice-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .choice-card:hover::before {
        opacity: 1;
    }

    .choice-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

.choice-card-content {
    position: relative;
    z-index: 1;
}

.choice-card h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.choice-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1.05rem;
}

.choice-card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

    .choice-card-image img {
        max-width: 200px;
        max-height: 180px;
        filter: brightness(1.1);
    }

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }

    .choice-section h1 {
        font-size: 2rem;
    }

    header {
        padding: 15px 20px;
    }
}
