/* =========================================================
   Darth Marty Media — style.css
   ========================================================= */

:root {
    --header-bg: #323232;
    --body-bg: #565656;
    --gold: #cfa15c;
    --gold-light: #d9b06e;
    --white: #ffffff;
    --text-dark: #2a2a2a;
    --font-heading: 'Baloo 2', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--body-bg);
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background-color: var(--header-bg);
    padding: 20px 0;
}

.header-row {
    flex-wrap: nowrap;
}

.logo-col {
    flex-shrink: 0;
}

.site-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.logo-text-col {
    min-width: 0;
}

.site-title-link {
    display: inline-block;
}

.site-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--gold);
    text-shadow:
        -1.5px -1.5px 0 var(--white),
        1.5px -1.5px 0 var(--white),
        -1.5px 1.5px 0 var(--white),
        1.5px 1.5px 0 var(--white),
        0 -1.5px 0 var(--white),
        0 1.5px 0 var(--white),
        -1.5px 0 0 var(--white),
        1.5px 0 0 var(--white);
    margin: 8px 0 0 20px;
    letter-spacing: 1px;
    line-height: 1;
}

.header-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-col {
    display: flex;
    align-items: center;
    position: relative;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile dropdown panel — a sibling of .container inside <header>,
   independent of nav-col, so it can span the full header width and
   centre its own content regardless of where the toggle button sits. */
.mobile-nav-panel {
    display: none;
    width: 100%;
}

.mobile-nav-panel.is-open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 20px 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--gold-light);
}

/* =========================================================
   RESPONSIVE NAV — collapses below 992px
   ========================================================= */

@media (max-width: 991.98px) {

    .header-row {
        flex-wrap: nowrap;
    }

    .site-title {
        font-size: 1.6rem;
        margin-left: 14px;
    }

    .site-logo {
        width: 60px;
        height: 60px;
    }

    .nav-col {
        flex-shrink: 0;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-nav-panel {
        border-top: 2px solid var(--gold);
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .site-title {
        font-size: 1.2rem;
    }
}

/* =========================================================
   HOME — FOUR BLOCK GRID
   ========================================================= */

.home-blocks {
    padding: 50px 0;
}

.home-block {
    position: relative;
    display: block;
    border: 2px solid var(--gold);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.home-block-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-block-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    transition: background 0.3s ease;
}

.home-block:hover .home-block-img {
    transform: scale(1.05);
}

.home-block:hover .home-block-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.home-block-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--gold);
    text-shadow: -1.5px -1.5px 0 var(--white), 1.5px -1.5px 0 var(--white), -1.5px 1.5px 0 var(--white), 1.5px 1.5px 0 var(--white), 0 -1.5px 0 var(--white), 0 1.5px 0 var(--white), -1.5px 0 0 var(--white), 1.5px 0 0 var(--white);
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 575.98px) {
    .home-block-title {
        font-size: 1.8rem;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background-color: var(--header-bg);
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.footer-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 32px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    white-space: nowrap;
}

.footer-icon {
    color: var(--gold);
    font-size: 0.95rem;
}

.footer-label {
    color: var(--white);
}

.footer-value {
    color: var(--gold);
    font-family: 'Courier New', monospace;
}

.footer-social {
    gap: 12px;
}

.footer-social-label {
    color: var(--gold);
    font-family: 'Courier New', monospace;
    margin-right: 4px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.05rem;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-badge {
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

@media (max-width: 767.98px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-badge {
        margin-left: 0;
    }
}

/* =========================================================
   COOKIE CONSENT
   ========================================================= */

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--header-bg);
    border-top: 3px solid var(--gold);
    padding: 18px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
    flex: 1 1 400px;
}

.cookie-consent-inner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--header-bg);
}

