/* General Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.app-container {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #eff6ff, #f5f3ff);
}

/* Hero Section */
.hero-section {
    min-height: 300px;
    position: relative;
    padding: 5rem 1rem;
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("./ballons.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.5), rgba(88, 28, 135, 0.5));
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #facc15;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-date {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Content Section */
.content-container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Cards */
.card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.date-text {
    color: #666;
}

/* Icons */
.icon-circle {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.blue-purple {
    background: linear-gradient(to bottom right, #3b82f6, #9333ea);
}

.green-teal {
    background: linear-gradient(to bottom right, #22c55e, #0d9488);
}

.orange-red {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.light-gray {
    background: #f3f4f6;
    color: #9ca3af;
}

/* No Speicals */
.no-speical h3 {
    font-size: 1.5rem;
    color: #4b5563;
}

.muted-text {
    color: #6b7280;
}

.tip-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(to right, #fef9c3, #ffedd5);
    font-weight: bold;
    text-align: center;
}

/* Random Speicals */
.btn-random {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(to right, #22c55e, #0d9488);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-random:hover {
    background: linear-gradient(to right, #16a34a, #115e59);
}

.special-box {
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    position: relative;
}

.red-box {
    background: linear-gradient(to right, #fef2f2, #fdf2f8);
    border-left: 4px solid #ef4444;
}

.blue-box {
    background: linear-gradient(to right, #eff6ff, #f3e8ff);
    border-left: 4px solid #3b82f6;
}

.special-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 1rem;
}

.red {
    background: linear-gradient(to bottom right, #ef4444, #ec4899);
}

.blue {
    background: linear-gradient(to bottom right, #3b82f6, #9333ea);
}

.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.red.badge {
    background: #fee2e2;
    color: #b91c1c;
}

.blue.badge {
    background: #dbeafe;
    color: #1e40af;
}

.placeholder {
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Why Section */
.why-section {
    margin-top: 5rem;
    text-align: center;
}

.why-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.grid-3 {
    display: grid;
    gap: 2rem;
}

@media(min-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    margin-top: 5rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 2rem;
}

.btn-bookmark {
    background: white;
    color: #2563eb;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 999px;
    cursor: pointer;
}

.btn-bookmark:hover {
    background: #f3f4f6;
}

/* Search Section */
.search-section {
    margin-top: 3rem;
    text-align: center;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.date-input {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    font-size: 1rem;
}

.btn-search {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #f97316, #dc2626);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 0.75rem;
    cursor: pointer;
}

.btn-search:hover {
    background: linear-gradient(to right, #ea580c, #b91c1c);
}

.search-result {
    margin-top: 1rem;
}

.result-item {
    font-size: 1.1rem;
    margin: 0.25rem 0;
}