body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

p {
    margin-bottom: 12px;
}

h2 {
    margin-bottom: 15px;
}

h3 {
    margin-bottom: 10px;
}

  .curved-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block; /* Removes tiny bottom gap */
  }


/* Layout */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
	color: #333;
}

.section {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.section.alt {
    background: #EAEFF5;
}

/* Hero */
.hero {
    background: linear-gradient(to right, #003366, #0066cc);
    color: white;
    padding: 30px 20px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}



/* Text side */
.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    margin: 0;
    font-size: 2.2em;
}

.hero-text p {
    margin: 10px 0 20px;
}

/* Logo */
.logo {
    max-width: 160px;
    height: auto;
    float: right/* or left */
}

@media (max-width: 700px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-top: 20px;
    }
}

.btn {
    background: #2931ED;
    color: #FFFFFF;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: bold;
    display: block;
    transition: 0.2s;
	margin: 0 auto;
    width: fit-content; /* Prevents button from stretching full width */
}

.btn:hover {
    background: #e6e6e6;
}



/* Columns */
.two-column {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.two-column > div {
    flex: 1;
}

.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: 20px;
}

/* Timeline */
.timeline {
    width: 100%;
    margin-top: 20px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

/* Cards */
.card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.card:blue {
    background: blue;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}


.card:hover {
    transform: translateY(-5px);
}

.patron-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.patron-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 23px 20px rgba(0,0,0,0.08);
}

.patron-card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 2em;
    margin: 10px 0;
}

.price span {
    font-size: 0.5em;
    color: #666;
}

.patron-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.patron-logo {
    padding: 20px;
}

.logo-box {
    background: #fff;
    border: 2px dashed #ccc;
    padding: 30px 10px;
    border-radius: 8px;
    font-weight: bold;
    color: #666;
}

.logo-box img,
.patron-logo img {
    max-width: 100%;
    height: auto;
}

.patron-cta {
    text-align: center;
    margin-top: 40px;
}

.patron-cta h3 {
    margin-bottom: 10px;
}

.patron-cta p {
    margin-bottom: 15px;
}

.large-btn {
    font-size: 1.1em;
    padding: 15px 30px;
    margin-top: 10px;
}


/* Link Section */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.link-card {
	background: white;
    padding: 20px;
    border-radius: 18px;
	border: 4px solid blue; 
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.link-card:hover {
    transform: translateY(-5px);
}



/* Tier colours */
.patron-logo.gold .logo-box {
    border-color: #d4af37;
}

.patron-logo.silver .logo-box {
    border-color: #c0c0c0;
}

.patron-logo.bronze .logo-box {
    border-color: #cd7f32;
}

.patron-logo p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.patron-note {
    margin-top: 30px;
    font-style: italic;
}



/* Optional colour hints */
.blue { border: 4px solid #2931ED; }
.bronze { border: 4px solid #cd7f32; }
.silver { border: 4px solid #c0c0c0; }
.gold   { border: 4px solid #d4af37; }

.patron-card {
    transition: 0.2s;
}

.patron-card:hover {
    transform: translateY(-5px);
}

/* Timeline */
.timeline-scroll {
    overflow-x: auto;
    padding: 20px 0;
}

.timeline-scroll img {
    max-width: none;
    height: auto;
    display: block;
}

/* Join Form */
.join-form {
    max-width: 600px;
    margin-top: 20px;
}

.join-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.join-form input,
.join-form select,
.join-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.join-form button {
    margin-top: 20px;
}

/* Footer */
footer {
    background: linear-gradient(to right, #003366, #0066cc);
    color: white;
    text-align: center;
    padding: 30px;
}

.footer-inner {
    display: flex;
    align-items: center; /* Corrected from left */
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-outer {
    display: flex;
    align-items: center; /* Corrected from right */
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-text {
    max-width: 600px;
	color: #f4f6f9;
}


.profile-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background: #f4f6f9;
    min-height: 100vh;
}

.profile-card {
    max-width: 700px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.profile-card h1 {
    margin-bottom: 5px;
}

.profile-card h3 {
    color: #666;
    margin-bottom: 20px;
}

.profile-content {
    text-align: left;
}

.profile-content p {
    margin-bottom: 15px;
}