/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
}

nav ul li a:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1604881991720-f91add269bed?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #c0392b;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: #f9f9f9;
}

.link-box {
    text-align: center;
    padding: 30px;
    width: 30%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.link-box i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #2c3e50;
    color: white;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    .link-box {
        width: 80%;
        margin-bottom: 20px;
    }
    nav ul {
        flex-direction: column;
    }
}