/* =============================================
   Golden Krust Newburgh Catering - Modern Styles
   ============================================= */

/* =============================================
   Custom Font Faces - Golden Krust Brand Fonts
   ============================================= */

/* Brush Up - Heading Font */
@font-face {
    font-family: 'Brush Up';
    src: url('../fonts/BrushUp.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Colby - Body Font Family */
@font-face {
    font-family: 'Colby';
    src: url('../fonts/Colby-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Colby';
    src: url('../fonts/Colby-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Colby';
    src: url('../fonts/Colby-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Colby';
    src: url('../fonts/Colby-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Colby';
    src: url('../fonts/Colby-Bold.otf') format('opentype'),
         url('../fonts/Colby-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Colby';
    src: url('../fonts/Colby-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables - Caribbean Island Theme */
:root {
    /* Caribbean Color Palette */
    --caribbean-green: #009b3a;
    --caribbean-green-dark: #007a2e;
    --caribbean-green-light: #00c44a;
    --caribbean-gold: #fed100;
    --caribbean-gold-dark: #e6bc00;
    --caribbean-gold-light: #ffe44d;
    --caribbean-navy: #02344D;
    --caribbean-navy-light: #064a6b;
    --caribbean-navy-dark: #012636;
    --caribbean-teal: #0a5e7a;

    /* Primary & Secondary */
    --primary: var(--caribbean-gold);
    --primary-dark: var(--caribbean-gold-dark);
    --primary-light: var(--caribbean-gold-light);
    --secondary: var(--caribbean-navy);
    --secondary-light: var(--caribbean-navy-light);
    --secondary-dark: var(--caribbean-navy-dark);
    --accent: var(--caribbean-green);
    --accent-dark: var(--caribbean-green-dark);
    --accent-light: var(--caribbean-green-light);
    --teal: var(--caribbean-teal);

    --white: #ffffff;
    --off-white: #faf9f6;
    --cream: #f5f0e6;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    --font-heading: 'Brush Up', Helvetica, Arial, Lucida, sans-serif;
    --font-body: 'Colby', Helvetica, Arial, Lucida, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(254, 209, 0, 0.3);
    --shadow-green: 0 8px 30px rgba(0, 155, 58, 0.3);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Artistic Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 155, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(254, 209, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--secondary);
    border-color: var(--primary);
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-green {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-weight: 600;
}

.btn-green:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-full {
    width: 100%;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: height var(--transition-base);
}

.logo-location {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-top: 2px;
}

.navbar.scrolled .logo img {
    height: 38px;
}

.navbar.scrolled .logo-location {
    font-size: 0.55rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 0;
}

.nav-menu a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-shadow: none !important;
    margin-left: auto;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition-base);
}

/* =============================================
   Hero Section with Parallax
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero.parallax {
    background-image: url('../images/Golden-Krust-240.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    .hero.parallax {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Diagonal slice - navy overlay on left, transparent on right */
    background: linear-gradient(
        105deg,
        rgba(2, 52, 77, 0.95) 0%,
        rgba(2, 52, 77, 0.93) 48%,
        rgba(2, 52, 77, 0.5) 52%,
        transparent 58%,
        transparent 100%
    );
}

/* Gold accent line along the diagonal cut */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 50.5%,
        var(--primary) 51%,
        var(--primary) 52%,
        transparent 52.5%,
        transparent 100%
    );
    opacity: 0.9;
    pointer-events: none;
}

/* Subtle green accent line parallel to gold */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 49%,
        var(--accent) 49.5%,
        var(--accent) 50.5%,
        transparent 51%,
        transparent 100%
    );
    opacity: 0.7;
    pointer-events: none;
}

/* Animated floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite ease-in-out;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    animation-delay: 2s;
    animation-duration: 18s;
}

.hero-particles span:nth-child(3) {
    left: 35%;
    top: 40%;
    width: 8px;
    height: 8px;
    animation-delay: 4s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(4) {
    left: 5%;
    top: 80%;
    width: 12px;
    height: 12px;
    background: var(--accent);
    animation-delay: 1s;
    animation-duration: 16s;
}

.hero-particles span:nth-child(5) {
    left: 25%;
    top: 30%;
    width: 5px;
    height: 5px;
    animation-delay: 3s;
    animation-duration: 20s;
}

.hero-particles span:nth-child(6) {
    left: 40%;
    top: 70%;
    width: 7px;
    height: 7px;
    background: var(--accent);
    animation-delay: 5s;
    animation-duration: 13s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(20px) scale(1.05);
        opacity: 0.35;
    }
}

/* Animated diagonal shimmer effect */
.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 45%,
        rgba(254, 209, 0, 0.1) 50%,
        transparent 55%,
        transparent 100%
    );
    animation: shimmerMove 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmerMove {
    0%, 100% {
        opacity: 0;
        transform: translateX(-5%);
    }
    50% {
        opacity: 1;
        transform: translateX(5%);
    }
}

/* Pulsing glow on the diagonal line */
.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 49%,
        rgba(254, 209, 0, 0.3) 50.5%,
        rgba(0, 155, 58, 0.2) 51.5%,
        transparent 53%,
        transparent 100%
    );
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(15px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-right: 45%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 35px;
}

.hero-main {
    color: var(--white);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 600;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    white-space: nowrap;
}

.hero-catering {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 3px 3px 30px rgba(254, 209, 0, 0.4);
    position: relative;
}

.hero-catering::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    border-radius: 2px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--white);
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

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

