/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Sedan+SC&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Sedan SC', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b91c1c;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #991b1b;
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Sedan SC', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.logo-full {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #b91c1c;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #b91c1c;
    color: white;
}

.btn-primary:hover {
    background-color: #991b1b;
}

.btn-secondary {
    background-color: white;
    color: #b91c1c;
    border: 1px solid #b91c1c;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

.about-paragraph {
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Featured Dishes Section */
.featured {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.featured-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.dish-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.dish-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.dish-card.border-green {
    border: 8px solid #16a34a;
}

.dish-card.border-white {
    border: 8px solid #d1d5db;
}

.dish-card.border-red {
    border: 8px solid #dc2626;
}

.dish-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.dish-content {
    padding: 2rem;
}

.dish-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.dish-description {
    color: #4b5563;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 1rem;
}

.footer-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
}

.footer-hours {
    font-size: 0.875rem;
}

.footer-hours p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Menu Page Styles */
.menu-page {
    padding: 4rem 0;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.menu-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.menu-card {
    max-width: 56rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.menu-card-header {
    padding: 2rem;
    text-align: center;
}

.menu-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.menu-card-subtitle {
    color: #6b7280;
}

.menu-card-content {
    padding: 2rem;
}

.menu-section {
    margin-bottom: 4rem;
}

.menu-section-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #b91c1c;
    margin-bottom: 2rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    color: #4b5563;
    line-height: 1.6;
}

.menu-item-price {
    margin-left: 1.5rem;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 1.125rem;
}

.menu-divider {
    margin-top: 2.5rem;
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* Donate Page Styles */
.donate-page {
    padding: 4rem 0;
    background-color: #f9fafb;
    min-height: calc(100vh - 200px);
}

.donate-header {
    text-align: center;
    margin-bottom: 4rem;
}

.heart-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #b91c1c;
}

.donate-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.donate-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.8;
}

.donate-card {
    max-width: 42rem;
    margin: 0 auto 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.donate-card-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.donate-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.donate-card-subtitle {
    color: #6b7280;
}

.donate-card-content {
    padding: 2rem;
}

.donate-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #b91c1c;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.radio-item input[type="radio"] {
    width: 16px;
    height: 16px;
}

.radio-item label {
    cursor: pointer;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.amount-btn {
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    background-color: white;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover {
    background-color: #f3f4f6;
}

.amount-btn.active {
    background-color: #b91c1c;
    color: white;
    border-color: #b91c1c;
}

.amount-btn-custom {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    background-color: white;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.75rem;
}

.amount-btn-custom:hover {
    background-color: #f3f4f6;
}

.amount-btn-custom.active {
    background-color: #b91c1c;
    color: white;
    border-color: #b91c1c;
}

.custom-amount-input {
    margin-top: 0.75rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

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

.btn-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    background-color: #b91c1c;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #991b1b;
}

.impact-message {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fef2f2;
    border-radius: 0.5rem;
}

.impact-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.impact-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.7;
}

.alternative-card {
    max-width: 42rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.alternative-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.alternative-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.alternative-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 1rem;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

