@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaf5; 
    color: #5d4037;
    line-height: 1.8;
}


header {
    background: #ffebd6;
    margin: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #ffd8b1;
    box-shadow: 20px 20px 60px #f0ece7, -20px -20px 60px #ffffff;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d35400;
    font-size: 1.1rem;
}

.container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}


.card {
    background: #fffcf9;
    padding: 2.5rem 2rem;
    border-radius: 50px 5px 50px 5px; 
    box-shadow: 10px 10px 20px #f5eee6, -10px -10px 20px #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: scale(1.03);
    border-radius: 5px 50px 5px 50px; 
    background: #fff5eb;
}

.card h2 {
    font-family: 'Playfair Display', serif;
    color: #ff944d; 
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    border-bottom: 2px dashed #ffd8b1;
    display: inline-block;
}

.card p {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.card b {
    color: #e67e22;
    background: #fff0e0;
    padding: 2px 6px;
    border-radius: 4px;
}


footer {
    text-align: center;
    padding: 4rem 2rem;
    color: #bdc3c7;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}


@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    header { margin: 10px; padding: 2rem 1rem; }
    .card { border-radius: 30px 5px; }
}