* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
        
body {
font-family: 'Source Sans 3', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #F4F4F4;
}
        
.container {
max-width: 720px;
margin: 0 auto;
background-color: var(--jamaican-white);
background-image: url('/assets/oxtail_container_bg_comp.jpeg');
background-size: cover;
background-position: center;
min-height: 100vh;
box-shadow: 0 0 15px rgba(0,0,0,0.15);
position: relative;
}

:root {
--jamaican-green: #009B3A;
--jamaican-yellow: #FED100;
--jamaican-red: #E30613;
--jamaican-black: #000000;
--jamaican-white: #F1F1F1;
}

@font-face {
font-family: 'Source Sans 3';
src: url('/fonts/source-sans-3-latin-400-normal.woff2');
}

@font-face {
font-family: 'Cooper-Black*';
src: url('/fonts/Cooper-Black.woff2');
}

nav .pill-button a {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header, nav a, .content-box h2, footer h5 {
font-family: 'Cooper-Black*', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==================== SLIDESHOW ==================== */

.hero-slideshow {
position: relative;
height: 380px;
overflow: hidden;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1.2s ease-in-out;
}

.slide.active {
opacity: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0,0,0,0.00), rgba(0,0,0,0.00));
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 2;
color: var(--jamaican-white);
}

.hero-overlay h1 {
font-size: 2.8rem;
text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
}

/* ==================== REST OF THE TEMPLATE ==================== */

header {
background: linear-gradient(135deg, var(--jamaican-green), #007A2F);
color: var(--jamaican-white);
padding: 1.2rem 0;
text-align: center;
}

nav {
background-color: var(--jamaican-yellow);
padding: 0.9rem 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
display: flex;
justify-content: center;
list-style: none;
flex-wrap: wrap;
gap: 1.8rem;
}
        
ul {
list-style: none;
}

nav a {
color: var(--jamaican-black);
text-decoration: none;
}

nav a:hover {
color: var(--jamaican-red);
}
        
.center-button {
display: flex;
justify-content: center;
align-items: center;
}
        
.pill-button {
margin-top: 0.9rem;
padding: 14px 32px;
background-color: #E30613; /* Jamaican red */
color: white;
font-size: 1rem;
font-weight: 700;
text-decoration: none;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
/* box-shadow: 0 4px 12px rgba(227, 6, 19, 0.25); */
white-space: nowrap;
min-height: 48px;
display: inline-block;
align-items: center;
justify-content: center;
}
        
.pill-button a {
color: white;
}
        
.pill-button a:hover {
color: white;
}
        
.pill-button a:active {
color: white;
}
        
.pill-button a:focus-visible {
color: white;
}

.pill-button:hover {
background-color: #C20A10; /* darker Jamaican red */
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(194, 10, 16, 0.35);
}

.pill-button:active {
transform: scale(0.98);
}

.pill-button:focus-visible {
outline: 3px solid #FF6B6B;
outline-offset: 4px;
}

main {
padding: 2rem 0;
}

.content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.8rem;
padding: 0 1.5rem;
}

.content-box {
background-color: var(--jamaican-white);
border: 3px solid var(--jamaican-green);
border-radius: 12px;
padding: 1.8rem;
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.content-box:hover {
box-shadow: 0 12px 20px rgba(0,155,58,0.2);
transform: translateY(-5px);
border-color: var(--jamaican-yellow);
}

.content-box h2 {
margin-bottom: 1.2rem;
color: var(--jamaican-green);
font-size: 1.3rem;
border-bottom: 3px solid var(--jamaican-yellow);
padding-bottom: 0.6rem;
}

.content-box iframe {
width: 100%;
height: 300px;
}

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

footer {
background: linear-gradient(to right, var(--jamaican-green), #007A2F);
color: var(--jamaican-white);
text-align: center;
padding: 2rem 0;
margin-top: 3rem;
font-size: 0.7rem;
}

@media (max-width: 720px) {
.container { max-width: 100%; box-shadow: none; }
.hero-slideshow { height: 280px; }
.hero-overlay h1 { font-size: 2.2rem; }
.content-grid { padding: 0 1rem; }
}