@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../Images/wet-plant.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #2d5f2f 0%, #367d38 100%);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.header h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.buttons {
    margin-top: 10px;
}

button {
    background: linear-gradient(135deg, rgba(54, 125, 56, 0.9) 0%, rgba(45, 95, 47, 0.9) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    margin: 5px;
    cursor: pointer;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    background: linear-gradient(135deg, rgba(69, 160, 73, 0.95) 0%, rgba(54, 125, 56, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

button:active {
    transform: translateY(0);
}

.nav {
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.nav button {
    margin: 5px 8px;
}

.main {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.main p {
    line-height: 1.8;
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.main img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin: 30px 0;
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.main img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.contact-section {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-section h2 {
    margin-top: 0;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.contact-links a:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.contact-links a img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: contain;
}

.contact-links a:first-child img {
    border-radius: 50%;
}

.contact-links a:last-child img {
    border-radius: 4px;
}

address {
    font-style: normal;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: inline-block;
}

address p {
    margin: 0;
    text-align: center;
}

a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFA500;
    text-decoration: underline;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
    margin: 40px 0;
}

.section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 3px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .main {
        padding: 25px;
        margin: 20px 15px;
    }
    
    .main h1 {
        font-size: 2.2em;
    }
    
    .main h2 {
        font-size: 1.6em;
    }
    
    .nav button {
        display: block;
        width: 100%;
        margin: 8px 0;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-links {
        flex-direction: column;
    }
    
    .main img {
        width: 100%;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    color: #f0f0f0;
    font-size: 0.9em;
    text-align: center;
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.6em;
    }
    
    .main {
        padding: 20px;
    }
    
    .main h1 {
        font-size: 1.8em;
    }
    
    .main h2 {
        font-size: 1.4em;
    }
    
    .footer {
        padding: 15px;
        font-size: 0.85em;
    }
}
