/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #004080;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0066cc;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #004080;
    color: white;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1.1em;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0066cc;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8em;
    color: #0066cc;
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.9em;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/florida_capitol_complex.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-container input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1em;
}

.search-container button {
    padding: 15px 25px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #004080;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5em;
    color: #0066cc;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Landmarks Section */
.landmarks {
    padding: 80px 0;
    background-color: #f0f8ff;
}

.landmark-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.landmark-slide {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease;
}

.landmark-slide:hover {
    transform: translateY(-5px);
}

.landmark-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.landmark-info {
    padding: 20px;
}

.landmark-info h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

.landmark-info p {
    color: #666;
}

/* Featured Businesses Section */
.featured {
    padding: 80px 0;
    background-color: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.business-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
}

.business-img {
    flex: 0 0 200px;
}

.business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-info {
    flex: 1;
    padding: 20px;
}

.business-info h3 {
    margin-bottom: 5px;
    font-size: 1.4em;
}

.business-category {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 10px;
}

.business-desc {
    margin-bottom: 15px;
}

.business-address, .business-phone {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.business-tags {
    display: inline-block;
    background-color: #e6f2ff;
    color: #0066cc;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-bottom: 15px;
}

.view-more {
    text-align: center;
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f0f8ff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2.5em;
    color: #0066cc;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 15px;
}

.footer-links h3, .footer-categories h3, .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-links ul, .footer-categories ul {
    list-style: none;
}

.footer-links ul li, .footer-categories ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-categories ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-categories ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #ccc;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        width: 100%;
        flex-direction: row;
    }
    
    .stat {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h2 {
        font-size: 2.2em;
    }
    
    .business-card {
        flex-direction: column;
    }
    
    .business-img {
        flex: 0 0 200px;
    }
    
    .about-stats {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .landmark-slider {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
