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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

a {
    color: #b8941f;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a:hover {
    color: #d4af37;
    text-decoration-color: #d4af37;
}

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

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

.nav-logo h2,
.nav-logo a {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-block;
}

.nav-logo a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link.active {
    color: #1a1a1a;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

.hero-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-label {
    display: block;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.info-link {
    display: block;
    margin-top: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    padding: 120px 0 80px;
    text-align: center;
}

.catering-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catering-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(45, 45, 45, 0.5));
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.catering-hero h1 {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.catering-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border-color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4a4a4a, #666);
    color: white;
    border-color: #4a4a4a;
    box-shadow: 0 4px 20px rgba(74, 74, 74, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #666, #4a4a4a);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 74, 74, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: #1a1a1a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.3);
}

/* Sections */
section {
    padding: 100px 0;
}

.about {
    background-color: #fafafa;
}

.about-text {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #4a4a4a;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card h3 {
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding: 0 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    padding: 0 2rem 2rem 2rem;
    margin: 0;
    color: #4a4a4a;
    line-height: 1.7;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 3rem;
    text-align: center;
}

.placeholder-image p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Event Types */
.event-types {
    background: white;
    padding: 80px 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Catering Services */
.catering-services {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-gallery {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-dots {
    text-align: center;
    padding: 1rem 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #d4af37;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.service-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Sample Menu */
.sample-menu {
    background-color: white;
}

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

.menu-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.menu-category h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.menu-category ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.menu-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

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

.price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

.pdf-download {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.download-content h2 {
    color: #1a1a1a;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.download-content p {
    color: #4a4a4a;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
    color: #1a1a1a;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.contact-link {
    color: #b8941f;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d4af37;
    text-decoration-color: #d4af37;
}

.section-description {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

/* Home 2 */
.home2-hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: white;
}

.home2-hero-image {
    position: absolute;
    inset: 0;
}

.home2-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home2-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.home2-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.home2-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home2-hero-subtitle {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.home2-intro {
    padding: 80px 0 90px;
    text-align: center;
    background: white;
}

.home2-intro h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.home2-intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4a4a4a;
}

.home2-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home2-feature {
    text-align: center;
}

.home2-feature-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.2rem;
}

.home2-feature-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.home2-feature h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.home2-feature p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 0;
}

.home2-social {
    padding: 70px 0 90px;
    text-align: center;
    background: #f8f9fa;
}

.home2-social h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.home2-social-text {
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.home2-social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.home2-social-icons a {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: white;
    border: 2px solid #d4af37;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home2-social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.home2-social-icons svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

/* Instagram brand gradient */
.home2-social-icons a.social-instagram {
    background: linear-gradient(45deg, #ffdc80, #fcaf45, #f77737, #f56040, #fd1d1d, #e1306c, #c13584, #833ab4, #5851db, #405de6);
    border: none;
    color: white;
}

/* Facebook brand blue */
.home2-social-icons a.social-facebook {
    background: #1877F2;
    border: none;
    color: white;
}

.home2-catering-cta {
    padding: 70px 0;
    text-align: center;
    background: white;
}

.home2-catering-cta h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.home2-catering-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #4a4a4a;
}

.home2-note {
    padding: 50px 0 70px;
    background: white;
}

.home2-note h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: left;
}

.home2-note-grid {
    display: grid;
    gap: 2rem;
}

.home2-note-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.home2-note p {
    color: #4a4a4a;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .home2-note-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }

    .home2-note h2 {
        margin-bottom: 3rem;
    }
}

.home2-final {
    padding: 40px 0 90px;
    text-align: center;
    background: white;
}

.home2-final h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Menu */
.menu-hero {
    position: relative;
    padding: 140px 0 100px;
    background: url("images/kava.jpg") center/cover no-repeat;
    color: white;
}

.menu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

.menu-hero-content {
    position: relative;
    z-index: 1;
}

.menu-hero h1 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.menu-hero-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-hero-column {
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-hero-column h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.menu-hero-column p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

.menu-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.menu-section-block {
    margin-bottom: 3.5rem;
}

.menu-section-block:last-child {
    margin-bottom: 0;
}

.menu-section-block h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.menu-item {
    margin-bottom: 1.2rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-item-header h3,
.menu-item-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 600;
}

.menu-price {
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.menu-item-desc {
    margin: 0.5rem 0 0;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.menu-subsection {
    margin: 2rem 0 1rem;
}

.menu-subsection h3 {
    margin: 0 0 0.3rem;
    font-size: 1.2rem;
}

.menu-drinks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.menu-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.menu-food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.menu-drinks-group.single-column {
    max-width: 520px;
}

/* Catering 2 */
.catering2-intro {
    background: white;
}

.catering2-highlights {
    background: #f8f9fa;
    padding: 80px 0;
}

.catering2-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.catering2-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.catering2-text .section-description,
.catering2-text p {
    text-align: left;
    margin: 0 0 1.5rem 0;
    max-width: none;
}

.catering2-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    height: 360px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.catering2-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.highlight-card p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
}

.catering2-offer {
    background: white;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.offer-image {
    width: 100%;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.offer-card p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.7;
}

.catering2-download {
    background: #f8f9fa;
    padding: 80px 0;
}

.download-box {
    display: flex;
    justify-content: center;
}

.catering2-approach {
    background: white;
}

.catering2-approach .container,
.catering2-story .container {
    max-width: 900px;
}

.catering2-story {
    background: #f8f9fa;
}

.catering2-testimonials {
    background: white;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #d4af37;
    font-weight: 600;
    text-align: right;
}

.catering2-contact {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
    padding: 80px 0;
}

/* Catering 3 */
.catering3-hero {
    padding: 140px 0 80px;
    background: white;
}

.catering3-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.catering3-hero-text h1 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: left;
}

.catering3-hero-text p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.catering3-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    height: 360px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.catering3-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catering3-highlights {
    background: #f8f9fa;
    padding: 60px 0 80px;
}

.catering3-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.catering3-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catering3-highlight p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.catering3-events {
    background: white;
}

.catering3-events h2 {
    margin-bottom: 1.5rem;
}

.catering3-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.catering3-event-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.catering3-event-card p {
    margin: 1.5rem 0 0 0;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.catering3-event-card h3 {
    padding-top: 16px;
    padding-bottom: 0;
}

.catering3-event-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 170px;
}

.catering3-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catering3-event-label {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.catering3-story {
    background: #f8f9fa;
}

.catering3-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.catering3-story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.catering3-story-text p {
    text-align: left;
    margin-bottom: 2rem;
}

.catering3-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    height: 360px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.catering3-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catering3-testimonials {
    background: white;
    padding: 80px 0;
}

.catering3-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.catering3-favorites {
    background: #f8f9fa;
}

.catering3-favorites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.catering3-favorite-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
}

.catering3-favorite-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catering3-favorites-cta {
    text-align: center;
    margin-top: 4rem;
}

.catering3-approach {
    background: white;
}

.catering3-contact {
    background: #f8f9fa;
}

.catering3-contact .cta-content {
    max-width: 720px;
}

.catering3-contact .contact-info {
    margin-top: 2rem;
}

.catering3-approach .container {
    max-width: 900px;
}

.catering3-approach h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.catering3-approach p {
    text-align: left;
}

/* References */
.references {
    background: #f8f9fa;
    padding: 80px 0;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reference-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.reference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.reference-placeholder {
    background: #f0f0f0;
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #666;
    font-style: italic;
}

.reference-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.reference-item p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-top: 1rem;
    font-style: italic;
}

.reference-author {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: right;
}

/* FAQ */
.faq {
    background: white;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Story Section */
.story {
    background-color: #fafafa;
}

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-part {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-part h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-part p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.founders {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.founders-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.founders-photo:hover {
    transform: scale(1.05);
}

.founders-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founders p {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%231a1a1a" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.social-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.social-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 200px;
}

.social-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
    color: #1a1a1a;
}

.social-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

/* Instagram brand gradient icon background */
.social-link.social-instagram .social-icon {
    background: linear-gradient(45deg, #ffdc80, #fcaf45, #f77737, #f56040, #fd1d1d, #e1306c, #c13584, #833ab4, #5851db, #405de6);
    color: white;
}

/* Facebook brand blue icon background */
.social-link.social-facebook .social-icon {
    background: #1877F2;
    color: white;
}

.social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.social-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.social-handle {
    font-size: 0.9rem;
    color: #4a4a4a;
    font-weight: 400;
}

.social-link span:last-child {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Gallery */
.gallery {
    background-color: white;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

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

.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 3rem;
    text-align: center;
}

.gallery-item .placeholder-image p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.gallery-placeholder {
    background: #f0f0f0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%231a1a1a" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.contact-cta h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Opening Hours Section */
.opening-hours {
    background-color: #fafafa;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hours-item .day {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.hours-item .time {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1rem;
}

.hours-note {
    margin-top: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hours-note p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background-color: white;
}

.map-container {
    margin: 3rem 0;
}

.map-placeholder {
    background: #f0f0f0;
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
}

.map-placeholder p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-info {
    margin-top: 3rem;
}

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

.transport-item {
    background: #f9f7f4;
    padding: 2rem;
    border-radius: 15px;
}

.transport-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Forms */
.contact-form-section,
.catering-contact {
    background-color: #f9f7f4;
}

.form-container,
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form,
.catering-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Social Section */
.social-section {
    background-color: white;
}

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

.social-card {
    background: #f9f7f4;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Company Info */
.company-info {
    background-color: #f9f7f4;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    background-color: white;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

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

.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 3rem;
    text-align: center;
}

.gallery-item .placeholder-image p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.gallery-placeholder {
    background: #f0f0f0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

/* Catering Preview */
.catering-preview {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.catering-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%231a1a1a" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.catering-preview h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.catering-preview p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4a4a4a;
    position: relative;
    z-index: 1;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%231a1a1a" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%231a1a1a" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%231a1a1a" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    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: #d4af8c;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #d4af8c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reference-grid {
        grid-template-columns: 1fr;
    }

    .catering3-hero-grid,
    .catering3-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .catering3-hero-text h1,
    .catering3-hero-text p,
    .catering3-story-text h2,
    .catering3-story-text p {
        text-align: center;
    }

    .catering3-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catering3-events-grid,
    .catering3-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .catering3-favorites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-hero-columns {
        grid-template-columns: 1fr;
    }

    .menu-food-grid {
        grid-template-columns: 1fr;
    }

    .menu-drinks-grid {
        grid-template-columns: 1fr;
    }

    .catering2-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .catering2-text h2,
    .catering2-text .section-description,
    .catering2-text p {
        text-align: center;
    }

    .catering2-photo {
        order: -1;
    }

    .highlights-grid,
    .offer-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .catering-hero {
        min-height: 60vh;
    }

    .catering-hero h1 {
        font-size: 2.2rem;
    }

    .catering-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reference-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founders {
        position: static;
        order: -1;
    }

    .founders-photo {
        width: 200px;
        height: 200px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 100%;
    }

    .hours-item {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .map-layout {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }

    .map-container {
        width: 100%;
        max-width: 100%;
        height: 60vh;
        margin: 0;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .map-wrapper {
        width: 100%;
        height: 100%;
    }

    .home2-hero {
        padding: 120px 0 90px;
    }

    .home2-features-grid {
        grid-template-columns: 1fr;
    }

    .home2-feature-image img {
        height: 200px;
    }

    .home2-social-icons {
        gap: 2rem;
    }

    @media (max-width: 480px) {
        .map-container {
            margin: 0;
            height: 50vh;
        }

        .map-wrapper {
            height: 100%;
        }
    }

    .map-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .map-info {
        width: 100%;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .map-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .transport-item {
        padding: 1.5rem;
    }

    .address-info {
        padding: 1.5rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        max-width: 100%;
    }

    .hours-item {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .map-layout {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }

    .map-container {
        width: 100%;
        max-width: 100%;
        height: 50vh;
        margin: 0;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .map-wrapper {
        width: 100%;
        height: 100%;
    }

    .map-info {
        width: 100%;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .contact-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .transport-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reference-grid {
        grid-template-columns: 1fr;
    }

    .catering3-hero-grid,
    .catering3-story-grid {
        grid-template-columns: 1fr;
    }

    .catering3-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catering3-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catering3-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catering3-favorites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .catering3-events-grid,
    .catering3-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info
.contact-info {
    background-color: #fafafa;
}
 */
.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #b8941f;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease, text-decoration-color 0.3s ease;
}

.contact-link:hover {
    opacity: 1;
    color: #d4af37;
    text-decoration-color: #d4af37;
}

.contact-phone,
.contact-email {
    color: #b8941f;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-phone:hover,
.contact-email:hover {
    color: #d4af37;
    text-decoration-color: #d4af37;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hours-item .day {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.hours-item .time {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1rem;
}

.hours-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1a1a1a;
    margin-top: 1rem;
}

.hours-note p {
    margin: 0;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Map Section */
.map-section {
    background-color: white;
}

.map-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: 60vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    display: block;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.address-info,
.phone-info {
    background: #fafafa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.address-info h3,
.phone-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.address-info p,
.phone-info p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-phone {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-phone:hover {
    text-decoration: underline;
}

/* Transport Section */
.transport-section {
    background-color: #fafafa;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


.transport-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.transport-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: 2px solid #d4af37;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    color: #1a1a1a;
}

.transport-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.transport-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.transport-content p {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-form,
    .catering-form {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .catering3-highlights-grid,
    .catering3-favorites-grid {
        grid-template-columns: 1fr;
    }

    .home2-hero h1 {
        font-size: 2rem;
    }

    .home2-hero-subtitle {
        font-size: 1rem;
    }

    .home2-social-icons {
        gap: 1.5rem;
    }

    .home2-social-icons a {
        width: 64px;
        height: 64px;
    }

    .home2-social-icons svg {
        width: 40px;
        height: 40px;
    }

    .menu-hero {
        padding: 120px 0 70px;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Instagram Feed */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.instagram-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.instagram-item:hover {
    transform: translateY(-4px);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

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