body{
    background-color: #d2addb;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

header {
    background: linear-gradient(135deg, #5253a7, #7e54b8);
    color: white;
    border-radius: 50px;
    padding: 16px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dark-theme {
  background-color: #121212;
  color: #ffffff;
}

.dark-theme nav {
  background-color: #1e1e1e;
}

.dark-theme .bird-card {
  background-color: #2a2a2a;
  color: #ffffff;
}

.dark-theme footer {
  background-color: #1e1e1e;
  color: #ffffff;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.logo span {
    color: #ffd700;
}

.tagline {
    font-style: italic;
    margin-bottom: 16px;
}

nav {
    border-radius: 40px;
    background-color: #322259;
    padding: 8px 0;
    width: 70%;
    margin-left: 15%;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 16px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: #dbeb82;
    color: #0066cc;
}

.container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 16px;
    text-align: center;
}

.hero {
    background: url("./backgrunds/final.jpg");
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 32px;
}

.hero-content {
    padding: 32px;
}

.hero h1 {
    font-size: 48px;
    font-style: italic;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero p {
    font-size: 16px;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.btn {
    display: inline-block;
    background-color: #ffd700;
    color: #0066cc;
    padding: 12.8px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    margin: 8px auto;
}

.birds-grid {
    display: grid;
    background: linear-gradient(135deg, #5253a7, #7e54b8);
    border-radius: 20px;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    justify-items: center;
    padding: 0 16px;
    margin-top: 0;
}

.bird-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bird-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bird-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bird-card:hover .bird-image video {
    transform: scale(1.05);
}

.bird-info {
    padding: 16px;
    flex-grow: 1;
}

.bird-info h3 {
    color: #d9db3d;
    margin-bottom: 8px;
}

footer {
    background-color: #79569e;
    color: rgb(3, 3, 3);
    text-align: center;
    padding: 10px;
    margin-top: 120px;
    width: 100%;
    border-radius: 50px;
}

.footer p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.signature {
    font-style: italic;
    font-size: 16px;
    margin-top: 20px;
}

.fish-icon {
    font-size: 24px;
    margin: 0 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #ffeb3b;
}