/* =============================================
   Features Section
   ============================================= */
.features {
    padding: 80px 0;
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

/* Artistic corner accents */
.features-grid::before,
.features-grid::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary);
    opacity: 0.2;
}

.features-grid::before {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.features-grid::after {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform var(--transition-base);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-tag::before {
    left: -35px;
}

.section-tag::after {
    right: -35px;
}

.section-header.light .section-tag {
    color: var(--primary);
}

.section-header.light .section-tag::before,
.section-header.light .section-tag::after {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Packages Section
   ============================================= */
.packages-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

/* Artistic brush stroke decoration */
.packages-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 200px;
    height: 8px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.3;
}

.packages-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 200px;
    height: 8px;
    background: linear-gradient(270deg, var(--primary), transparent);
    opacity: 0.3;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured {
    border: 3px solid var(--accent);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.package-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Artistic diagonal accent on header */
.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, var(--accent) 40%, var(--accent) 45%, transparent 45%);
    opacity: 0.3;
}

.package-card.corporate .package-header {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.package-card.corporate .package-header::before {
    background: linear-gradient(135deg, transparent 40%, var(--primary) 40%, var(--primary) 45%, transparent 45%);
}

.package-size {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.package-header h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.package-body {
    padding: 30px 20px;
    text-align: center;
}

.serving-badge {
    margin-bottom: 25px;
}

.serving-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1;
}

.serving-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-features {
    text-align: left;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.package-features li:last-child {
    border-bottom: none;
}

/* =============================================
   Premium Section
   ============================================= */
.premium-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    z-index: -1;
}

.premium-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/oxtail-large-tray-Vertical@2x.webp') center/cover;
    opacity: 0.1;
}

/* Artistic pattern overlay */
.premium-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, var(--accent) 49%, var(--accent) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--primary) 49%, var(--primary) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.03;
}

.premium-dishes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.premium-dish-card {
    text-align: center;
    transition: transform var(--transition-base);
}

.premium-dish-card:hover {
    transform: scale(1.05);
}

.premium-dish-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
    margin-bottom: 12px;
    box-shadow: 0 0 20px rgba(254, 209, 0, 0.3);
}

.premium-dish-card span {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.premium-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.premium-card.highlighted {
    border-color: var(--primary);
    background: rgba(254, 209, 0, 0.08);
}

.premium-card-inner {
    padding: 40px 30px;
    text-align: center;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--secondary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.premium-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.premium-serving {
    margin-bottom: 20px;
}

.premium-serving .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 0 30px rgba(254, 209, 0, 0.4);
}

.premium-serving .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

/* Artistic frame around gallery */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px);
    max-width: 1300px;
    height: calc(100% - 160px);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    background: var(--secondary);
    aspect-ratio: 3 / 4;
}

/* Artistic corner brackets on gallery items */
.gallery-item::before,
.gallery-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary);
    z-index: 3;
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-item::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.gallery-item::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

