/* ===== CSS VARIABLES ===== */
:root {
    --bg: #0f172a;
    --fg: #e2e8f0;
    --accent: #60a5fa;
    
    /* Spacing scale using rem units */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 0.75rem;   /* 12px */
    --space-lg: 1rem;      /* 16px */
    --space-xl: 1.5rem;    /* 24px */
    --space-2xl: 2rem;     /* 32px */
    
    /* Container max-width */
    --container-max: 68.75rem; /* 1100px */
    
    /* Border radius */
    --radius-sm: 0.5rem;   /* 8px */
    --radius-md: 0.75rem;  /* 12px */
}

/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--fg);
    background: #0b1220;
    line-height: 1.6;
}

/* Styles moved from sherlock1.html */
html, body {
  height: 100%;
  margin: 0;
}

/* Background fits the viewport width (scales to 100% width, height auto) */
.sherlock1-page {
  min-height: 100vh;
  background-image: url('pic/sherlock_fons2.png');
  background-size: 100% auto;      /* fit width, keep aspect ratio */
  background-position: top center; /* align to top so width-fitting visible from top */
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.sherlock-social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.sherlock-social-links a {
  display: inline-block;
  text-decoration: none;
  background: transparent !important;
  overflow: visible !important;
  border: none !important;
  padding: 0 !important;
}


.sherlock-social-links a:hover .social-icon {
  transform: scale(1.08) !important;
  transition: transform 0.18s ease !important;
}

/* Sherlock page background */
body.sherlock-page {
    background-image: url('pic/sherlock_fons1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    background-color: #0b1220; /* Fallback color */
}

/* Ensure main doesn't block background */
body.sherlock-page main {
    background: transparent;
}

/* Mobile-friendly background adjustments */
@media (max-width: 48rem) { /* 768px - Tablets */
    body.sherlock-page {
        background-image: url('pic/sherlock_fons1.jpg');
        background-size: cover;
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
}

@media (max-width: 40rem) { /* 640px - Large phones */
    body.sherlock-page {
        background-image: url('pic/sherlock_fons1.jpg');
        background-size: cover;
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
}

@media (max-width: 30rem) { /* 480px - Small phones */
    body.sherlock-page {
        background-image: url('pic/sherlock_fons1.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100vh;
    }
}

@media (max-width: 20rem) { /* 320px - Very small phones */
    body.sherlock-page {
        background-image: url('pic/sherlock_fons1.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100vh;
    }
}

/* ===== SHERLOCK1 PAGE BACKGROUND (uses fons2.png) ===== */
body.sherlock1-page {
    background-image: url('pic/sherlock_fons2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    background-color: #0b1220; /* Fallback color */
}

body.sherlock1-page main {
    background: transparent;
}

/* Mobile-friendly background adjustments for sherlock1-page */
@media (max-width: 48rem) { /* 768px - Tablets */
    body.sherlock1-page {
        background-image: url('pic/sherlock_fons2.png');
        background-size: contain;
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
}

@media (max-width: 40rem) { /* 640px - Large phones */
    body.sherlock1-page {
        background-image: url('pic/sherlock_fons2.png');
        background-size: contain;
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
}

@media (max-width: 30rem) { /* 480px - Small phones */
    body.sherlock1-page {
        background-image: url('pic/sherlock_fons2.png');
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100vh;
    }
}

@media (max-width: 20rem) { /* 320px - Very small phones */
    body.sherlock1-page {
        background-image: url('pic/sherlock_fons2.png');
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100vh;
    }
}

/* Logo size override for sherlock1-page */
body.sherlock1-page .social-icon {
    width: 50px !important;
    height: 50px !important;
}

/* ===== SHERLOCK SOCIAL LINKS ===== */
.sherlock-social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    min-height: 50vh;
    padding: var(--space-2xl);
    width: 100%;
    box-sizing: border-box;
}

/* Large screen optimizations */
@media (min-width: 80rem) { /* 1280px and larger */
    .sherlock-social-links {
        gap: var(--space-2xl);
        padding: var(--space-2xl) var(--space-2xl);
    }
    
    .social-link {
        max-width: 32rem;
    }
    
    .social-icon {
        width: 4.5rem; /* 72px */
        height: 4.5rem; /* 72px */
    }
    
    .social-text {
        font-size: 3rem; /* 48px */
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(15, 23, 42, 0.85);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    min-height: 3.5rem; /* Minimum touch target size */
    min-width: 10rem; /* Minimum touch target width */
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.4);
    background: rgba(15, 23, 42, 0.95);
    border-color: #3b82f6;
}

.social-icon {
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon img,
img.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(69%) sepia(96%) saturate(1394%) hue-rotate(195deg) brightness(101%) contrast(101%);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    color: #3b82f6;
    transform: scale(1.1);
}

.social-link:hover .social-icon img,
.social-link:hover img.social-icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(1394%) hue-rotate(195deg) brightness(101%) contrast(101%);
}

.social-text {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: var(--fg);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.social-link:hover .social-text {
    color: var(--accent);
}

/* Mobile responsive adjustments for social links */
@media (max-width: 48rem) { /* 768px - Tablets */
    .sherlock-social-links {
        min-height: 45vh;
        padding: var(--space-xl);
        gap: var(--space-xl);
    }
    
    .social-link {
        padding: var(--space-lg) var(--space-xl);
        gap: var(--space-md);
        max-width: 28rem;
    }
    
    .social-icon {
        width: 3.5rem; /* 56px */
        height: 3.5rem; /* 56px */
    }
    
    .social-text {
        font-size: 2.25rem; /* 36px */
    }
}

@media (max-width: 40rem) { /* 640px - Large phones */
    .sherlock-social-links {
        min-height: 40vh;
        padding: var(--space-xl);
        gap: var(--space-lg);
    }
    
    .social-link {
        padding: var(--space-lg) var(--space-xl);
        gap: var(--space-md);
        max-width: 24rem;
    }
    
    .social-icon {
        width: 3rem; /* 48px */
        height: 3rem; /* 48px */
    }
    
    .social-text {
        font-size: 2rem; /* 32px */
    }
}

@media (max-width: 30rem) { /* 480px - Small phones */
    .sherlock-social-links {
        min-height: 35vh;
        padding: var(--space-lg);
        gap: var(--space-lg);
    }
    
    .social-link {
        padding: var(--space-md) var(--space-lg);
        gap: var(--space-sm);
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 20rem;
    }
    
    .social-icon {
        width: 3.5rem; /* 56px */
        height: 3.5rem; /* 56px */
    }
    
    .social-text {
        font-size: 1.75rem; /* 28px */
        letter-spacing: 0.05em;
    }
}

@media (max-width: 20rem) { /* 320px - Very small phones */
    .sherlock-social-links {
        min-height: 30vh;
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .social-link {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-xs);
        min-width: auto;
    }
    
    .social-icon {
        width: 2.5rem; /* 40px */
        height: 2.5rem; /* 40px */
    }
    
    .social-text {
        font-size: 1.5rem; /* 24px */
        letter-spacing: 0.03em;
    }
}

/* Landscape orientation on mobile devices */
@media (max-width: 48rem) and (orientation: landscape) {
    .sherlock-social-links {
        min-height: auto;
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .social-link {
        padding: var(--space-md) var(--space-lg);
    }
}

/* Ensure main container is responsive and doesn't block background */
body.sherlock-page main {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--fg);
    text-decoration: none;
    font-size: 1.125rem; /* 18px */
}

.brand .dot {
    width: 0.625rem;  /* 10px */
    height: 0.625rem; /* 10px */
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}

/* ===== NAVIGATION MENU ===== */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--space-xl);
}

nav a {
    color: var(--fg);
    text-decoration: none;
    padding: var(--space-sm) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
}

nav a:hover,
nav a:focus-visible {
    background: rgba(148, 163, 184, 0.12);
    outline: none;
}

nav a.active {
    color: var(--accent);
}

/* ===== MAIN CONTENT ===== */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #666;
}
main {
    max-width: var(--container-max);
    margin: var(--space-xl) auto;
    padding: 0 var(--space-lg);
}

main h1 {
    font-size: 2.5rem; /* 40px */
    margin-bottom: var(--space-lg);
    color: var(--fg);
}

main p {
    font-size: 1.125rem; /* 18px */
    color: rgba(226, 232, 240, 0.8);
    margin: 0;
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.menu-item {
    display: flex;
    justify-content: center;
}

.menu-card {
    background: var(--bg);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    width: 100%;
    max-width: 20rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.menu-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.logo-image {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    display: block;
    margin: 0 auto var(--space-md) auto;
}

.menu-card h3 {
    color: var(--fg);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.menu-card p {
    color: rgba(226, 232, 240, 0.7);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.menu-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.menu-button:hover:not(.disabled) {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.menu-button.disabled {
    background: rgba(148, 163, 184, 0.3);
    color: rgba(226, 232, 240, 0.5);
    cursor: not-allowed;
}

/* ===== ABOUT US PAGE ===== */
.about-content {
    margin-top: var(--space-xl);
}

.about-section {
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

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

.about-section h2 {
    color: var(--accent);
    font-size: 2rem; /* 32px */
    margin-bottom: var(--space-lg);
    font-weight: 600;
    line-height: 1.3;
}

.about-section h3 {
    color: var(--fg);
    font-size: 1.5rem; /* 24px */
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.about-section p {
    color: rgba(226, 232, 240, 0.9);
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: rgba(226, 232, 240, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* ===== CONTACTS PAGE ===== */
.contact-content {
    margin-top: var(--space-xl);
}

.pricing-section {
    margin-bottom: var(--space-2xl);
}

.pricing-section h2 {
    color: var(--accent);
    font-size: 2rem; /* 32px */
    margin-bottom: var(--space-xl);
    font-weight: 600;
    text-align: center;
}

.price-card {
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 30rem;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.2);
}

.price-amount {
    margin-bottom: var(--space-lg);
}

.currency {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    color: var(--fg);
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: rgba(226, 232, 240, 0.7);
    font-weight: 500;
}

.price-description {
    color: var(--fg);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.discount-info {
    background: rgba(96, 165, 250, 0.1);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.discount-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.discount-info p {
    color: rgba(226, 232, 240, 0.9);
    font-size: 1rem;
    margin: 0;
}

.contact-section {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-section h3 {
    color: var(--fg);
    font-size: 1.75rem; /* 28px */
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.contact-section > p {
    color: rgba(226, 232, 240, 0.8);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(148, 163, 184, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--fg);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #3b82f6;
}

.cta-section {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(96, 165, 250, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.cta-text {
    color: var(--fg);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
    padding: 0 var(--space-lg);
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-image {
    width: 20rem; /* 320px - smaller size */
    height: 15rem; /* 240px - smaller height */
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image:hover .background-image {
    transform: scale(1.05);
}

.hero-content {
    padding: var(--space-xl) 0;
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-description {
    font-size: 1.25rem; /* 20px */
    line-height: 1.7;
    color: var(--fg);
    max-width: 60rem; /* 960px */
    margin: 0 auto;
    padding: 0 var(--space-lg);
    font-weight: 400;
}

.hero-additional {
    margin-top: var(--space-xl);
    padding: 0 var(--space-lg);
}

.hero-additional h2 {
    color: var(--accent);
    font-size: 1.75rem; /* 28px */
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.hero-additional p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.9);
    max-width: 50rem; /* 800px */
    margin: 0 auto;
}

/* ===== TRUSTED RESTAURANTS SECTION ===== */
.trusted-restaurants {
    text-align: center;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) 0;
}

.trusted-restaurants h2 {
    color: var(--accent);
    font-size: 2.25rem; /* 36px */
    margin-bottom: var(--space-lg);
    font-weight: 600;
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 40rem) { /* 640px */
    .nav-container {
        padding: var(--space-sm) var(--space-md);
    }
    
    nav ul {
        gap: var(--space-sm);
    }
    
    nav a {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.875rem; /* 14px */
    }
    
    .brand {
        font-size: 1rem; /* 16px */
    }
    
    main {
        padding: 0 var(--space-md);
        margin: var(--space-lg) auto;
    }
    
    main h1 {
        font-size: 2rem; /* 32px */
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }
    
    .menu-card {
        max-width: 100%;
        padding: var(--space-lg);
    }
    
    .hero-section {
        padding: 0 var(--space-md);
    }
    
    .hero-images {
        gap: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
    
    .hero-image {
        width: 18rem; /* 288px */
        height: 13.5rem; /* 216px */
    }
    
    .hero-description {
        font-size: 1.125rem; /* 18px */
        padding: 0 var(--space-md);
    }
    
    .hero-additional {
        padding: 0 var(--space-md);
    }
    
    .hero-additional h2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .hero-additional p {
        font-size: 1rem; /* 16px */
    }
    
    .trusted-restaurants h2 {
        font-size: 1.75rem; /* 28px */
        padding: 0 var(--space-sm);
    }
    
    .about-section {
        padding: var(--space-lg);
    }
    
    .about-section h2 {
        font-size: 1.75rem; /* 28px */
    }
    
    .about-section h3 {
        font-size: 1.375rem; /* 22px */
    }
    
    .about-section p {
        font-size: 1rem; /* 16px */
    }
    
    .price-card {
        padding: var(--space-xl);
        max-width: 100%;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-section {
        padding: var(--space-xl);
    }
}

@media (max-width: 30rem) { /* 480px */
    .nav-container {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    
    nav ul {
        gap: var(--space-xs);
    }
    
    main {
        padding: 0 var(--space-sm);
    }
    
    .menu-grid {
        gap: var(--space-md);
    }
    
    .menu-card {
        padding: var(--space-md);
    }
    
    .menu-icon {
        font-size: 2.5rem;
    }
    
    .logo-image {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .about-section {
        padding: var(--space-md);
    }
    
    .about-section h2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .about-section h3 {
        font-size: 1.25rem; /* 20px */
    }
    
    .benefits-list li {
        font-size: 0.875rem; /* 14px */
        padding-left: var(--space-md);
    }
    
    .price-card {
        padding: var(--space-lg);
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-method {
        padding: var(--space-md);
    }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: var(--bg);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    margin-top: var(--space-2xl);
    color: var(--fg);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: var(--space-xl);
}

.footer-section h3 {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-section h4 {
    color: var(--fg);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-section p {
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul a {
    color: rgba(226, 232, 240, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 50%;
    color: var(--fg);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: var(--space-lg);
    text-align: center;
    background: rgba(15, 23, 42, 0.5);
}

.footer-bottom p {
    color: rgba(226, 232, 240, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

/* ===== FOOTER RESPONSIVE DESIGN ===== */
@media (max-width: 40rem) { /* 640px */
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-xl) var(--space-md);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: var(--space-md);
    }
}

@media (max-width: 30rem) { /* 480px */
    .footer-container {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .social-links {
        gap: var(--space-sm);
    }
    
    .social-links a {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* ===== LARGE SCREEN OPTIMIZATION ===== */
@media (min-width: 80rem) { /* 1280px and larger */
    .hero-images {
        gap: var(--space-2xl);
        margin-bottom: var(--space-2xl);
    }
    
    .hero-image {
        width: 22rem; /* 352px */
        height: 16.5rem; /* 264px */
    }
    
    .hero-description {
        font-size: 1.375rem; /* 22px */
        max-width: 70rem; /* 1120px */
    }
    
    .hero-additional h2 {
        font-size: 2rem; /* 32px */
    }
    
    .hero-additional p {
        font-size: 1.25rem; /* 20px */
        max-width: 60rem; /* 960px */
    }
}

/* ===== EXTRA LARGE SCREEN OPTIMIZATION ===== */
@media (min-width: 120rem) { /* 1920px and larger */
    .hero-images {
        gap: 3rem;
    }
    
    .hero-image {
        width: 25rem; /* 400px */
        height: 18.75rem; /* 300px */
    }
    
    .hero-description {
        font-size: 1.5rem; /* 24px */
        max-width: 80rem; /* 1280px */
    }
    
    .hero-additional h2 {
        font-size: 2.25rem; /* 36px */
    }
    
    .hero-additional p {
        font-size: 1.375rem; /* 22px */
        max-width: 70rem; /* 1120px */
    }
}

/* Styles applied only for sherlock1.html (body class = "sherlock1-page") */
body.sherlock1-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background-image: url('pic/sherlock_fons2.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; /* fallback */
}

/* Portrait / Landscape fine-tuning (still scoped to sherlock1 page) */
@media (orientation: portrait) {
  body.sherlock1-page {
    background-size: auto 100vh;
    background-position: center top;
  }
}
@media (orientation: landscape) {
  body.sherlock1-page {
    background-size: 100% auto;
    background-position: center;
  }
}

/* Social icons column, centered so middle icon aligns with viewport center */
body.sherlock1-page .sherlock1-social-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  z-index: 10;
}

/* Anchor/button appearance (only on sherlock1 page) */
body.sherlock1-page .sherlock1-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(0,0,0,0.12);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
body.sherlock1-page .sherlock1-social-links a:hover {
  border-color: rgba(255,255,255,0.95);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

/* Icon sizing (scoped) */
body.sherlock1-page .sherlock1-social-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  visibility: visible;
  opacity: 1;
  transition: transform .3s ease, filter .25s ease;
}
body.sherlock1-page .sherlock1-social-links a:hover .sherlock1-social-icon {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* Mobile */
@media (max-width: 768px) {
  body.sherlock1-page .sherlock1-social-icon {
    width: 90px;
    height: 90px;
  }
}

/* Small border for the three social buttons (only on Sherlock page) */
body.sherlock-page .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(0,0,0,0.08);
  transition: border-color .16s ease, box-shadow .18s ease, transform .12s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Make the border "shine" when clicked / focused (keyboard & mouse) */
body.sherlock-page .social-link:active,
body.sherlock-page .social-link:focus,
body.sherlock-page .social-link:focus-visible {
  border-color: rgba(255,255,255,0.98);
  box-shadow:
    0 0 10px rgba(255,255,255,0.45),   /* bright glow */
    0 6px 18px rgba(0,0,0,0.28);       /* depth shadow */
  transform: translateY(-2px);
  outline: none;
}

/* Optional: slightly brighter icon color on active/focus */
body.sherlock-page .social-link:active .social-icon,
body.sherlock-page .social-link:focus .social-icon {
  filter: brightness(1.15);
}

