/**
 * Florida License Frames - Main Stylesheet
 * Custom styles for the theme
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #001F54;
    overflow-x: hidden;
}

/* Header */
.top-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.top-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 8px;
    cursor: pointer;
}

header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .main {
    font-size: 22px;
    font-weight: 900;
    color: #FF6B35;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-text .sub {
    font-size: 11px;
    font-weight: 700;
    color: #00A7E1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #001F54;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #FF6B35;
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.account-btn {
    background: transparent;
    color: #001F54;
    padding: 10px 20px;
    border: 2px solid #001F54;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.account-btn:hover {
    background: #001F54;
    color: white;
}

.cart-btn {
    background: #FF6B35;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #001F54 0%, #003d82 100%);
    color: white;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%2300A7E1" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero h1 span {
    color: #FF6B35;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #FFD23F;
}

.hero .features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.hero .feature-item {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero .feature-item::before {
    content: '✓';
    background: #06A77D;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.cta-btn {
    background: #FF6B35;
    color: white;
    padding: 22px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Social Proof Banner */
.social-proof-banner {
    background: #FFD23F;
    padding: 20px 40px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #001F54;
}

.social-proof-banner span {
    color: #FF6B35;
    font-size: 24px;
}

/* User Generated Content Feed */
.ugc-feed {
    padding: 80px 40px;
    background: #f8f9fa;
}

.ugc-feed h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #001F54;
    text-transform: uppercase;
}

.ugc-feed > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.ugc-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.ugc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ugc-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #00A7E1, #06A77D);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.ugc-info {
    padding: 20px;
}

.ugc-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ugc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF6B35;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.ugc-username {
    font-weight: 700;
    color: #001F54;
}

.ugc-location {
    font-size: 14px;
    color: #666;
}

.ugc-caption {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* Ad Space */
.ad-space {
    background: #e9ecef;
    padding: 40px;
    text-align: center;
    border: 2px dashed #ccc;
    margin: 40px auto;
    max-width: 728px;
    border-radius: 10px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-space.large {
    max-width: 970px;
    min-height: 250px;
}

.ad-space.sidebar {
    max-width: 300px;
    min-height: 600px;
}

.ad-space p {
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

/* Map Section */
.map-section {
    padding: 100px 40px;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #001F54;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.map-section > p {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.map-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.map-tab {
    background: transparent;
    border: 3px solid #001F54;
    color: #001F54;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.map-tab.active {
    background: #FF6B35;
    border-color: #FF6B35;
    color: white;
}

.map-tab:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    color: white;
}

.florida-map-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.florida-map-container img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}

.florida-map-container img:hover {
    transform: scale(1.02);
}

.map-view {
    display: none;
}

.map-view.active {
    display: block;
}

.county-grid, .city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.county-card, .city-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
    text-align: center;
}

.county-card:hover, .city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
}

.county-card h3, .city-card h4 {
    font-size: 24px;
    color: #001F54;
    margin-bottom: 10px;
    font-weight: 800;
}

.county-card p, .city-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 100px 40px;
    background: white;
}

.products-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: #001F54;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #00A7E1, #06A77D);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.legal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #06A77D;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #001F54;
    font-weight: 800;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.price {
    font-size: 28px;
    color: #FF6B35;
    font-weight: 900;
    margin-bottom: 15px;
}

.add-cart {
    width: 100%;
    background: #FF6B35;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.add-cart:hover {
    background: #FF8C42;
    transform: translateY(-2px);
}

/* Legal Section */
.legal-section {
    background: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
    padding: 80px 40px;
    color: #001F54;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.legal-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.legal-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 600;
}

.learn-more {
    background: white;
    color: #FF6B35;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #001F54;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD23F;
    font-weight: 800;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-section a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    margin: 20px;
}

.modal-content h2 {
    color: #001F54;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 32px;
}

.close-modal {
    float: right;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    font-weight: 300;
}

.close-modal:hover {
    color: #FF6B35;
}

.upload-form, .login-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #001F54;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B35;
}

.file-upload {
    border: 3px dashed #FF6B35;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload:hover {
    background: #fff3f0;
}

.submit-btn {
    width: 100%;
    background: #FF6B35;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #FF8C42;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero .features {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .products-section h2,
    .map-section h2,
    .ugc-feed h2 {
        font-size: 32px;
    }

    .logo-text .main {
        font-size: 16px;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }
}
Theme Name: Florida License Frames
Theme URI: https://floridalicenseframes.com
Author: Florida License Frames Team
Author URI: https://floridalicenseframes.com
Description: Custom e-commerce theme for Florida License Frames. Features WooCommerce integration, county/city browsing, user-generated content feeds, and HB 253 compliance information.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: florida-frames
Tags: e-commerce, woocommerce, custom, florida, license-frames

This theme supports WooCommerce and includes custom product displays,
county/city navigation, and user photo submission features.
*/

/* Main styles are in assets/css/main.css */