.btn-primary:hover {
    background-color: var(--gold-light);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 575.98px) {
    .cookie-consent-inner {
        align-items: flex-start;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-consent-buttons .btn {
        flex: 1;
    }
}

.page-header {
    background-color: var(--header-bg);
    border-bottom: 2px solid var(--gold);
    padding: 40px 0;
}

.page-header-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow:
        -1.5px -1.5px 0 var(--white),
        1.5px -1.5px 0 var(--white),
        -1.5px 1.5px 0 var(--white),
        1.5px 1.5px 0 var(--white),
        0 -1.5px 0 var(--white),
        0 1.5px 0 var(--white),
        -1.5px 0 0 var(--white),
        1.5px 0 0 var(--white);
    margin: 0;
}

.page-content {
    padding: 50px 0;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
}

.page-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.page-content p {
    line-height: 1.7;
    margin-bottom: 14px;
}

.page-content a {
    color: var(--gold);
    text-decoration: underline;
}

.page-content-img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--gold);
}

/* =========================================================
   SERVICE TEMPLATE (Football / Events / Corporate)
   ========================================================= */

.service-header {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.service-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.service-header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--gold);
    text-shadow:
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        0 -2px 0 var(--white),
        0 2px 0 var(--white),
        -2px 0 0 var(--white),
        2px 0 0 var(--white);
    white-space: nowrap;
    margin: 0;
    text-align: center;
}

@media (max-width: 575.98px) {
    .service-header {
        height: 220px;
    }

    .service-header-title {
        font-size: 1.8rem;
    }
}

.service-content {
    padding: 50px 0;
}

.service-description-body {
    line-height: 1.7;
}

.service-description-body h2,
.service-description-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
}

.service-description-body a {
    color: var(--gold);
    text-decoration: underline;
}

.service-gallery {
    padding: 0 0 50px;
}

.gallery-item {
    display: block;
    border: 2px solid var(--gold);
    border-radius: 6px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 13/9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* =========================================================
   ENQUIRY / CONTACT FORM
   ========================================================= */

.enquiry-section {
    background-color: var(--header-bg);
    padding: 50px 0;
    border-top: 2px solid var(--gold);
}

.enquiry-inner {
    max-width: 800px;
    margin: 0 auto;
}

.enquiry-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 28px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 220px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.enquiry-form label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.enquiry-form input,
.enquiry-form textarea {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--white);
    font-size: 0.95rem;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold-light);
}

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-form .btn-primary {
    width: 100%;
}

.form-alert {
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    text-align: center;
}

.form-alert-success {
    background-color: rgba(207, 161, 92, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.form-alert-error {
    background-color: rgba(220, 80, 80, 0.15);
    border: 1px solid #dc5050;
    color: #f0a0a0;
}

STANDARD TEXT PAGE (Privacy Policy, Terms, etc.)
   ========================================================= */

.standard-text-body {
    line-height: 1.7;
    max-width: 900px;
}

.standard-text-body h1,
.standard-text-body h2,
.standard-text-body h3,
.standard-text-body h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    margin-top: 28px;
    margin-bottom: 14px;
}

.standard-text-body p {
    margin-bottom: 14px;
}

.standard-text-body ul,
.standard-text-body ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.standard-text-body li {
    margin-bottom: 6px;
}

.standard-text-body a {
    color: var(--gold);
    text-decoration: underline;
}

.standard-text-body strong {
    color: var(--white);
}

.contact-details {
    padding: 50px 0;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    height: 100%;
    background-color: var(--header-bg);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 32px 20px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

a.contact-card:hover {
    transform: translateY(-4px);
    background-color: #3c3c3c;
}

.contact-card-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
}

.contact-card-value {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    font-size: 0.85rem;
    overflow-wrap: anywhere;
}

.contact-card-socials {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.contact-card-socials a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.2s ease;
}

.contact-card-socials a:hover {
    color: var(--gold);
}
.home-tagline h2 {
  font-family: "Cutive", serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 3rem;
  margin: 0;
  text-align: center;
  color: white;
}
.footer-badge p {
  color: var(--gold);
  font-family: 'Courier New', monospace;
  margin-bottom: 0;
}