@font-face {
    font-family: 'DegularVariable';
    src: url('../fonts/DegularVariable.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 50%, #1a1d29 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 1rem 1rem 1rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Grid lines background with fade effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23475569" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Fade effect overlay for grid lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(26, 29, 41, 0.1) 30%, rgba(26, 29, 41, 0.3) 60%, rgba(26, 29, 41, 0.7) 85%, rgba(26, 29, 41, 1) 100%),
        linear-gradient(0deg, transparent 0%, rgba(26, 29, 41, 0.1) 30%, rgba(26, 29, 41, 0.3) 60%, rgba(26, 29, 41, 0.7) 85%, rgba(26, 29, 41, 1) 100%),
        linear-gradient(90deg, transparent 0%, rgba(26, 29, 41, 0.1) 30%, rgba(26, 29, 41, 0.3) 60%, rgba(26, 29, 41, 0.7) 85%, rgba(26, 29, 41, 1) 100%),
        linear-gradient(270deg, transparent 0%, rgba(26, 29, 41, 0.1) 30%, rgba(26, 29, 41, 0.3) 60%, rgba(26, 29, 41, 0.7) 85%, rgba(26, 29, 41, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-headline {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.highlight {
    color: #FF6B35;
    /* Highlight color for FF6B35  */
    position: relative;
}

.hero-subtext {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #A0AEC0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.accent {
    color: #FF6B35;
    font-weight: 600;
}

/* Feature Cards */
.feature-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
    max-width: 220px;
}

.card-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
}

.card-2 {
    top: 12%;
    right: 8%;
    width: 210px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.card-3 {
    bottom: 15%;
    left: 8%;
    width: 200px;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
}

.card-4 {
    bottom: 18%;
    right: 10%;
    width: 190px;
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
}

.card-header {
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.card-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Multi-Location Demo */
.location-demo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-icon {
    font-size: 1.5rem;
}

.location-count {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

/* Smart KDS Demo */
.kds-demo {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.order-queue {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.order-item {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-weight: 500;
}

/* Variations Demo */
.variation-demo {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.variant-option {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-weight: 500;
}

/* QR Code Demo */
.qr-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
}

.qr-code-visual {
    text-align: center;
}

.qr-pattern {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.scan-text {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
}
