body {
    font-family: 'Poppins', sans-serif;
}



/* HERO LAYOUT */
.hero {
    background-image: url('/assets/images/dragacts-hero-desktop.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

    min-height: 300px; /* adjust to taste */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 10px 20px;
    text-align: center;
}


.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* FEATURED PERFORMERS GRID */
.featured-performers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.featured-performers {
    max-width: 1200px;
    margin: 10px auto;
}


/* PROFILE PAGE LAYOUT */
.profile-hero {
    padding: 40px 0;
}

.profile-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

.profile-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .profile-hero-inner,
    .profile-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .profile-hero-inner {
        flex-direction: column;
        gap: 20px;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-content iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}


/* REVIEWS GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* AREAS GRID */
.areas-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

/* BOOKING LAYOUT */
.booking-wrapper {
    max-width: 800px;
    margin: 10px auto;
    text-align: center;
    padding-top: 30px;
}

.booking-box {
    margin-bottom: 30px;
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
/* GLOBAL PAGE WRAPPER */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}
.content-block,
.reviews-block,
.promo-block,
.areas-block {
    max-width: 900px;
    margin: 10px auto;
    padding: 0 20px;
}
/* Cookie / Policy Pages */
.policy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.policy-page h2,
.policy-page h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.policy-page p {
    margin-bottom: 15px;
}

.areas-block {
    padding: 40px 20;
    background: #f8f8f8; /* subtle contrast above footer */
    border-top: 1px solid #e2e2e2;
}

.areas-block h2 {
    text-align: center;
    margin-bottom: 20px;
}

.areas-block p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.areas-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.areas-columns h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.areas-columns a {
    display: block;
    margin-bottom: 6px;
    color: #333;
    text-decoration: none;
}

.areas-columns a:hover {
    text-decoration: underline;
}
.image-left {
    float: left;
    margin: 0 15px 10px 0;
}
.areas-columns div {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 10px;
}

.areas-columns div::-webkit-scrollbar {
    width: 6px;
}

.areas-columns div::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.scroll-box {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 10px;
}

.scroll-box::-webkit-scrollbar {
    width: 6px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.profile-unavailable {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

.profile-unavailable h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #c2185b;
}

.profile-unavailable p {
    font-size: 18px;
    margin-bottom: 15px;
}

.profile-unavailable .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #c2185b;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.profile-unavailable .btn:hover {
    background: #a0154c;
}
.find-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.find-wrapper h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #c2185b;
}

.find-wrapper .intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.location-search {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.location-search input {
    padding: 12px 15px;
    font-size: 16px;
    width: 280px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.location-search button {
    padding: 12px 20px;
    background: #c2185b;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.location-search button:hover {
    background: #a0154c;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.cat-box {
    display: block;
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.cat-box:hover {
    background: #ffe4ef;
    border-color: #c2185b;
}

.cat-box h2 {
    font-size: 20px;
    margin: 0;
}

.browse-all {
    text-align: center;
    margin-top: 20px;
}

.browse-all a {
    color: #c2185b;
    font-weight: bold;
    text-decoration: none;
}

.browse-all a:hover {
    text-decoration: underline;
}

/* drag bingo page */

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
    color: #222;
}

.content-wrapper h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #d40072;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-wrapper ul {
    margin: 0 0 25px 20px;
    padding: 0;
}

.content-wrapper ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Optional CTA button styling */
.content-wrapper .btn-primary {
    display: inline-block;
    background: #d40072;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

.content-wrapper .btn-primary:hover {
    background: #b00060;
}

/* Optional image blocks for later */
.content-wrapper .image-block {
    width: 100%;
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
}

.content-wrapper .image-block img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Optional highlight box */
.content-wrapper .highlight-box {
    background: #fff4fb;
    border-left: 5px solid #d40072;
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
}
.profile-reviews,
.profile-reviews .review {
    max-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
/* Modern mobile-friendly form styling */
.location-search input[type="text"],
.location-search input[type="search"],
.location-search input[type="email"],
.location-search input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #fff;
    color: #333;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.location-search input::placeholder {
    color: #888;
    font-weight: 400;
}

/* Focus state */
.location-search input:focus {
    border-color: #d100a3; /* your brand pink/purple */
    box-shadow: 0 0 0 3px rgba(209, 0, 163, 0.25);
}

/* Button styling */
.location-search button {
    width: 100%;
    margin-top: 12px;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 600;
    background: #d100a3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.location-search button:hover {
    background: #b0008a;
}
/* Force search box + button to stack vertically */
.location-search {
    display: flex;
    flex-direction: column;
    gap: 12px; /* space between input and button */
    width: 100%;
}

/* Make the input full width */
.location-search input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Make the button full width and bold */
.location-search button {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 600;
    background: #d100a3; /* your brand colour */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
/* ==========================================
   OPTIONAL SECTION TOGGLE
========================================== */

.optional-toggle {
    background: #f1e8f7;
    padding: 12px 14px;
    border-radius: 8px;
    margin: 16px 0 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #5a2a7a;
    border: 1px solid #e0d3ec;
    transition: background 0.2s ease;
}

.optional-toggle:hover {
    background: #e9dff3;
}

.toggle-arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
}

/* ==========================================
   OPTIONAL SECTION (COLLAPSED BY DEFAULT)
========================================== */

.optional-section {
    display: none;
    background: #faf7fc;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e8dff2;
    margin-bottom: 16px;
}

.optional-section.open {
    display: block;
}

/* Optional hint text */
.optional-hint {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6a4a85;
}
/* ============================
   GALLERY — SHARED STYLES
============================ */
/* The scrollable strip */
.gallery-strip {
    width: 100%;
    max-width: 100%;
    height: 500px;              /* ← set the height you want */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important; /* ← forces horizontal stacking */
    padding: 10px 0;
    box-sizing: border-box;
    display: block !important;      /* ← prevents flexbox interference */
    position: relative;
    z-index: 5;                     /* ← ensures scroll is on top */
}

/* Optional: visible scrollbar */
.gallery-strip::-webkit-scrollbar {
    height: 10px;
}
.gallery-strip::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 5px;
}

/* Each image */
.gallery-strip-img {
    height: 100%;               /* ← consistent height */
    width: auto;                /* ← keep aspect ratio */
    display: inline-block !important;
    margin-right: 12px;
    border-radius: 12px;
    object-fit: cover;
}
.profile-content.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.profile-content.two-col .col-left,
.profile-content.two-col .col-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
    .profile-content.two-col {
        grid-template-columns: 1fr;
    }
}
/* SEO-only scroll box */
.seo-scroll {
    width: 100%;
    margin-top: 40px;
}

.seo-scroll-inner {
    max-height: 120px;        /* adjust height as needed */
    overflow-y: auto;
    padding: 15px;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-wrap;
}

/* Optional: nicer scrollbar */
.seo-scroll-inner::-webkit-scrollbar {
    width: 8px;
}
.seo-scroll-inner::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}



