body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f1e6;
    color: #333;
    margin: 0;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.vintage-navbar {
    background-color: #5a4e4d;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.vintage-heading {
    font-family: 'Garamond', serif;
    color: #4a3d35;
    text-align: center; 
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.vintage-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #4a3d35;
    margin: 10px auto 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.container {
    width: 80%;
    max-width: 1300px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.vintage-section {
    background-color: #fff7e1;
    border: 1px solid #e5dcc5;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.vintage-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.vintage-footer {
    background-color: #5a4e4d;
    color: #fff;
    width: 100%;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 60px;
    box-sizing: border-box;
}

.vintage-footer p {
    margin: 4px 10px;
    text-align: center;
}

.navbar {
    transition: top 0.3s;
}


.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: #ffdd57;
}

.navbar-nav .nav-link.active {
    color: #ffdd57;
}

#contact p:first-of-type {
    margin-bottom: 40px;
}

#contact p:nth-of-type(3) {
    margin-bottom: 40px;
}

footer {
    padding: 20px 0;
    background-color: #f8f9fa;
    text-align: center;
    width: 100%;
}


.vintage-link {
    color: #007bff;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
}

.vintage-link:hover {
    text-decoration: underline;
}


.vintage-link i {
    margin-right: 8px;
    font-size: 18px;
}

.link-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.link-container a {
    color: #007bff;
    text-decoration: none;
    margin: 0 15px;
}

.link-container a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    body {
        padding-top: 56px;
    }

    .container {
        width: 95%;
        padding: 10px 15px;
        min-height: auto;
    }

    .vintage-footer {
        flex-direction: column;
        font-size: 12px;
        padding: 12px 10px;
    }

    .link-container {
        flex-direction: row;
        gap: 8px;
    }
}
