/* ================================================
   白露珈琲 (HAKURO COFFEE) Website Styles
   ================================================ */

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

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

/* ================================================
   Header and Navigation
   ================================================ */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 24px;
    color: #4a3728;
    font-weight: 600;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 12px;
    color: #8b7355;
    letter-spacing: 1px;
    margin-top: 2px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a3728;
    border-bottom: 2px solid #4a3728;
}

/* ================================================
   Hero Section with Background Image
   ================================================ */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-logo {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.hero-logo img {
    width: 150px;
    height: 150px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 6px;
}

.hero-tagline {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-text {
    font-size: 22px;
    font-weight: 300;
    opacity: 1;
    letter-spacing: 2px;
}

/* ================================================
   Introduction Section
   ================================================ */
.intro {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.intro h3 {
    font-size: 32px;
    color: #4a3728;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 2px;
}

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

.intro-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 2;
}

/* ================================================
   Features Section
   ================================================ */
.features {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-character {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #8b7355;
    background-color: #fff;
}

.feature-item h4 {
    font-size: 20px;
    color: #4a3728;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ================================================
   Call to Action Section
   ================================================ */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4a3728 0%, #8b7355 100%);
    color: #fff;
    text-align: center;
}

.cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #fff;
    color: #4a3728;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background-color: #fff;
    color: #4a3728;
    transform: translateY(-2px);
}

/* ================================================
   Footer
   ================================================ */
footer {
    background-color: #2d2319;
    color: #fff;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.copyright {
    font-size: 13px;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

/* ================================================
   Item/Menu Page Styles
   ================================================ */

/* Menu Hero Section */
.menu-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #8b7355 0%, #4a3728 100%);
    color: #fff;
    text-align: center;
}

.menu-hero h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.menu-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Menu Section */
.menu-section {
    padding: 80px 20px;
    background-color: #fff;
}

.menu-section.specialty {
    background-color: #f5f5f5;
}

.menu-section.food-menu {
    background-color: #fff;
}

.category-title {
    font-size: 32px;
    color: #4a3728;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 20px;
    border-bottom: 3px solid #8b7355;
    display: inline-block;
    width: 100%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #8b7355;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.menu-item.featured {
    border-left: 4px solid #d4a574;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item h4 {
    font-size: 20px;
    color: #4a3728;
    font-weight: 600;
    flex: 1;
}

.price {
    font-size: 22px;
    color: #8b7355;
    font-weight: 700;
    margin-left: 15px;
}

.menu-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.menu-sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Menu Note Section */
.menu-note {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #8b7355;
}

.note-content h4 {
    font-size: 22px;
    color: #4a3728;
    margin-bottom: 20px;
    font-weight: 600;
}

.note-content ul {
    list-style: none;
    padding: 0;
}

.note-content li {
    font-size: 15px;
    color: #666;
    line-height: 2;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.note-content li:before {
    content: "☕";
    position: absolute;
    left: 0;
    color: #8b7355;
}

/* ================================================
   About Page Styles
   ================================================ */

/* About Hero Section */
.about-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #8b7355 0%, #4a3728 100%);
    color: #fff;
    text-align: center;
}

.about-hero h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.about-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* About Story Section */
.about-story {
    padding: 80px 20px;
    background-color: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text h3 {
    font-size: 32px;
    color: #4a3728;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 2px;
}

.story-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 2;
}

.story-image {
    text-align: center;
}

.story-image img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

/* About Values Section */
.about-values {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.about-values h3 {
    font-size: 32px;
    color: #4a3728;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #8b7355;
}

.value-item h4 {
    font-size: 22px;
    color: #4a3728;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
}

/* About Process Section */
.about-process {
    padding: 80px 20px;
    background-color: #fff;
}

.about-process h3 {
    font-size: 32px;
    color: #4a3728;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
    opacity: 0.3;
}

.process-step h4 {
    font-size: 20px;
    color: #4a3728;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* About Location Section */
.about-location {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.about-location h3 {
    font-size: 32px;
    color: #4a3728;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 2px;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-item h4 {
    font-size: 20px;
    color: #4a3728;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #8b7355;
}

.info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Location Map Styles */
.location-map {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.location-map h4 {
    font-size: 24px;
    color: #4a3728;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h2 {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-logo img {
        width: 120px;
        height: 120px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .intro h3,
    .cta h3 {
        font-size: 24px;
    }
    
    .intro-content p {
        font-size: 14px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* About Page Responsive */
    .about-hero h2 {
        font-size: 36px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h3,
    .about-values h3,
    .about-process h3,
    .about-location h3 {
        font-size: 24px;
    }
    
    .story-image img {
        width: 180px;
        height: 180px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        padding: 30px 20px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
    
    /* Menu Page Responsive */
    .menu-hero h2 {
        font-size: 36px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price {
        margin-left: 0;
    }
    
    .note-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 20px;
    }
    
    .hero h2 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-logo img {
        width: 100px;
        height: 100px;
    }
    
    .about-hero h2 {
        font-size: 28px;
    }
    
    .menu-hero h2 {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .menu-item h4 {
        font-size: 18px;
    }
    
    .price {
        font-size: 20px;
    }
}
