/* External Resources */
@import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Merriweather&display=swap');
/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #444;
    text-align: center;
    margin: 10px 0;
}
/* Layout */
body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}
header {
    background: #333;
    color: #fff;
    line-height: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    min-height: 50px;
    z-index: 100;
}
main {
    background: #eee;
}
/* Footer Styles - Aligned with tour cards */
footer {
    width: 100%;
    background: #2b6cb0;
    margin-top: auto;
}

footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 1rem 0 1rem;
    max-width: 1200px; /* Same as tour cards */
    margin: 0 auto;
    gap: 2rem; /* Same gap as tour cards */
}

/* Three equal columns - matching card width */
footer .footer-col {
    flex: 1;
    min-width: 250px; /* Similar to min-width of tour cards */
    padding: 0;
}

footer .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700; /* Match tour card title weight */
    margin-bottom: 15px;
    text-align: left;
    font-family: 'Merriweather', serif;
}

footer .footer-col .links {
    list-style: none;
    padding: 0;
}

footer .footer-col .links li {
    margin-bottom: 0.75rem; /* Similar spacing to tour cards */
}

footer .footer-col .links li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem; /* Slightly larger to match tour cards */
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

footer .footer-col .links li a:hover {
    color: #22ccff;
}

/* Social media icons styling */
footer .social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

footer .social-icons a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-icons a:hover {
    color: #22ccff;
    transform: translateX(5px);
}

footer .social-icons i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Social media specific colors on hover */
footer .social-icons a[href*="facebook"]:hover i {
    color: #1877F2;
}

footer .social-icons a[href*="twitter"]:hover i {
    color: #1DA1F2;
}

footer .social-icons a[href*="instagram"]:hover i {
    color: #E4405F;
}

footer .social-icons a[href*="youtube"]:hover i {
    color: #FF0000;
}

/* BOTTOM SECTION - Full width dark section */
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background: #444;
    margin-top: 40px;
    width: 100%;
}

.footer-bottom small {
    color: #ccc;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Media Queries for Footer - Match tour cards breakpoints */
@media (max-width: 768px) {
    footer .footer-row {
        flex-direction: column;
        padding: 40px 0.75rem 0 0.75rem; /* Match mobile padding of tour cards */
        gap: 1.5rem; /* Match mobile gap of tour cards */
        max-width: 100%; /* Allow full width on mobile */
    }
    
    footer .footer-col {
        margin-bottom: 1.5rem;
        min-width: 100%;
        padding: 0;
    }
    
    footer .footer-col h4 {
        font-size: 1.1rem; /* Match mobile tour card title size */
    }
    
    footer .footer-col .links li a,
    footer .social-icons a {
        font-size: 0.9rem; /* Match mobile text size */
    }
    
    /* Main Content (Mob) - Consolidated media query */
    .container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    footer .footer-row {
        padding: 30px 0.75rem 0 0.75rem;
        gap: 1rem; /* Match smallest screen gap */
    }
}

/* Main Content */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Main Content */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Media Queries */
@media all and (max-width:768px) {
    /* Main Content (Mob) */
    .container {
        width: 100%;
    }
}
