/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    background-color: #ede8dd;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #edece7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-title a {
    text-decoration: none;
    color: #c11520;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s, background 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-title a:hover {
    color: #fff;
    background-color: #c11520;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    min-width: 220px;
}

.dropdown-content a {
    color: #333;
    padding: 10px 16px;
    display: block;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #c11520;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Home Title */
.home-title {
    background: url('../images/home/home1.png') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 6px #000;
    padding: 40px 20px;
}

.home-title h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.home-title p {
    font-size: 1.5em;
    max-width: 600px;
}

/* Home Content */
.homecontent {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.homecontent h1 {
    font-size: 2em;
    color: #790502;
    margin-bottom: 20px;
}

.homecontent p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.homecontent img {
    width: 80%;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
    display: block;
}

.homecontent a {
    background-color: #c11520;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.homecontent a:hover {
    background-color: #fff;
    color: #c11520;
    border: 1px solid #c11520;
}

/* Footer */
footer {
    background-color: #989796;
    color: #fff;
    padding: 40px 20px;
    font-size: 0.9em;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-column h3 {
    color: #c11520;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c11520;
}

.social-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: #c11520;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 4em;
    font-size: 1.2em;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    .home-title h2 {
        font-size: 2em;
    }
    .home-title p {
        font-size: 1em;
    }
    .homecontent h1 {
        font-size: 1.5em;
    }
    .homecontent p {
        font-size: 1em;
    }
}

