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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

/* Quote paragraph styling */
p {
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem auto;
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
    max-width: 800px;
    padding: 1rem;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0057b7 0%, #1a1a1a 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-logo h2 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0057b7 0%, #1a1a1a 50%, #ffd700 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e6e6e6;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-avatar {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffd700;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.hero-flag {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.flag-blue {
    height: 50%;
    background-color: #0057b7;
}

.flag-yellow {
    height: 50%;
    background-color: #ffd700;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #0057b7, #ffd700);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #0057b7;
}

.story-card h3 {
    color: #0057b7;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.story-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.memory-images {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.memory-photo {
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #ffd700;
}

.mykyta1-photo {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.mykyta2-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.memory-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.support-ukraine {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

.donate-link {
    display: inline-block;
    background: linear-gradient(135deg, #0057b7 0%, #ffd700 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 87, 183, 0.3);
    border: 2px solid transparent;
}

.donate-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 87, 183, 0.4);
    border-color: #0057b7;
    background: linear-gradient(135deg, #ffd700 0%, #0057b7 100%);
}

.memorial-svg {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Menu Section */
.menu {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
}

.menu-category h3 {
    color: #0057b7;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd700;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item.featured {
    background: linear-gradient(45deg, #fff8dc, #fffacd);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ffd700;
    margin: 1rem 0;
}

.item-info h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.item-info p {
    color: #666;
    font-size: 0.95rem;
    border: 1px red solid;
    padding: 0px 0px;
}

.price {
    color: #0057b7;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item-icon {
    width: 90px;
    height: 90px;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 3px;
    object-fit: cover;
    margin-top: 10px;
}

/* Menu Page Styles */
.page-header {
    background: linear-gradient(135deg, #0057b7 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.menu-content {
    padding: 80px 0;
    background: #fafafa;
}

.menu-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2.5rem;
    color: #0057b7;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.category-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item.card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 87, 183, 0.2);
    border-color: #ffd700;
}

.menu-item-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(45deg, #0057b7, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coffee-image::before {
    content: '☕';
    font-size: 2rem;
    position: absolute;
}

.menu-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.menu-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0057b7;
    align-self: flex-end;
}

/* Contact Section */
.contact {
    padding: 5rem 0 1rem 0;
    background: linear-gradient(135deg, #0057b7 0%, #1a1a1a 100%);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.info-card h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.maps-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0057b7, #ffd700);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 87, 183, 0.3);
}

.maps-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 87, 183, 0.4);
    text-decoration: none;
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-info h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.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: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.instagram-link {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    background: transparent;
}

.instagram-link:hover {
    background: #ffd700;
    color: #0057b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #0057b7 0%, #1a1a1a 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    /* Menu page mobile styles */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item.card {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-item-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .coffee-cup {
        width: 200px;
        height: 200px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        color: #000;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
    
    /* Menu page mobile styles for smaller screens */
    .menu-item.card {
        padding: 20px;
    }
    
    .menu-item-image {
        width: 100px;
        height: 100px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0057b7, #ffd700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffd700, #0057b7);
}