:root {
    --apple-bg: #f5f5f7;
    --apple-text: #1d1d1f;
    --apple-link: #0066cc;
    --apple-dark-bg: #000000;
}


@font-face {
    font-family: DancingScript;
    src: url(assets/fonts/DancingScript-VariableFont_wght.ttf);
}

/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: var(--apple-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin: 0;
}

.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background: #000;
    color: #fff;
    text-decoration: none;
}
.contact svg{
    width: 20px;
    height: 20px;
}

.navbar {
    display: flex;
    justify-content: center; /* Apple centers their nav content */
    align-items: center;
    padding: 0 5%;
    background-color: rgba(251, 251, 253, 0.541);
    backdrop-filter: saturate(180%) blur(20px); /* The Apple blur effect */
    position: fixed;
    top: 0;
    width: 100%;
    height: 48px;
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.logo span {
    color: var(--apple-black);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--apple-text);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.logo img {
    width: 28px;
    height: auto;
    margin-right: 10px;
}

.logo span svg {
    fill: #b10d0d;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f; 
    font-size: 14px; /* Essential: Apple uses 14px for nav */
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
    color: var(--apple-blue);
}

.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(251, 251, 253, 0.541); /* Match navbar transparency */
    backdrop-filter: saturate(180%) blur(20px);
    padding: 10px 0;
    border-radius: 12px;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    margin: 0;
    padding: 8px 20px;
}

.dropdown-menu li a {
    color: var(--apple-black);
    text-decoration: none;
}

.dropdown-menu.show {
    display: block;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Hide burger by default (Desktop) */
.menu-icon {
    display: none; /* Hidden on desktop */
}

/* --- BURGER ICON --- */
.menu-icon {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    z-index: 10000;
}

.menu-icon rect {
    fill: #b10d0d; /* Your brand red */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}
.close-icon {
    display: none;
    font-size: 24px;
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* Hero Section */
.apple-hero {
    background-color: #000; /* Pure black background */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 50px; /* Space for the fixed navbar */
}

.hero-container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.hero-text {
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: #f5f5f7;
    letter-spacing: -0.005em;
    margin-bottom: 0;
    text-shadow: none; /* Removing your old text shadow */
}

.hero-subtitle {
    font-size: 28px;
    color: #f5f5f7;
    font-weight: 400;
    margin-top: 10px;
}

.hero-links {
    margin-top: 15px;
}

.apple-link {
    color: #0066cc;
    font-size: 21px;
    text-decoration: none;
    margin: 0 15px;
}

.apple-link:hover {
    text-decoration: underline;
}

/* Image Styling */
.hero-image-box {
    margin-top: 40px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-main-img {
    width: 80%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1)); /* Subtle glow */
}

/* Apple-style Entrance Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: heroFadeUp 1s ease-out forwards;
}

.hero-image-box {
    perspective: 1000px; /* Adds a bit of 3D depth */
    margin-top: 50px;
    overflow: hidden;
}

.hero-main-img {
    width: 70%;
    max-width: 750px;
    height: auto;
    transition: transform 0.1s ease-out; /* Keeps the scroll movement smooth */
    will-change: transform; /* Optimization for browsers */
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

.cta-link {
    font-size: 21px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    z-index: 1;
}

.cta-link:hover {
    text-decoration: underline;
}

/* --- ABOUT US / VALUES SECTION --- */
.values-section {
    padding: 100px 10%;
    background-color: #ffffff;
    border-top: 1px solid #d2d2d7;
}

.values-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}

.values-header p {
    font-size: 21px;
    color: #6e6e73;
    line-height: 1.4;
}

/* The Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns like Apple Investor */
    gap: 40px;
}

.value-card {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d2d2d7; /* Apple uses thin separators */
    padding-bottom: 40px;
}

.value-image {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 25px;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-card:hover img {
    transform: scale(1.05);
}

.value-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-content p {
    font-size: 17px;
    color: #1d1d1f;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Apple Investor Link Style */
.apple-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
}

.apple-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-header h2 {
        font-size: 32px;
    }
}


/* Cards Section */
.apple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.product-tile {
    background-color: #f5f5f7;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 0 20px; /* Padding at top, none at bottom */
    position: relative;
    height: 600px; /* Standard Apple tile height */
}

