/* -----------------------------------------
   NakedFest 2026 – Slick Festival Styles
   Full modern redesign, same background
------------------------------------------ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@300;400;600&display=swap');

/* Jokerman only for logo if needed */
@font-face {
    font-family: 'MyFont';
    src: url('Jokerman-Regular.ttf');
}

/* Global */

html {
    background: url('Naked-Fest-2018-Website-Clo.gif') no-repeat center center fixed;
    background-size: cover;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', Arial, sans-serif;
    color: #fff;
}

/* Top gradient header bar */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(40,0,60,0.85));
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.7);
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px black);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ffd27f;
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

/* Navigation */

.main-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #ffe6b3;
    text-decoration: none;
    margin-left: 22px;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffdd55, #ff8a00);
    box-shadow: 0 0 8px rgba(255,200,80,0.8);
    transition: width 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Page wrapper */

.page {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    padding: 0 20px 40px 20px;
}

/* Hero section (home) */

.hero {
    position: relative;
    border-radius: 24px;
    padding: 40px 32px 32px 32px;
    margin-bottom: 32px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255,180,80,0.35), transparent 55%),
                radial-gradient(circle at bottom right, rgba(140,80,255,0.35), transparent 55%),
                rgba(0,0,0,0.70);
    box-shadow: 0 18px 45px rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
}

.hero-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.hero-title {
    font-family: 'MyFont', cursive; /* Jokerman */
    font-size: 3rem;
    color: #f09029;
    text-shadow: 0 0 14px rgba(0,0,0,0.9), 0 0 6px rgba(255,200,80,0.7);
    margin: 0;
    letter-spacing: 0.03em;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffd27f;
    opacity: 0.9;
}

.hero-dates {
    margin-top: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #f7e3ff;
}

.hero-dates strong {
    color: #ffdd55;
}

/* CTA row */

.hero-cta-row {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

/* Primary CTA button */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 221, 85, 0.9); /* flat warm gold */
    color: #000;
    padding: 14px 30px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: rgba(255, 221, 85, 1); /* slightly brighter */
    color: #000;
    box-shadow: 0 14px 32px rgba(0,0,0,0.9);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0,0,0,0.8) inset;
}


.btn-primary:hover {
    background: linear-gradient(135deg, #ffe680, #ffb733);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.9), 0 0 18px rgba(255,220,120,1);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0,0,0,0.8) inset;
}

html, body {
    overflow-x: hidden;
}
.page > *:first-child {
    margin-top: 0 !important;
}
.site-header,
.site-header-inner {
    width: 100%;
    box-sizing: border-box;
}
html {
    overflow-y: scroll;
}


html {
    overflow-y: scroll;
}

html, body {
    overflow-x: hidden;
}

html {
    overflow-y: scroll;
}
html, body {
    overflow-x: hidden;
}


/* Styled Facebook widget wrapper */
.fb-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    margin-right: 10px;
    transform: translateY(1px);
}

/* Smooth hover effect */
.fb-wrapper:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 8px 22px rgba(0,0,0,0.75);
}

/* Unified social button style */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffd27f;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    transition: 0.2s ease;
}

/* Hover effect */
.social-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.75);
}

/* Facebook-specific colour accent */
.fb-btn i {
    font-size: 1.3rem;
    color: #3b5998; /* Facebook blue */
    transition: 0.2s ease;
}

.fb-btn:hover i {
    color: #ffffff;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffd27f;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    transition: 0.2s ease;
}

.social-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.75);
}

/* Facebook */
.fb-btn i {
    font-size: 1.3rem;
    color: #3b5998;
}
.fb-btn:hover i {
    color: #ffffff;
}

/* Twitter */
.tw-btn i {
    font-size: 1.3rem;
    color: #1DA1F2;
}
.tw-btn:hover i {
    color: #ffffff;
}

/* Instagram */
.ig-btn i {
    font-size: 1.3rem;
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ig-btn:hover i {
    background: none;
    color: #ffffff;
}


/* Ensure footer sits at the bottom on short pages */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.page {
    flex: 1; /* pushes footer to the bottom */
}

/* Centered social buttons for pages without nav */
.social-buttons-center {
    justify-content: center;
}


/* Global link styling for all pages */
a {
    color: #ffd27f;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 40px 0 25px 0;
}

.extra-links p {
    margin: 6px 0;
    font-size: 1.05rem;
}

/* Internal info buttons (FAQ / Activities) */
.info-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

.info-btn {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffd27f;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    transition: 0.2s ease;
	min-width: 140px;
text-align: center;
}

.info-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.75);
}

.info-btn i {
    font-size: 1.2rem;
    color: #ffd27f;
}

.info-btn:hover i {
    color: #ffffff;
}


/* Secondary text next to CTA