
/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 25px;
}

.social-icons a {
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile Socials */
.mobile-socials {
    display: none; /* Flex when in mobile menu */
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.mobile-socials svg {
    width: 32px;
    height: 32px;
}

/* Booking Platforms Section */
.booking-section {
    margin: 30px 0 40px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: inline-block;
    width: 100%;
    max-width: 700px;
}

.booking-title {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-weight: bold;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-platform {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-platform:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Legal Links */
.footer-legal {
    margin-top: 40px; /* Space above legal, before copyright */
    font-size: 0.85rem;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-legal ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-legal ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 1150px) {
    .social-icons {
        display: none; /* Hide desktop icons on mobile */
    }
    .mobile-socials {
        display: flex;
    }
}
