* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #fffaf0;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #c0392b;
    padding: 15px 30px;
    color: white;
}

.navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.navbar nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('images/banner.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background: #f1c40f;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d4ac0d;
}

/* About Section */
.about, .contact {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}

.about h2, .contact h2 {
    color: #c0392b;
    margin-bottom: 15px;
}

.about p, .contact p {
    font-size: 18px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Floating Hens */
.hen {
    position: absolute;
    width: 120px;
    animation: flap infinite ease-in-out;
    opacity: 0.85;
}

@keyframes flap {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(5deg); }
    50% { transform: scale(1) rotate(-5deg); }
    75% { transform: scale(1.05) rotate(3deg); }
}

@media (max-width: 768px) {
    .hero h2 { font-size: 35px; }
    .hero p { font-size: 18px; }
}
