@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Fredoka:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

main, .hero {
    opacity: 0;
}

body.loaded main,
body.loaded .hero {
    animation: fadeIn 0.2s forwards;
}


html {
    overflow-y: scroll;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fef9f3;
}

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

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #E9B52B 0%, #E09901 100%);
    color: white;
    padding: 25px 0;
    box-shadow: 0 8px 24px rgba(224, 153, 1, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.logo h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo .tagline {
    font-size: 0.95em;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

.nav {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 1;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 6px 11px;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85em;
    background: rgba(255,255,255,0.1);
    white-space: nowrap;
}

.nav a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.nav a.active {
    background: rgba(255,255,255,0.35);
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Hero Section */
.hero {
    background: url('../css/2.png') center top / cover no-repeat;
    color: white;
    padding: 200px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.97;
    font-weight: 500;
    color: white;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: white;
    color: #E09901;
    padding: 14px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    background: #f5f5f5;
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Quick Links Section */
.quick-links {
    background: white;
    padding: 60px 20px;
    margin: -80px 20px 0 20px;
    position: relative;
    z-index: 10;
}

.quick-links .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-button {
    display: block;
    background: white;
    border: 2px solid #E09901;
    padding: 35px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(224, 153, 1, 0.1);
}

.quick-link-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(224, 153, 1, 0.2);
    border-color: #E9B52B;
}

.quick-link-button h3 {
    color: #E09901;
    margin-bottom: 12px;
    font-size: 1.4em;
}

.quick-link-button p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

/* Main Content */
main {
    padding: 100px 20px 20px 20px;
    margin-top: 60px;
}

.page-content {
    margin-top: 30px !important;
}

h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #E09901;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6em;
    margin-bottom: 18px;
    color: #E09901;
    font-weight: 600;
}

h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25em;
    color: #E09901;
    font-weight: 600;
}

section {
    margin-bottom: 20px;
}

p {
    font-size: 1.05em;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
}

/* Intro Section */
.intro-section {
    background: white;
    padding: 50px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-top: 40px;
    margin-bottom: 40px;
}

.intro-section p {
    font-size: 1.1em;
    line-height: 1.9;
    max-width: 900px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #E09901;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(233, 181, 43, 0.2);
}

.feature-card h3 {
    color: #E09901;
    margin-bottom: 18px;
    font-size: 1.5em;
}

.feature-card p {
    font-size: 1em;
    line-height: 1.7;
    color: #666;
}

/* Info Section */
.info-section {
    background: white;
    padding: 50px 50px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.info-section p {
    font-size: 1.1em;
    line-height: 1.8;
}

.info-section.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-section.two-column .column {
    flex: 1;
}

/* Times list styling */
.times-list .time-row {
    display: inline-grid;
    grid-template-columns: 90px auto;
    gap: 0 50px;
    width: 100%;
}

.times-list .time-label {
    text-align: left;
}

.times-list .time-value {
    text-align: left;
}

/* Hours list styling */
.hours-list .hours-row {
    display: inline-grid;
    grid-template-columns: 120px auto;
    gap: 0 50px;
    width: 100%;
}

.hours-list .hours-label {
    text-align: left;
    font-weight: 600;
}

.hours-list .hours-value {
    text-align: left;
}

.info-section.two-column h3 {
    margin-top: 0;
}

/* CTA Buttons Section */
.cta-buttons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0 80px 0;
}

.cta-button-card {
    background: white;
    border: 2px solid #E09901;
    padding: 35px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(224, 153, 1, 0.1);
    display: block;
}

.cta-button-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(224, 153, 1, 0.2);
    border-color: #E9B52B;
}

.cta-button-card h3 {
    color: #E09901;
    margin-bottom: 12px;
    font-size: 1.4em;
    margin-top: 0;
}

.cta-button-card p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #E9B52B 0%, #E09901 100%);
    color: white;
    padding: 80px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(224, 153, 1, 0.25);
}

.cta-section h2 {
    color: white;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 35px;
    font-size: 1.25em;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* Page Content */
.page-content {
    background: white;
    padding: 50px 50px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 80px auto 0 auto;
}

.page-content p {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.9;
    color: #555;
}

.page-content p + h3 {
    margin-top: 40px;
}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-content li a {
    color: #E09901;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.page-content li a:hover {
    color: #E9B52B;
    text-decoration: underline;
}

/* UK & Puk Layout */
.uk-puk-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: -10px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .uk-puk-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .uk-puk-layout p {
        margin-top: 0 !important;
    }

    .section-image {
        max-width: 280px;
        align-self: center;
    }
}

.uk-puk-layout p {
    flex: 1;
    margin-top: 20px;
}

/* Section Images */
.section-image {
    max-width: 350px;
    height: auto;
    flex-shrink: 0;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(224, 153, 1, 0.25);
    border: 4px solid #E9B52B;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(224, 153, 1, 0.35);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 20px 40px;
    border-top: 5px solid #E09901;
    margin-top: 30px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'Fredoka', sans-serif;
    color: #E09901;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 1em;
}

.footer-section a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 10px;
    font-size: 1em;
}

.footer-section a:hover {
    color: #E09901;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    display: inline;
    margin: 0;
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #E09901;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0;
    font-weight: 600;
    font-size: 1.1em;
}

.social-media a:hover {
    background: #E9B52B;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.95em;
}

.footer-bottom p {
    margin: 8px 0;
}

/* News Items */
.news-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.news-item h3,
.news-item h4 {
    color: #E09901;
    margin-bottom: 12px;
}