/* Wide items for overhead/horizontal images */
.gallery-item.wide {
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
    background: var(--secondary);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* =============================================
   Add-ons Section
   ============================================= */
.addons-section {
    padding: 100px 0;
    background: var(--off-white);
}

.addons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.addons-content h2 {
    margin-bottom: 20px;
}

.addons-content > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.addons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.addons-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.addons-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.addons-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.addons-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* =============================================
   Contact Section
   ============================================= */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-item p {
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Jamaican accent stripe on form */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--accent) 0%, var(--accent) 33%,
        var(--primary) 33%, var(--primary) 66%,
        var(--accent) 66%, var(--accent) 100%
    );
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 155, 58, 0.1);
}

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

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

/* Jamaican flag stripe at top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
        var(--accent) 0%, var(--accent) 33.33%,
        var(--primary) 33.33%, var(--primary) 66.66%,
        var(--accent) 66.66%, var(--accent) 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* =============================================
   Animations
   ============================================= */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

    .gallery-item.wide {
        grid-column: span 1;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 30px;
    }

    .contact-wrapper,
    .addons-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .addons-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 30px;
        transition: right var(--transition-base);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    }

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

    .nav-menu a {
        font-size: 1.1rem;
        color: var(--secondary);
    }

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

    .nav-cta {
        margin-left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Adjust diagonal hero for tablet */
    .hero-overlay {
        background: linear-gradient(
            115deg,
            rgba(2, 52, 77, 0.95) 0%,
            rgba(2, 52, 77, 0.93) 58%,
            rgba(2, 52, 77, 0.5) 65%,
            transparent 75%,
            transparent 100%
        );
    }

    .hero-overlay::before {
        background: linear-gradient(
            115deg,
            transparent 0%,
            transparent 63%,
            var(--primary) 63.5%,
            var(--primary) 64.5%,
            transparent 65%,
            transparent 100%
        );
    }

    .hero-overlay::after {
        background: linear-gradient(
            115deg,
            transparent 0%,
            transparent 61%,
            var(--accent) 61.5%,
            var(--accent) 62.5%,
            transparent 63%,
            transparent 100%
        );
    }

    .hero-glow {
        background: linear-gradient(
            115deg,
            transparent 0%,
            transparent 61%,
            rgba(254, 209, 0, 0.3) 63%,
            rgba(0, 155, 58, 0.2) 64%,
            transparent 66%,
            transparent 100%
        );
    }

    .hero-shimmer {
        background: linear-gradient(
            115deg,
            transparent 0%,
            transparent 55%,
            rgba(254, 209, 0, 0.1) 62%,
            transparent 70%,
            transparent 100%
        );
    }

    .hero-content {
        padding-right: 25%;
        padding-left: 20px;
        text-align: left;
    }

    .hero-main {
        font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    }

    .hero-catering {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
        letter-spacing: 5px;
    }

    .hero-catering::after {
        height: 3px;
        bottom: -6px;
    }

    .hero-slogan {
        font-size: clamp(1.1rem, 2.5vw, 1.6rem);
        margin-top: 15px;
    }

    .logo-location {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .hero-particles span {
        opacity: 0.2;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .premium-packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .premium-dishes {
        gap: 15px;
    }

    .premium-dish-card img {
        width: 80px;
        height: 80px;
    }

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

    .gallery-item.wide {
        grid-column: span 2;
        aspect-ratio: 4 / 3;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

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

    .logo img {
        height: 38px;
    }

    .navbar.scrolled .logo img {
        height: 32px;
    }

    .hero {
        min-height: 100svh;
    }

    /* Mobile hero - horizontal split instead of diagonal */
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(2, 52, 77, 0.95) 0%,
            rgba(2, 52, 77, 0.9) 55%,
            rgba(2, 52, 77, 0.4) 72%,
            transparent 88%,
            transparent 100%
        );
    }

    .hero-overlay::before {
        background: linear-gradient(
            180deg,
            transparent 0%,
            transparent 70%,
            var(--primary) 70.5%,
            var(--primary) 71.5%,
            transparent 72%,
            transparent 100%
        );
    }

    .hero-overlay::after {
        background: linear-gradient(
            180deg,
            transparent 0%,
            transparent 67%,
            var(--accent) 67.5%,
            var(--accent) 68.5%,
            transparent 69%,
            transparent 100%
        );
    }

    .hero-glow {
        background: linear-gradient(
            180deg,
            transparent 0%,
            transparent 67%,
            rgba(254, 209, 0, 0.3) 70%,
            rgba(0, 155, 58, 0.2) 71%,
            transparent 73%,
            transparent 100%
        );
    }

    .hero-shimmer {
        background: linear-gradient(
            180deg,
            transparent 0%,
            transparent 60%,
            rgba(254, 209, 0, 0.1) 70%,
            transparent 80%,
            transparent 100%
        );
    }

    .hero-particles span {
        display: none;
    }

    .hero-particles span:nth-child(1),
    .hero-particles span:nth-child(2),
    .hero-particles span:nth-child(3) {
        display: block;
        opacity: 0.15;
    }

    .hero-content {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 32%;
        text-align: center;
    }

    .hero-main {
        font-size: clamp(1.2rem, 4.5vw, 1.6rem);
        white-space: normal;
    }

    .hero-catering {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        letter-spacing: 3px;
    }

    .hero-catering::after {
        height: 3px;
        bottom: -5px;
    }

    .logo-location {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }

    .hero-slogan {
        font-size: clamp(0.95rem, 4vw, 1.3rem);
        margin-top: 12px;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
    }

    .features {
        padding: 60px 0;
        margin-top: -40px;
    }

    .features-grid {
        padding: 30px 20px;
    }

    .packages-section,
    .gallery-section,
    .addons-section,
    .contact-section {
        padding: 60px 0;
    }

    .premium-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .gallery-item {
        aspect-ratio: 4 / 5;
    }

    .gallery-item.wide {
        aspect-ratio: 4 / 3;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .addons-list {
        grid-template-columns: 1fr;
    }
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for images */
img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* =============================================
   Artistic Jamaican Decorations
   ============================================= */

/* Jamaican flag stripe decoration */
.jamaican-stripe {
    height: 6px;
    background: linear-gradient(90deg,
        var(--accent) 0%, var(--accent) 33.33%,
        var(--primary) 33.33%, var(--primary) 66.66%,
        var(--accent) 66.66%, var(--accent) 100%
    );
}

/* Decorative section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-divider span {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Artistic quote styling */
.jamaican-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent);
    text-align: center;
    padding: 40px;
    position: relative;
}

.jamaican-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 0;
    left: 20px;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Hover glow effect for Jamaican colors */
.glow-gold:hover {
    box-shadow: 0 0 30px rgba(254, 209, 0, 0.4);
}

.glow-green:hover {
    box-shadow: 0 0 30px rgba(0, 155, 58, 0.4);
}

/* Artistic underline */
.artistic-underline {
    position: relative;
    display: inline-block;
}

.artistic-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    border-radius: 2px;
}

