/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Cambria', 'Times New Roman', serif;
    background: linear-gradient(135deg, #ffe8e8 0%, #fff5e8 100%);
    color: #8b1a1a;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(197, 17, 17, 0.15);
    overflow: hidden;
}

/* Welcome Header */
.welcome-header {
    background: linear-gradient(135deg, #c41e3a 0%, #d32f2f 50%, #ff6f00 100%);
    background-size: cover;
    background-position: center 35%;
    color: #fff9e6;
    padding: 60px 40px 50px;
    text-align: center;
    position: relative;
    min-height: 280px;
}

.welcome-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-style: italic;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.dog-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #ffd700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Intro Section */
.intro {
    padding: 40px 40px 20px;
    font-size: 1.15rem;
    text-align: center;
    color: #b71c1c;
    border-bottom: 2px solid #ffd700;
}

/* Sections */
.section {
    padding: 50px 40px;
    border-bottom: 2px solid #ffd700;
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #c41e3a;
    font-weight: 400;
    text-align: center;
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.card {
    background: #fff9f0;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(197, 17, 17, 0.2);
    border-color: #c41e3a;
    background: #fff5e8;
}

.card h3 {
    color: #b71c1c;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.card h3 a {
    color: #b71c1c;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.card h3 a:hover {
    color: #ff6f00;
    border-bottom-color: #ffd700;
}

.cuisine,
.location {
    color: #ff8f00;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 12px;
    font-weight: 600;
}

.card p {
    color: #8b1a1a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #ffd700;
    padding: 40px;
    text-align: center;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-links {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-link {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-link:hover {
    border-bottom-color: #ffd700;
    color: #ffeb3b;
}

.footer-divider {
    margin: 0 12px;
    opacity: 0.7;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.footer-email {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-email:hover {
    border-bottom-color: #ffd700;
    color: #ffeb3b;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .welcome-header {
        padding: 40px 30px 35px;
        min-height: 240px;
    }

    .welcome-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .dog-photo {
        width: 120px;
        height: 120px;
    }

    .intro,
    .section {
        padding: 30px 25px;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    footer {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .welcome-header h1 {
        font-size: 1.6rem;
    }

    .intro {
        font-size: 1rem;
    }

    .card {
        padding: 20px;
    }
}
