* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*main {
    padding-top: 150px;
} */

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px; /* lock the bar height */
    padding-left: 10px;
    padding-right: 40px;
}

.logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: #d4845f;
    font-weight: bold;
    margin-left: 0;
}

.logo a {
    color: #d4845f;
    text-decoration: none;
}

.logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav-links a:hover {
    color: #d4845f;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4be 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '☕';
    position: absolute;
    font-size: 20rem;
    opacity: 0.15;
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '🍔';
    position: absolute;
    font-size: 15rem;
    opacity: 0.15;
    bottom: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #d4845f;
    font-family: 'Brush Script MT', cursive;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #5a4a3a;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #d4845f;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background: #c47350;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 132, 95, 0.3);
}

/* About Section */
.about {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    color: #d4845f;
    margin-bottom: 1.5rem;
    font-family: 'Brush Script MT', cursive;
}

.about-content p {
    font-size: 1.1rem;
    color: #5a4a3a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(45deg, #e8d4be, #f5e6d3);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu Highlights */
.menu-highlights {
    background: #2c2c2c;
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

.menu-highlights h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #d4845f;
    font-family: 'Brush Script MT', cursive;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: #d4845f;
    background: rgba(255, 255, 255, 0.08);
}

.menu-item-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.menu-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #d4845f;
}

.menu-item p {
    color: #ccc;
    font-size: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-section h2 {
    font-size: 3rem;
    color: #d4845f;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Brush Script MT', cursive;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.post-card .post-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 1.5rem;
}

.post-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.post-card h3 a {
    color: #2c2c2c;
    text-decoration: none;
}

.post-card h3 a:hover {
    color: #d4845f;
}

.post-card p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #d4845f;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Location Section */
.location {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.location h2 {
    font-size: 3rem;
    color: #d4845f;
    margin-bottom: 2rem;
    font-family: 'Brush Script MT', cursive;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location-info {
    text-align: left;
    padding: 2rem;
    background: #f5e6d3;
    border-radius: 15px;
}

.location-info h3 {
    font-size: 1.5rem;
    color: #d4845f;
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 1.1rem;
    color: #5a4a3a;
    margin-bottom: 0.5rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #e8d4be, #d4845f);
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* Full Post Styles */
.post-full, .page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    padding-top: 150px;
    padding-bottom: 0px;
}


.post-header, .page-header {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none !important;
}

.page.post.no-image {
    margin-top: 0 !important;
}

.post-title, .page-title {
    font-size: 3rem;
    color: #d4845f;
    margin-bottom: 1rem;
    font-family: 'Brush Script MT', cursive;
}

.post-meta {
    color: #666;
    font-size: 1rem;
}

.post-author {
    margin-left: 1rem;
}

.post-feature-image, .page-feature-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
}

.post-feature-image img, .page-feature-image img {
    width: 100%;
    height: auto;
}

.post-content, .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2, .page-content h2 {
    color: #d4845f;
    margin: 2rem 0 1rem;
}

.post-content p, .page-content p {
    margin-bottom: 1.5rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f5e6d3;
    color: #d4845f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag:hover {
    background: #d4845f;
    color: white;
}

/* Archive Styles */
.archive-header {
    text-align: center;
    padding: 5rem 5% 3rem;
    margin-top: 70px;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4be 100%);
}

.archive-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.archive-header h1 {
    font-size: 3rem;
    color: #d4845f;
    margin-bottom: 1rem;
    font-family: 'Brush Script MT', cursive;
}

.post-feed {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Koenig Editor - Required Wide & Full Width Classes */
.kg-width-wide {
    position: relative;
    width: 85vw;
    min-width: 100%;
    margin: 2rem auto;
    max-width: 1200px;
}

.kg-width-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-width-wide img,
.kg-width-full img {
    width: 100%;
    height: auto;
}

/* Koenig Gallery Card */
.kg-gallery-container {
    display: flex;
    flex-direction: column;
    margin: 2rem auto;
    max-width: 1200px;
}

.kg-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.kg-gallery-image {
    flex: 1;
    margin: 0;
}

.kg-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Koenig Bookmark Card */
.kg-bookmark-card {
    width: 100%;
    margin: 2rem 0;
}

.kg-bookmark-container {
    display: flex;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.kg-bookmark-content {
    flex: 1;
    padding: 1.5rem;
}

.kg-bookmark-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.kg-bookmark-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.kg-bookmark-metadata {
    font-size: 0.8rem;
    color: #999;
}

.kg-bookmark-thumbnail {
    min-width: 200px;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: #d4845f;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: #d4845f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    
    .hero::before {
        font-size: 10rem;
        top: 5%;
        left: -10%;
    }

    .hero::after {
        font-size: 8rem;
        bottom: 5%;
        right: -10%;
    }

    .about, .location-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 80px;
    }

    .post-title, .page-title {
        font-size: 2rem;
    }
    
    .kg-width-wide,
    .kg-width-full {
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Social Media Buttons */
.social-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.social-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background 0.3s ease;
}

.social-buttons .btn img {
    width: 28px;
    height: 28px;
    filter: invert(100%);
}

.social-buttons .instagram {
    background: #E1306C;
}

.social-buttons .instagram:hover {
    background: #c72b5e;
    transform: scale(1.1);
}

.social-buttons .facebook {
    background: #1877F2;
}

.social-buttons .facebook:hover {
    background: #155bb5;
    transform: scale(1.1);
}