/* Global Styles */
:root {
    --pikla-yellow: #f7df00;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-800: #1f2937;
    --yellow-400: #facc15;
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --font-typewriter: 'Typewriter-Serial-Light', monospace;
}

@font-face {
    font-family: 'Typewriter-Serial-Light';
    src: url('./public/Typewriter-Serial-Light-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Prevent text and image selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Prevent blue highlight on tap/click */
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    /* Prevent image dragging */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Allow selection for form inputs */
input, 
textarea, 
select {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    font-family: var(--font-heading);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background-color: var(--pikla-yellow);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--yellow-400);
}

.btn-secondary {
    background-color: var(--black);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--gray-800);
}

/* Button pulse animation */
@keyframes breathe-yellow {
    0% {
        background-color: var(--pikla-yellow);
        box-shadow: 0 0 0 0 rgba(247, 223, 0, 0.7);
    }
    70% {
        background-color: #f8e536;
        box-shadow: 0 0 0 10px rgba(247, 223, 0, 0);
    }
    100% {
        background-color: var(--pikla-yellow);
        box-shadow: 0 0 0 0 rgba(247, 223, 0, 0);
    }
}

.btn-breathing {
    animation: breathe-yellow 3s infinite;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background-color: var(--pikla-yellow);
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(12deg);
}

.logo-svg {
    height: 2.5rem;
    width: auto;
}

.desktop-nav {
    display: none;
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon, .close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--pikla-yellow);
    z-index: 100;
    overflow: hidden;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.close-mobile-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mobile-nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.mobile-nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

/* Active pickle indicator for mobile menu */
.mobile-active-indicator {
    position: absolute;
    left: -50px;
    width: 100px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

/* Right side pickle indicator */
.mobile-active-indicator-right {
    position: absolute;
    right: -50px; /* Show half the pickle in viewport from right */
    left: auto; /* Override left property */
    width: 100px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    transform: scaleX(-1); /* Flip horizontally so it points to the left */
}

/* Remove all these fixed position styles which don't work on different screens */
.mobile-nav-link.home-active ~ .mobile-active-indicator,
.mobile-nav-link.menu-active ~ .mobile-active-indicator,
.mobile-nav-link.order-active ~ .mobile-active-indicator,
.mobile-nav-link.about-active ~ .mobile-active-indicator,
.mobile-nav-link.contact-active ~ .mobile-active-indicator {
    /* No fixed positions here */
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-link {
        color: var(--black);
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: rgba(0, 0, 0, 0.7);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 20rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-logo img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-buttons .btn {
    width: 100%;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    font-family: var(--font-heading);
}

/* Carousel */
.specialty-carousel {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 100%;
    padding: 0 1rem;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 33.333%;
    }
}

.carousel-card {
    height: 100%;
    background-color: var(--pikla-yellow);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
}

.carousel-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.carousel-image-container {
    margin-bottom: 1rem;
    width: 100%;
    height: 12rem;
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.carousel-description {
    color: rgba(0, 0, 0, 0.8);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--white);
}

.carousel-button.prev {
    left: 0.5rem;
}

.carousel-button.next {
    right: 0.5rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--gray-500);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.carousel-indicator:hover {
    background-color: var(--gray-400);
}

.carousel-indicator.active {
    background-color: var(--pikla-yellow);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--pikla-yellow);
    position: relative;
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.gallery-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    width: auto;
    height: auto;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--black);
    z-index: 1010;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
    background-color: white;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--white);
}

.footer-pikla-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-typewriter);
    color: var(--white);
    font-weight: normal;
    text-transform: lowercase;
}

.footer-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--gray-500);
}

.footer-hashtag {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

.footer-hashtag a {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.footer-hashtag a:hover {
    opacity: 0.8;
}

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

.social-link {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--pikla-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pikla-yellow);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact svg {
    color: var(--pikla-yellow);
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact a {
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--pikla-yellow);
}

.hours p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Page Header */
.page-header {
    background-color: var(--pikla-yellow);
    padding: 6rem 0 2rem;
    text-align: center;
    margin-top: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
}

/* About Page */
.about-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.about-content p {
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: var(--gray-100);
}

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

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--pikla-yellow);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -3px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.3);
}

