/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Special Elite', cursive;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #444;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-logo h1 {
    font-size: 1.8rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.tagline {
    font-size: 0.7rem;
    color: #888;
    display: block;
    letter-spacing: 1px;
}

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

.nav-menu a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('images/hiddenlegends.png') no-repeat center center;
    background-size: cover;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}



.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid;
    font-family: 'Special Elite', cursive;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #d4af37;
    color: #1a1a1a;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e8e8e8;
    border-color: #e8e8e8;
}

.btn-secondary:hover {
    background: #e8e8e8;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fog-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: fogMove 20s infinite linear;
}

.fog-layer:nth-child(2) {
    animation-delay: -10s;
    opacity: 0.5;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.us-map {
    background: url('images/map.jpg') no-repeat center center;
    background-size: contain;
    background-color: #2a2a2a;
    border: 3px solid #d4af37;
    border-radius: 10px;
    height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d4af37;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.legend-info {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #444;
    border-radius: 10px;
    padding: 2rem;
    height: fit-content;
    backdrop-filter: blur(10px);
}

.legend-info h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legend-info p {
    color: #ccc;
    line-height: 1.6;
}

/* Store Section */
.store-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.store-item {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #444;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.store-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.store-item-image {
    height: 250px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.store-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.store-item-image i {
    font-size: 4rem;
    color: #d4af37;
    z-index: 2;
}

.store-item-content {
    padding: 1.5rem;
}

.store-item-title {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Special Elite', cursive;
}

.store-item-description {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.store-item-price {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-family: 'Special Elite', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.buy-button-container {
    width: 100%;
    margin-top: 1rem;
}

.buy-button-container iframe {
    width: 100% !important;
    border: none !important;
    border-radius: 5px !important;
}

.buy-button-container .shopify-buy__btn {
    width: 100% !important;
    border-radius: 5px !important;
    font-family: 'Special Elite', cursive !important;
}

.shopify-buy-button-container {
    width: 100%;
    margin-top: 1rem;
}

.shopify-buy-button-container .shopify-buy__btn {
    width: 100% !important;
    border-radius: 5px !important;
    font-family: 'Special Elite', cursive !important;
    background-color: #af8e05 !important;
    border: none !important;
    padding: 10px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.shopify-buy-button-container .shopify-buy__btn:hover {
    background-color: #9e8005 !important;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
}

.vintage-frame {
    width: 200px;
    height: 200px;
    border: 8px solid #d4af37;
    border-radius: 10px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vintage-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #444;
    border-radius: 15px;
    z-index: -1;
}

.frame-content i {
    font-size: 4rem;
    color: #d4af37;
    animation: float 3s ease-in-out infinite;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #444;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fogMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }



    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
} 

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.active .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: fixed;
    top: 70px; /* Height of navbar */
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #444;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 60px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h4 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    font-weight: 600;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
}

.dropdown-column ul li {
    margin-bottom: 12px;
}

.dropdown-column ul li a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-radius: 4px;
}

.dropdown-column ul li a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding-left: 10px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: auto;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-content {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        max-width: none;
    }
    
    .dropdown-column h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .dropdown-column ul li a {
        font-size: 0.9rem;
        padding: 8px 0;
    }
} 

/* --- HERO CAROUSEL --- */
.hero-carousel {
    width: 100vw;
    min-height: 50vh;
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* to account for navbar */
}

.carousel-container {
    width: 100vw;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slides {
    width: 100vw;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}

.carousel-slide {
    min-width: 100vw;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.carousel-content {
    background: rgba(0,0,0,0.5);
    padding: 2rem 3rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
}

.carousel-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.carousel-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.carousel-buy-btn {
    background: #d4af37;
    color: #181818;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-family: 'Special Elite', cursive;
    transition: background 0.2s;
}
.carousel-buy-btn:hover {
    background: #fff;
    color: #d4af37;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24,24,24,0.7);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.carousel-prev { left: 2vw; }
.carousel-next { right: 2vw; }
.carousel-btn:hover { background: #d4af37; color: #181818; }

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff3;
    border: 2px solid #d4af37;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-dot.active {
    background: #d4af37;
}

/* --- FEATURED ARTICLES --- */
.featured-articles {
    width: 100vw;
    min-height: 50vh;
    background: #232323;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 0 2rem 0;
}

.featured-title {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Special Elite', cursive;
}

.featured-container {
    width: 100vw;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-grid {
    width: 100vw;
    max-width: 1400px;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.featured-article {
    background: #181818;
    border-radius: 1rem;
    flex: 1 1 0;
    min-width: 0;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}
.featured-article:hover {
    /* No hover effects */
}
.featured-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #222;
}
.featured-article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.featured-article-title {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 0.7rem;
    font-family: 'Special Elite', cursive;
}
.featured-article-desc {
    color: #e8e8e8;
    font-size: 1rem;
    flex: 1;
    margin-bottom: 1rem;
}
.featured-article-link {
    color: #d4af37;
    text-decoration: underline;
    font-weight: bold;
    align-self: flex-end;
    font-size: 1rem;
    transition: color 0.2s;
}
.featured-article-link:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1000px) {
    .featured-grid { flex-direction: column; align-items: center; }
    .featured-article { max-width: 90vw; }
    .carousel-content { max-width: 90vw; }
} 