.tile-text {
    position: relative;
    z-index: 10; /* Keeps text above the zooming image */
}

.tile-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 5px 0;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #86868b;
}

.tile-img-container {
    width: 100%;
    flex-grow: 1; /* This fills the white space between text and bottom */
    display: flex;
    align-items: flex-end; /* Pushes image to the very bottom */
    justify-content: center;
    margin-top: 20px;
}

.tile-img-container img {
    max-width: 90%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BEEF SPECIFIC (Full Width) --- */
.beef-card {
    grid-column: span 2;
    background-color: #fafafa;
}
.beef-card .tile-img-container img {
    max-width: 600px; /* Keeps the beef from getting too huge on desktop */
}

/* --- CHICKEN SPECIFIC --- */
.chicken-card {
    background-color: #f5f5f7;
}
.chicken-card .tile-img-container {
    padding-bottom: 0; /* Ensures it sits on the edge */
}

/* --- PORK SPECIFIC --- */
.pork-card {
    background-color: #f5f5f7;
}

/* --- SEPARATED HOVER ACTIONS --- */
/* This ensures the zoom stays contained and doesn't overlap the text */
.beef-card:hover img { transform: scale(1.05); }
.chicken-card:hover img { transform: scale(1.1) translateY(-10px); }
.pork-card:hover img { transform: scale(1.1) translateY(-10px); }

/* Laptop/Desktop Scaling */
@media (min-width: 1400px) {
    .product-tile { height: 700px; }
    .tile-text h2 { font-size: 52px; }
}

/* What's coming? */
.video-reveal-container {
    width: 100%;
    background-color: #000;
    padding: 100px 0; /* Increase padding to create more breathing room */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-text-overlay.top-text {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    /* Reduce width to ~70% of the screen */
    width: 70%; 
    max-width: 1100px; /* Safety cap for very large monitors */
    
    /* Force a specific aspect ratio or height if needed */
    aspect-ratio: 16 / 9; 
    
    border-radius: 30px; /* Signature Apple rounded corners */
    overflow: hidden;    /* Keeps the video inside the rounded corners */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Adds depth */
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the wrapper without gaps */
    display: block;
    transition: filter 1s ease;
}

/* The state after the video ends */
video.dimmed {
    filter: brightness(0.4);
}

.video-end-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    opacity: 0; /* Hidden initially */
    transition: opacity 1s ease 0.5s; /* Fade in after video dims */
    width: 80%;
}

.video-end-content h3 {
    font-size: clamp(24px, 4vw, 42px); /* Responsive text */
    margin-bottom: 10px;
}

.video-end-content p {
    font-size: clamp(16px, 2vw, 21px);
}

.video-end-content.show {
    opacity: 1;
}

.video-end-content p {
    font-size: clamp(16px, 2vw, 21px);
}

/* --- MAP BENTO GRID --- */
.locations-section {
    padding: 100px 5%;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.locations-header h2 {
    font-size: 48px;
    letter-spacing: -0.02em;
    margin: 10px 0 40px;
}

.locations-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.map-card {
    background: #1c1c1e;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.map-card:hover {
    transform: translateY(-8px);
}

.map-wrapper {
    width: 100%;
    height: 250px;
    background: #2c2c2e;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%); /* Apple Maps Dark Style */
    transition: filter 0.3s ease;
}

.map-card:hover iframe {
    filter: grayscale(0%) invert(0%); /* Returns to color on hover */
}

.map-info {
    padding: 30px;
    text-align: left;
}

.location-tag {
    color: #b10d0d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.map-info p {
    color: #86868b;
    font-size: 15px;
    line-height: 1.5;
}

/* Featured Center Card */
.featured-location {
    border: 1px solid rgba(177, 13, 13, 0.4);
}


/* Parent Company Section */
#parent-company {
    padding: 50px;
    background-color: #fff5f5;
    text-align: center;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-details {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.company-details h2 {
    font-size: 28px;
    color: #800000;
    margin-bottom: 20px;
    font-weight: bold;
}

.company-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.company-contact {
    text-align: left;
    margin-bottom: 30px;
}

.company-contact p {
    font-size: 16px;
    margin: 10px 0;
}

.company-contact a {
    color: #800000;
    text-decoration: none;
    font-weight: 500;
}

.company-contact a:hover {
    text-decoration: underline;
}

.company-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.follow-btn,
.review-btn {
    background-color: #800000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.follow-btn:hover,
.review-btn:hover {
    background-color: #660000;
}

/* --- HOMEPAGE EXPERIENCE SECTION --- */
.experience-homepage {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.experience-intro {
    text-align: center;
    padding: 0 5% 60px;
}

.experience-intro h2 {
    font-size: 56px;
    letter-spacing: -0.02em;
    margin: 10px 0;
}

.experience-intro p {
    font-size: 24px;
    color: #86868b;
    max-width: 800px;
    margin: 0 auto;
}

/* Endless Slideshow Logic */
.apple-slideshow-container {
    width: 100%;
    margin-bottom: 40px;
}

.slideshow-track {
    display: flex;
    width: calc(450px * 10); /* image width * total images */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 450px;
    height: 300px;
    padding: 0 10px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-450px * 5)); } /* Scroll exactly half to loop */
}

/* Bento Grid for Experience */
.experience-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.exp-card {
    height: 400px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.match-day {
     background-image: url('assets/images/football-area.webp'); 
}
.pool-table { 
    background-image: url('assets/images/pool-table.webp'); 
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}


/* --- EXPERIENCE MENU STYLE --- */
.menu-container {
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    background: #000;
}

.glass-menu {
    background: rgba(28, 28, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    width: 100%;
    max-width: 1000px;
    color: #fff;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h3 {
    font-size: 36px;
    margin: 10px 0;
}

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-column h4 {
    color: #b10d0d; /* Brand Red Accent */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* The subtle line between item and edge */
.price-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 15px;
}






/* --- MEAT PRODUCTS GRID --- */
/* --- CATEGORY HEADER --- */
.category-header {
    text-align: center;
    padding: 80px 20px 20px;
    background-color: #ffffff; /* Ensures the header area is bright */
}

.category-hero-title {
    font-size: 56px;
    font-weight: 600;
    color: #1d1d1f; /* Apple's deep black */
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}

.category-hero-subtitle {
    font-size: 24px;
    color: #86868b; /* Apple's secondary gray */
    font-weight: 400;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: #1d1d1f; /* Apple's dark button base */
    color: #f5f5f7;
    border: none;
    padding: 10px 22px;
    border-radius: 980px; /* Full pill shape */
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn.active {
    background: #0066cc; /* Apple's highlight blue */
    color: #ffffff;
}

.product-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 5%;
}

.meat-card {
    background: #161617;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    justify-content: space-between; /* Pushes content to top and bottom */
    transition: transform 0.3s ease;
    height: 100%; /* Ensures all cards in a row are the same height */
}

/* Fixed Image Container to normalize sizes */
.meat-card img {
    width: 100%;
    height: 200px; /* Force consistent height */
    object-fit: contain; /* Keeps the whole meat cut visible without cropping */
    margin-bottom: 20px;
    background: #1c1c1e; /* Subtle background for the image area */
    border-radius: 12px;
    padding: 10px;
}

.meat-info {
    flex-grow: 1; /* Allows the info area to take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meat-info h3{
    color: #fff;
}

.price {
    color: #86868b; /* Muted Apple gray */
    font-size: 17px;
}



/* --- ABOUT PAGE BENTO STYLE --- */

.about-hero {
    padding: 140px 5% 80px;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.about-hero .section-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.about-hero .section-subtitle {
    font-size: 24px;
    color: #86868b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.values-bento {
    background-color: #000;
    padding: 20px 5% 100px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: #1c1c1e;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Layout Spanning */
.card-large {
    grid-row: span 2;
}

.card-wide {
    grid-column: span 2;
    grid-auto-rows: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1c1c1e, #111);
}

/* Background Images */
.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .card-image-bg {
    transform: scale(1.08);
}

/* Content on Cards */
.bento-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    z-index: 2;
    color: #fff;
}

.card-content.centered {
    position: relative;
    text-align: center;
}

.eyebrow {
    color: #b10d0d;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.bento-card h2 { font-size: 42px; margin-bottom: 15px; }
.bento-card h3 { font-size: 32px; margin-bottom: 10px; }
.bento-card p { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* Mobile */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 450px;
    }
    .card-large, .card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .about-hero .section-title { font-size: 42px; }
}



/* --- CONTACT PAGE SERVICES STYLE --- */
.contact-page-container {
    padding: 120px 5% 80px;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}

.contact-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #1c1c1e;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Feature Card (WhatsApp) */
.whatsapp-feature {
    grid-column: span 2;
    background: linear-gradient(145deg, #1c1c1e, #0a0a0a);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.whatsapp-feature h2 { font-size: 42px; margin: 10px 0; }

/* Form Elements */
.form-card input, .form-card textarea {
    width: 100%;
    background: #2c2c2e;
    border: none;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
}

.form-submit {
    width: 100%;
    background: #0071e3; /* Apple Blue */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Location/Info Card */
.location-card {
    background: #1c1c1e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-label {
    color: #b10d0d;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hours {
    margin-top: 20px;
    font-size: 14px;
    color: #86868b;
    display: flex;
    flex-direction: column;
}


/* --- OPERATIONS PAGE SPECIFIC --- */
.operations-hero {
    padding: 140px 5% 60px;
    background: #000;
    text-align: center;
    color: #fff;
}

.ops-bento-container {
    background: #000;
    padding: 20px 5% 100px;
}

.ops-bento-container .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Specific Card Layouts */
.card-large { grid-column: span 2; grid-row: span 2; }
.card-wide { grid-column: span 2; }

.bento-card .category {
    color: #ff3b30;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

/* --- FEED PAGE FIXES --- */

.feed-section {
    padding-bottom: 80px;
}

.split-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%;
    background: #1c1c1e; /* Dark card background */
    border-radius: 30px;
    overflow: hidden; /* Clips the image to the border radius */
}

.feature-text {
    flex: 1;
    padding: 60px;
    text-align: left;
}

.feature-image {
    flex: 1;
    height: 500px; /* Set a fixed height for the section */
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents stretching while filling the area */
    display: block;
}




/* Mobile Responsiveness */
@media (max-width: 900px) {
    .contact-bento-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-feature {
        grid-column: span 1;
    }
    .whatsapp-feature h2 { font-size: 32px; }
    .ops-bento-container .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-large, .card-wide { grid-column: span 1; grid-row: span 1; }
}






/* --- MEDIA PAGE SERVICES STYLE --- */
.media-container {
    padding: 100px 5% 60px;
    background-color: #000; /* Dark background like Apple Services */
    color: #fff;
}

.bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 24px;
    color: #86868b;
    margin-top: 10px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    background: #1c1c1e;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: scale(1.02);
}

/* Feature Card Sizing */
.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .card-bg {
    transform: scale(1.1);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-button-overlay {
    opacity: 1;
}

.play-button-overlay svg {
    width: 30px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
}

.category {
    color: #b10d0d; /* Your brand red */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.video-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

.card-large h3 {
    font-size: 40px;
}

/* --- MODAL UPDATES --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

#videoPlayer {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #b10d0d;
}



/* --- LEGAL PAGES CSS --- */
.legal-wrapper {
    display: flex;
    max-width: 1100px;
    margin: 120px auto 80px;
    padding: 0 5%;
    gap: 80px;
    font-family: -apple-system, sans-serif;
}

.legal-nav {
    width: 220px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav ul {
    list-style: none;
    border-right: 1px solid #d2d2d7;
    padding-right: 20px;
}

.legal-nav a {
    display: block;
    padding: 12px 0;
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.legal-nav a.active {
    color: #1d1d1f;
    font-weight: 600;
}

.legal-body {
    flex: 1;
}

.legal-header {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.last-updated {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 40px;
}

.legal-block {
    margin-bottom: 48px;
}

.legal-block h2 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.legal-block p, .legal-block li {
    font-size: 17px;
    line-height: 1.5;
    color: #424245;
    margin-bottom: 12px;
}




/* --- VALUE PAGES STYLE --- */
.value-page {
    padding: 140px 5% 100px;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    text-align: center;
}

.value-page .hero-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.value-page h1 {
    font-size: clamp(40px, 8vw, 64px);
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.value-page p {
    font-size: 20px;
    line-height: 1.6;
    color: #86868b;
}

.value-page .eyebrow {
    color: #b10d0d;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Reusing Bento Grid for internal cards */
.value-page .bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-page .bento-card {
    background: #1c1c1e;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}




/* --- APPLE FOOTER STYLES --- */
.apple-footer {
    background-color: #f5f5f7;
    color: #1d1d1f;
    padding: 50px 10% 30px 10%;
    font-size: 12px; /* Apple uses very small footer text */
    line-height: 1.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}

.directory-column h3 {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.directory-column ul {
    list-style: none;
    padding: 0;
}

.directory-column li {
    margin-bottom: 8px;
}

.directory-column a {
    color: #424245;
    text-decoration: none;
    transition: color 0.3s;
}

.directory-column a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

/* Bottom Legal Section */
.footer-bottom {
    border-top: 1px solid #d2d2d7;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    color: #6e6e73;
    margin-bottom: 10px;
}

.legal-links a {
    color: #424245;
    text-decoration: none;
    margin-right: 15px;
    border-right: 1px solid #d2d2d7;
    padding-right: 15px;
}

.legal-links a:last-child {
    border: none;
}

.footer-developer {
    color: #86868b;
    margin-top: 10px;
}

.dev-name {
    font-family: 'DancingScript', cursive; /* Keeping your personal touch */
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-directory {
        grid-template-columns: 1fr 1fr;
    }
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}


/* Responsive */
@media (max-width: 600px) {
    .filter-bar {
        flex-direction: column;
        gap: 10px;
    }

    .filter-bar input,
    .filter-bar select {
        width: 100%;
    }
}




/* Media Queries */
/* Ensure font doesn't scale up too much on 4K/Large monitors */
@media (min-width: 1400px) {
    .nav-links a {
        font-size: 14px; /* Keep it small even on huge screens */
    }
    .navbar {
        padding: 0 15%; /* Add more side padding on wide screens to keep content centered */
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .locations-bento {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 300px;
    }
}


@media (max-width: 768px) {
    /* Hide the standard list and turn it into the mobile overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* The Signature Apple Blur */
        background-color: rgba(251, 251, 253, 0.541); 
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0; /* Slide in */
    }
    .nav-links.active a {
        font-size: 28px; 
        color: #1d1d1f; /* Adjust based on your glassy background color */
        font-weight: 600;
    }
    .nav-links a {
        font-size: 21px; 
    }

    /* Ensure the dropdown menu is hidden by default on mobile */
    .dropdown-menu {
        position: static;
        display: none;
        background: none;
        box-shadow: none;
        text-align: center;
    }

    /* Class added by JavaScript on click */
    .dropdown-menu.mobile-show {
        display: block;
    }

    /* Style for the 'Products' parent link in mobile */
    .dropdown-toggle::after {
        content: ' ▾'; /* Visual indicator that it can be opened */
        font-size: 12px;
    }

    .menu-icon {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background-color: #ffffffe6;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    /* Ensure the mobile menu links have a distinct size */
    .nav-links.active a {
        font-size: 28px;
        color: var(--apple-black); /* White text for the dark mobile overlay */
    }

    /* Animate to 'X' when the menu is open */
    .menu-icon.open .line-top {
        transform: translateY(9px) rotate(45deg);
        transform-origin: center;
    }
    .menu-icon.open .line-mid {
        opacity: 0;
    }
    .menu-icon.open .line-bot {
        transform: translateY(-9px) rotate(-45deg);
        transform-origin: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 24px; /* Large for mobile touch */
        font-weight: 500;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }
    .card-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .section-title {
        font-size: 36px;
    }

    .legal-wrapper {
        flex-direction: column;
        margin-top: 80px;
        gap: 40px;
    }
    .legal-nav {
        width: 100%;
        position: relative;
        top: 0;
    }
    .legal-nav ul {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #d2d2d7;
        padding-bottom: 10px;
    }
    .legal-nav li { margin-right: 20px; white-space: nowrap; }

    .experience-bento { grid-template-columns: 1fr; }
    .experience-intro h2 { font-size: 36px; }

    .split-feature {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .feature-image {
        width: 100%;
        height: 300px; /* Smaller height on mobile */
    }
    
    .feature-text {
        padding: 30px;
    }

    .menu-content { grid-template-columns: 1fr; gap: 40px; }
    .glass-menu { padding: 40px 25px; }
    .menu-header h3 { font-size: 28px; }
}


/* Animations */
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .text-image {
        flex-direction: column;
        text-align: center;
    }

    .text-image.reverse {
        flex-direction: column;
    }
}
