/* ================================================
   白露珈琲 (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);
    }
}

/* ================================================
   Guestbook Page Styles
   ================================================ */

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

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

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

/* Guestbook Section */
.guestbook-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

/* Write Form */
.guestbook-write {
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.guestbook-write h3 {
    font-size: 24px;
    color: #4a3728;
    margin-bottom: 30px;
    text-align: center;
}

.guestbook-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.char-count {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

/* Guestbook List */
.guestbook-list {
    max-width: 900px;
    margin: 0 auto;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.list-header h3 {
    font-size: 24px;
    color: #4a3728;
    margin: 0;
}

.list-stats {
    font-size: 15px;
    color: #666;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b7355;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    margin-top: 20px;
    color: #666;
}

/* Entries Container */
.entries-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Guestbook Entry */
.guestbook-entry {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    
}

.guestbook-entry p {
    white-space: pre-wrap; /* 줄 바꿈 유지 (핵심!) */
    word-break: break-word; /* 긴 단어 깨짐 방지 */
}

.guestbook-entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f5f5f5;
}

.entry-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-icon {
    font-size: 24px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #4a3728;
}

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

.entry-date {
    font-size: 13px;
    color: #999;
}

.delete-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.delete-btn:hover {
    opacity: 1;
}

.entry-message {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* No Entries */
.no-entries {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    color: #d9534f;
    font-size: 15px;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.page-info {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Delete Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-content h4 {
    font-size: 22px;
    color: #4a3728;
    margin-bottom: 15px;
}

.modal-content p {
    color: #666;
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.modal-buttons button {
    flex: 1;
}

.btn-danger {
    background-color: #d9534f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-danger:hover {
    background-color: #c9302c;
}

/* ================================================
   Message/Contact Form Page Styles
   ================================================ */

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

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

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 28px;
    color: #4a3728;
    margin-bottom: 20px;
    font-weight: 600;
}

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

/* Contact Form Styles */
.contact-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    color: #4a3728;
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: #d9534f;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 200px;
    padding: 15px 40px;
    font-size: 16px;
}

/* Form Note */
.form-note {
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b7355;
    border-radius: 5px;
}

.note-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.note-text strong {
    color: #4a3728;
    display: block;
    margin-bottom: 8px;
}

/* Contact Info Box */
.contact-info-box {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info-box h4 {
    font-size: 22px;
    color: #4a3728;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-method {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.contact-method strong {
    display: block;
    font-size: 16px;
    color: #4a3728;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ================================================
   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;
    }
    
    /* Message Page Responsive */
    .message-hero h2 {
        font-size: 36px;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .form-intro h3 {
        font-size: 24px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    /* Guestbook Page Responsive */
    .guestbook-hero h2 {
        font-size: 36px;
    }
    
    .guestbook-write {
        padding: 30px 20px;
    }
    
    .guestbook-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .list-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .entry-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .entry-meta {
        width: 100%;
        justify-content: space-between;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
