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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff9fb;
    color: #333;
    line-height: 1.6;
}

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


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
}

.logo h1 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.pop {
    color: #ff6b9d;
}

.sugar {
    color: #ffb6c1;
}

.news {
    color: #a18cd1;
    font-family: 'Poppins', sans-serif;
}

.tagline {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.weather-widget {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    padding: 10px 15px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.weather-widget i {
    font-size: 1.2rem;
}


nav {
    margin: 20px 0 30px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    border-radius: 10px;
    padding: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


.featured-article {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.featured-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b9d;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.featured-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff6b9d;
}

.featured-content p {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    align-self: flex-start;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8eab 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.news-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #a18cd1;
}

.card-content p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.category-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pets {
    background-color: #fbc2eb;
    color: #8e44ad;
}

.food {
    background-color: #f6d365;
    color: #d35400;
}

.celebrity {
    background-color: #ffb6c1;
    color: #c0392b;
}


.newsletter {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fbc2eb 0%, #a18cd1 100%);
    border-radius: 15px;
    margin: 40px 0;
    color: white;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter button {
    background-color: white;
    color: #a18cd1;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter button:hover {
    background-color: #ff6b9d;
    color: white;
    transform: translateY(-3px);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: #888;
    font-size: 0.9rem;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .featured-article {
        flex-direction: column;
    }
    
    .featured-image {
        min-height: 250px;
    }
}