/* ============================================
   waarderingsbon.nl - Pure CSS Stylesheet
   Inspired by cadeaukaart.nl - Minimal Design
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* USP Bar */
.usp-bar {
    background-color: #f9f8f6;
    border-bottom: 1px solid #e8e6e3;
    padding: 0.625rem 0;
}

.usp-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

@media (min-width: 768px) {
    .usp-items {
        justify-content: space-between;
    }
}

.usp-item {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e6e3;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}

.logo-accent {
    color: #b8860b;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: default;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1a1a2e;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a1a2e;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #e8e6e3;
}

.mobile-nav.active {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

/* Main Content */
.main {
    flex: 1;
    padding: 3rem 0 4rem;
}

@media (min-width: 640px) {
    .main {
        padding: 4rem 0;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 36rem;
    margin: 0 auto 0.75rem;
}

.hero-accent {
    font-size: 0.875rem;
    color: #b8860b;
    font-weight: 500;
}

.title-accent {
    width: 3rem;
    height: 0.25rem;
    background-color: #b8860b;
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card Component */
.card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.card-image{
  aspect-ratio: 3 / 2;   /* instead of 1 / 1 */
  position: relative;
  overflow: hidden;
  padding: 0;
}

.card-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;      /* fills nicely */
  object-position: center;
}

/* text on top of the image */
.card-image-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
}

.card-image-keuze {
    background: linear-gradient(135deg, #f7931a 0%, #ffb347 100%);
}

.card-image-bol {
    background-color: #0f1e6e;
}

.card-image-bol .card-image-text {
    font-size: 3rem;
}

.card-content {
    padding: 1.25rem;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
}

.card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #b8860b;
}

.card-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Card Preview (Welcome page) */
.card-preview {
    max-width: 16rem;
    margin: 0 auto 2rem;
}

.card-preview .card-content {
    padding: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: #b8860b;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    color: #1a1a2e;
    border: 1px solid #e8e6e3;
}

.btn-outline:hover {
    background-color: #f9f8f6;
}

.btn-full {
    display: block;
    width: 100%;
}

/* Login Container */
.login-container {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .login-title {
        font-size: 1.875rem;
    }
}

.login-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.login-form {
    margin-top: 2rem;
    text-align: left;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #1a1a2e;
    background-color: #ffffff;
    border: 1px solid #e8e6e3;
    border-radius: 0.375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

/* Error Message */
.error-message {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

/* Confirmation Container */
.confirmation-container {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background-color: #b8860b;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 4rem;
    border-radius: 50%;
}

.confirmation-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .confirmation-title {
        font-size: 1.875rem;
    }
}

.confirmation-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Disclosure Box */
.disclosure {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    text-align: left;
}

.disclosure p {
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e8e6e3;
    padding: 2rem 0;
    margin-top: auto;
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: #6b7280;
}