/* JAM'S TACOS Website - Ron Herman Style */
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2c2c2c;
    --color-secondary: #6b6b6b;
    --color-accent: #d4a574;
    --color-bg: #ffffff;
    --color-text: #2c2c2c;
    --color-border: #e0e0e0;
    --font-main: 'Helvetica Neue', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    --font-accent: 'Futura', 'Century Gothic', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 14px;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

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

.logo img {
    height: 75px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--color-border);
    padding: 5px 10px;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

/* Hero Logo Overlay - Ron Herman / Cafe Kitsune Style */
.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.hero-logo img {
    width: 250px;
    height: auto;
    opacity: 1.0;
}

.hero-tagline {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-top: 20px;
    opacity: 0.8;
    text-transform: uppercase;
}
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 20;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: #fff;
}

/* Concept Section */
.concept {
    padding: 120px 0;
    background: var(--color-bg);
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-text {
    font-size: 24px;
    line-height: 2;
    letter-spacing: 0.08em;
    font-weight: 300;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

/* Featured Menu */
.featured-menu {
    padding: 120px 0;
    background: #fafafa;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.menu-item {
    text-align: center;
}

.menu-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.05);
}

.menu-name {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.menu-price {
    font-size: 14px;
    color: var(--color-secondary);
}

/* Shop Preview */
.shop-preview {
    padding: 0;
}

.shop-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.shop-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.shop-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px;
    text-align: center;
}

.shop-description {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
    max-width: 400px;
}

/* Stores Preview */
.stores-preview {
    padding: 120px 0;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.store-card {
    text-align: center;
}

.store-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

.store-name {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.store-location {
    font-size: 14px;
    color: var(--color-secondary);
}

/* Instagram Feed */
.instagram-feed {
    padding: 120px 0;
    background: #fafafa;
}

.instagram-feed .section-title a {
    color: var(--color-text);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}

.instagram-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Events Section */
.events-section {
    padding: 120px 0;
    background: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.event-item h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.event-item p {
    font-size: 14px;
    color: var(--color-secondary);
    line-height: 2;
}

/* Button */
.btn {
    display: inline-block;
    padding: 15px 60px;
    border: 1px solid var(--color-primary);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.shop-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.section-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 30px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 12px;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    font-size: 12px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 11px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-grid,
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-split {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-logo img {
        width: 175px;
    }
    
    .hero-tagline {
        font-size: 12px;
        margin-top: 15px;
    }
    
    .concept-text {
        font-size: 18px;
    }
    
    .menu-grid,
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shop-content {
        padding: 60px 30px;
    }
    
    .shop-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* About Preview */
.about-preview {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

.about-preview .about-content p {
    font-size: 18px;
    line-height: 2.2;
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 0.05em;
}

/* Company Info Minimal */
.company-info-minimal {
    padding: 80px 0;
    text-align: center;
    background: #fafafa;
    font-size: 14px;
    color: var(--color-secondary);
    line-height: 2;
}

/* Popeye Style Story Text */
.story-text p {
    font-size: 16px;
    line-height: 2.4;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.values-grid .value-item p {
    line-height: 2.2;
}
