/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d40032 0%, #a30028 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 0, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #d40032;
    border: 2px solid #d40032;
}

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

.btn-outline {
    background: transparent;
    color: #d40032;
    border: 2px solid #d40032;
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    height: 60px;
}

.nav-logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #d40032;
}

.nav-logo p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: #999;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d40032;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Store Section */
.store-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    margin: 0 auto;
}

.store-featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.store-image {
    height: 400px;
    background: linear-gradient(135deg, #d40032 0%, #a30028 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
}

.store-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-logo-link {
    display: block;
}

.store-title-link {
    text-decoration: none;
    color: inherit;
}

.store-title-link:hover {
    text-decoration: underline;
    text-decoration-color: #d40032;
}

.store-content {
    padding: 3rem;
}

.store-tag {
    background: #fff3cd;
    color: #856404;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid #ffeaa7;
}

.store-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.store-features {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature {
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e9ecef;
}

.feature i {
    color: #d40032;
}

.store-info {
    margin: 1.5rem 0;
}

.store-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.store-info a {
    color: #d40032;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-info a:hover {
    color: #a30028;
    text-decoration: underline;
}

.store-info i {
    color: #d40032;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d40032;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d40032;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}

.store-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.event-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 15px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    width: 100%;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-section p {
    color: #a0aec0;
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d40032;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .store-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .store-image {
        height: 250px;
    }
    
    .store-content {
        padding: 2rem;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .store-actions {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    /* Content grid responsive */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .content-column {
        padding: 1.5rem !important;
    }
    
    .content-column h3 {
        font-size: 1.2rem !important;
    }
    
    .live-inventory-section {
        padding: 2rem !important;
    }
    
    .iframe-container {
        padding: 1.5rem !important;
    }
    
    .iframe-container iframe {
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .store-content {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .store-features {
        justify-content: center;
    }
    
    .logo-container {
        width: 200px;
        height: 200px;
    }
    
    /* Content grid mobile */
    .content-grid {
        margin: 2rem 0 !important;
    }
    
    .live-inventory-section {
        padding: 1.5rem !important;
    }
    
    .live-inventory-section h2 {
        font-size: 1.5rem;
    }
    
    .live-inventory-section h3 {
        font-size: 1.2rem;
    }
}

/* Content Grid Styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.content-column {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.content-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.content-column h3 {
    color: #d40032;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.content-column p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Live Inventory Section Styles */
.live-inventory-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e9ecef;
}

.live-inventory-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.live-inventory-section h3 {
    color: #d40032;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.live-inventory-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.iframe-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.iframe-container iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 8px;
} 