/* OSU Golf Club - Footer Components */

.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Footer sections */
.footer-section h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #bb0000;
    bottom: -8px;
    left: 0;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact information */
.contact-info {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 10px;
    color: #bb0000;
    font-size: 18px;
    margin-top: 2px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ccc;
}

/* Footer links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #bb0000;
}

.footer-links li a:hover {
    color: #bb0000;
}

/* Hours of operation */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.day {
    font-weight: 600;
}

/* Social media */
.social-links {
    display: flex;
    margin-top: 20px;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a4a4a;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #bb0000;
    transform: translateY(-3px);
}

/* Newsletter signup */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #4a4a4a;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #bb0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: #990000;
}

/* Bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #4a4a4a;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #bb0000;
    text-decoration: none;
}

/* Mobile responsiveness */
@media screen and (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}