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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

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

.mk-nav-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-left: 15px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    margin: 0 auto;
}

.nav-link {
    text-decoration: none;
    color: #8b7355;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link.active {
    color: #6b5b47;
    font-weight: 500;
}

.nav-link:hover {
    color: #6b5b47;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8b7355;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.brand-name {
    font-size: 4rem;
    font-weight: 300;
    color: #8b7355;
    letter-spacing: 0.05em;
    margin: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #8b7355;
    padding: 1.5rem 3rem;
    position: relative;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.brand-specialty {
    font-size: 0.8rem;
    color: #8b7355;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.welcome-btn {
    background: #d4af37;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.welcome-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Food Images */
.food-image-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 1;
}

.food-image-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    z-index: 1;
}

.food-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8b7355;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.food-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.food-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    z-index: 1;
    position: relative;
}

.food-placeholder p {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #8b7355;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

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

.about-text h3 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
}

.certifications {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f8f8;
    padding: 12px 20px;
    border: 1px solid #e8e8e8;
    color: #8b7355;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cert-badge i {
    color: #d4af37;
    font-size: 1.1rem;
}

.mk-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8b7355;
    font-size: 1.2rem;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    z-index: 1;
    position: relative;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.service-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b7355;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #8b7355;
    color: white;
    border-color: #8b7355;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8b7355;
    font-size: 1rem;
    position: relative;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.gallery-placeholder i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    z-index: 1;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.contact-info h3 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item h4 {
    color: #8b7355;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.5;
    font-weight: 300;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e8e8e8;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8e8e8;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #8b7355;
}

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

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

.btn {
    padding: 12px 30px;
    border: none;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #8b7355;
    color: white;
}

.btn-primary:hover {
    background: #6b5b47;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
    font-weight: 300;
}

.footer-section p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #2c2c2c;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 30px;
    }
    
    .nav-menu {
        margin-bottom: 1rem;
        gap: 2rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .brand-info {
        padding: 1rem 2rem;
    }
    
    .food-image-left,
    .food-image-right {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .certifications {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .welcome-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}