/* Palm leaf decorative corner (CSS art) */
.palm-corner::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background:
        radial-gradient(ellipse at center, transparent 60%, var(--accent) 61%, var(--accent) 63%, transparent 64%);
    opacity: 0.1;
    transform: rotate(-45deg);
}

/* Reggae stripe accent on cards */
.reggae-accent {
    position: relative;
    overflow: hidden;
}

.reggae-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--accent) 0%, var(--accent) 33%,
        var(--primary) 33%, var(--primary) 66%,
        var(--secondary) 66%, var(--secondary) 100%
    );
}

/* =============================================
   Lightbox Gallery Modal
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 52, 77, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: all var(--transition-fast);
    line-height: 1;
    padding: 10px;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
    width: 30px;
    height: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoomIn 0.4s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.lightbox-info {
    text-align: center;
    color: var(--white);
    margin-top: 25px;
    max-width: 700px;
    padding: 0 20px;
}

.lightbox-title {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.lightbox-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-counter span:first-child {
    color: var(--primary);
    font-weight: 600;
}

/* Jamaican accent stripe on lightbox */
.lightbox::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--accent) 0%, var(--accent) 33%,
        var(--primary) 33%, var(--primary) 66%,
        var(--accent) 66%, var(--accent) 100%
    );
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-nav svg {
        width: 22px;
        height: 22px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .lightbox-title {
        font-size: 1.4rem;
    }

    .lightbox-description {
        font-size: 1rem;
    }

    .lightbox-image {
        max-height: 55vh;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        bottom: 80px;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: 20%;
    }

    .lightbox-next {
        right: 20%;
    }
}