.news-date {
    color: #999;
    font-size: 0.95em;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-content hr {
    border: none;
    border-top: 2px solid #f0f0f0;
    margin: 40px 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-size: 1em;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E09901;
    box-shadow: 0 0 0 3px rgba(224, 153, 1, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 15px 0;
    }

    .header .container {
        gap: 20px;
    }

    .logo img {
        height: 60px;
    }

    .logo h1 {
        font-size: 1.8em;
    }

    .nav a {
        font-size: 0.8em;
        padding: 6px 10px;
    }

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

    main {
        padding: 60px 20px 60px 20px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header .container {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    .logo {
        gap: 12px;
        justify-content: flex-start;
        flex: 1;
    }

    .logo img {
        height: 50px;
    }

    .logo h1 {
        font-size: 1.6em;
        margin-bottom: 2px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #E9B52B 0%, #E09901 100%);
        flex-direction: column;
        gap: 0;
        padding: 0 15px;
        margin-top: 12px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    }

    .nav.active {
        max-height: 500px;
        opacity: 1;
        padding: 15px;
    }

    .nav a {
        font-size: 0.9em;
        padding: 12px 15px;
        border-radius: 6px;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
    }

    .nav a:hover {
        background: rgba(255,255,255,0.1);
    }

    .nav a.active {
        background: rgba(255,255,255,0.2);
    }

    .hero {
        padding: 100px 20px;
        min-height: 400px;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .quick-links {
        margin: -50px 20px 0 20px;
        padding: 40px 20px;
    }

    .quick-links .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-link-button {
        padding: 25px 20px;
    }

    .quick-link-button h3 {
        font-size: 1.2em;
    }

    .quick-link-button p {
        font-size: 0.9em;
    }

    main {
        padding: 40px 20px;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.3em;
    }

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

    .feature-card {
        padding: 25px 20px;
    }

    .info-section {
        padding: 30px 25px;
    }

    .info-section.two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-content {
        padding: 30px 25px;
        max-width: 100%;
    }

    .intro-section {
        padding: 30px 25px;
        max-width: 100%;
    }

    .cta-section {
        padding: 40px 25px;
        margin: 40px 0;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .cta-section p {
        font-size: 1.05em;
    }

    .footer {
        padding: 50px 20px 30px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 1.1em;
    }

    section {
        margin-bottom: 40px;
    }
}

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

    .header .container {
        gap: 12px;
        align-items: center;
    }

    .logo {
        gap: 10px;
        justify-content: flex-start;
        flex: 1;
    }

    .logo img {
        height: 50px;
    }

    .logo h1 {
        font-size: 1.4em;
        margin-bottom: 2px;
    }

    .logo .tagline {
        font-size: 0.85em;
    }

    .hamburger {
        display: flex;
        padding: 8px;
        z-index: 1000;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        margin: 5px 0;
    }

    .nav {
        gap: 0;
        flex-wrap: nowrap;
        padding: 12px;
        margin-top: 8px;
    }

    .nav {
        gap: 8px !important;
    }

    .nav a {
        font-size: 0.95em;
        padding: 14px 16px;
        border-radius: 8px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .hero {
        padding: 50px 20px;
        min-height: 220px;
    }

    .hero-content h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1.05em;
        margin-bottom: 0;
    }

    .quick-links {
        margin: -30px 20px 0 20px;
        padding: 30px 15px;
    }

    .quick-link-button {
        padding: 20px 15px;
    }

    .quick-link-button h3 {
        font-size: 1em;
    }

    .quick-link-button p {
        font-size: 0.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.1em;
    }

    h4 {
        font-size: 1em;
    }

    p {
        font-size: 0.95em;
    }

    main {
        padding: 30px 15px;
        margin-top: 40px;
    }

    .page-content {
        padding: 30px 18px;
        margin: 50px auto 0 auto;
    }

    .page-content h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .page-content h3 {
        font-size: 1.25em;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .page-content p {
        font-size: 0.95em;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .page-content ul,
    .page-content ol {
        margin-left: 20px;
        margin-bottom: 16px;
    }

    .page-content li {
        font-size: 0.95em;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .intro-section {
        padding: 30px 18px;
        margin-top: 20px;
        margin-bottom: 30px;
        border-radius: 16px;
    }

    .intro-section h2 {
        font-size: 1.6em;
        margin-bottom: 16px;
    }

    .intro-section p {
        font-size: 0.95em;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .features {
        gap: 15px;
        margin: 30px 0;
    }

    .info-section {
        padding: 30px 18px;
        border-radius: 16px;
        margin: 25px 0 30px 0;
    }

    .info-section h3 {
        font-size: 1.3em;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .info-section p {
        font-size: 0.95em;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .cta-section {
        padding: 30px 15px;
        margin: 30px 0;
    }

    .cta-section h2 {
        font-size: 1.4em;
    }

    .cta-section p {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1em;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-button-card {
        padding: 25px 20px;
    }

    .cta-button-card h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .cta-button-card p {
        font-size: 0.9em;
    }

    .cta-buttons-section {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px 0 50px 0;
    }

    .info-section.two-column {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-section.two-column .column h3 {
        font-size: 1.2em;
    }

    .footer {
        padding: 40px 15px 25px;
    }

    .footer .container {
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 1em;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9em;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8em;
    }

    section {
        margin-bottom: 30px;
    }

    .social-media {
        gap: 10px;
    }

    .social-media a {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 1.1em;
    }

    /* Form Optimization */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.95em;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 14px;
        font-size: 16px;
        border-radius: 8px;
        min-height: 44px;
    }

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

    form {
        margin: 30px 0;
    }

    /* Link & List Optimization */
    a {
        -webkit-tap-highlight-color: rgba(224, 153, 1, 0.1);
    }

    /* Extra breathing room */
    main {
        padding: 40px 20px;
    }

    section {
        margin-bottom: 40px;
    }
}