.team-photo {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--pikla-yellow);
}

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

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.team-role {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Menu Page */
.menu-categories {
    padding: 2rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-tab {
    background: none;
    border: 2px solid var(--pikla-yellow);
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background-color: rgba(247, 223, 0, 0.2);
}

.category-tab.active {
    background-color: var(--pikla-yellow);
    color: var(--black);
}

.menu-items {
    padding: 3rem 0;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--black);
    font-family: var(--font-heading);
    background-color: var(--black);
    color: var(--white);
    padding: 1rem 0;
}

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

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.menu-item-image {
    position: relative;
    aspect-ratio: 16/9;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.menu-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
}

.menu-item-description {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Order CTA Section */
.order-cta {
    padding: 4rem 0;
    background-color: var(--pikla-yellow);
    text-align: center;
}

.cta-content {
    max-width: 36rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Delivery Page */
.delivery-options {
    padding: 4rem 0;
    background-color: var(--white);
}

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

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.option-card {
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--pikla-yellow);
}

.option-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.option-card p {
    margin-bottom: 1.5rem;
}

.delivery-apps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.delivery-app {
    display: block;
    width: 100px;
    height: 40px;
    transition: transform 0.3s ease;
}

.delivery-app:hover {
    transform: scale(1.05);
}

.delivery-app img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delivery-areas {
    padding: 4rem 0;
    background-color: var(--gray-100);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .areas-content {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

.area-map {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.area-info {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.area-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.delivery-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.delivery-details li {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.delivery-details li:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: var(--gray-800);
}

.note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--gray-500);
}

.order-form-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-full {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input, 
textarea, 
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-family: var(--font-sans);
    font-size: 1rem;
}

input:focus, 
textarea:focus, 
select:focus {
    outline: none;
    border-color: var(--pikla-yellow);
    box-shadow: 0 0 0 2px rgba(247, 223, 0, 0.2);
}

.order-items {
    margin-bottom: 2rem;
}

.order-items h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.item-details {
    flex-grow: 1;
}

.item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    border: none;
    border-radius: 0.25rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--gray-300);
}

.quantity-input {
    width: 3rem;
    text-align: center;
    margin: 0 0.5rem;
    padding: 0.375rem;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item-btn:hover {
    color: var(--gray-800);
}

.add-item-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: 0.375rem;
    color: var(--gray-800);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-item-btn:hover {
    background-color: var(--gray-200);
}

.order-summary {
    background-color: var(--white);
    border-radius: 0.375rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--gray-300);
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-order {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-item {
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--pikla-yellow);
}

.contact-item h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-item p {
    margin-bottom: 1.5rem;
}

.contact-item .btn {
    margin-top: auto;
}

.hours-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    max-width: 250px;
}

.hours-list li {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}

.hours-list span {
    font-weight: 600;
}

.map-section {
    padding: 4rem 0;
    background-color: var(--gray-100);
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.submit-message {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.follow-section {
    padding: 4rem 0;
    background-color: var(--pikla-yellow);
    text-align: center;
}

.follow-text {
    max-width: 36rem;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--pikla-yellow);
}

.social-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.social-card p {
    color: var(--gray-500);
}

/* About Page Styles */
.about-page {
    padding-top: 6rem;
}

.yellow-bg {
    background-color: var(--pikla-yellow);
    position: relative;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-heading);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-member {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -3px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.3);
}

.team-photo {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

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

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-title {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.team-description {
    margin-bottom: 1rem;
}

.instagram-link {
    display: flex;
    align-items: center;
    color: black;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

.instagram-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Section Divider */
.section-divider {
    padding: 1.5rem 0;
}

.section-divider hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 3rem 0;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

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

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.story-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.story-content p {
    margin-bottom: 1rem;
}

.story-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--pikla-yellow);
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.story-logo img {
    max-width: 250px;
    height: auto;
}

/* Philosophy Section */
.philosophy-section {
    padding: 3rem 0;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.philosophy-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.philosophy-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Angel Pickle */
.angel-pickle {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.angel-pickle img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

@media (min-width: 768px) {
    .angel-pickle img {
        max-width: 300px;
    }
}

/* Menu Page Styles */
.menu-page-wrapper {
    background-color: var(--pikla-yellow);
    padding: 3rem 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.menu-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.menu-category-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: black;
    color: white;
    font-family: var(--font-heading);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.menu-card-image {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-content {
    padding: 1rem;
}

.menu-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Menu Modal Styles */
.menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.menu-modal.active {
    display: flex;
}

.menu-modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 15;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.close-modal-btn:hover {
    background-color: #f3f4f6;
}

.modal-item-image {
    position: relative;
    aspect-ratio: 16 / 9;
}

.modal-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-item-details {
    padding: 1.5rem;
}

.modal-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-item-description {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-order-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.modal-order-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.order-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.order-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.order-partner:hover {
    transform: scale(1.05);
}

.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partner-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

/* Remove blue highlight on button press for all elements */
button, 
a, 
input, 
select, 
textarea,
[role="button"],
[tabindex]:focus {
    -webkit-tap-highlight-color: transparent;
    outline: none;
} 