/* Base */

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #111;
    color: #eee;
}

a {
    color: #ffd35a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */

.site-header {
    background: #000;
    border-bottom: 1px solid #333;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.logo-symbol {
  font-size: 80px;
  line-height: 1;
}


.tagline {
    font-size: 0.8rem;
    color: #aaa;
}

.main-nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
}

/* Footer */

.site-footer {
    margin-top: 3rem;       /* increase this until the space looks good */
    border-top: 1px solid #333;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}



/* Page 1 – Events list */

.events-list {
    padding: 2rem 0 2rem;
}

/* Responsive grid:
   phone:   1–2
   tablet:  3–4
   desktop: 5
*/

.events-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Event cards */

.event-card {
    background: #181818;
    border: 1px solid #222;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 0.6rem;
}

.event-card a {
    display: block;
    color: inherit;
}

.event-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.event-card h3 {
    margin: 0.5rem 0 0.1rem;
    font-size: 0.95rem;
    color: #fff;
}

.event-card .event-date {
    margin: 0;
    font-size: 0.8rem;
    color: #ccc;
}

/* Invisible placeholders to force grid to align to 5 tiles on desktop */
.event-card-placeholder {
    visibility: hidden;
}

/* Page 2 – Thumbnail grid inside event */

.thumb-grid,
.event-thumb-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.thumb-card,
.event-photo-thumb {
    background: #181818;
    border-radius: 6px;
    border: 1px solid #222;
    padding: 0.6rem;
    text-align: center;
}

.thumb-card img,
.event-photo-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.thumb-info span,
.event-photo-thumb p {
    font-size: 0.85rem;
    color: #ccc;
}

/* Buttons */

.btn-primary {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 4px;
    border: none;
    background: #ffd35a;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ffdf87;
}

/* Photo page layout */

.photo-view {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0 2.5rem;
}

.photo-large {
    flex: 2 1 300px;
}

.photo-large img {
    width: 100%;
    border-radius: 6px;
}

.photo-details {
    flex: 1 1 240px;
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #bbb;
}

.breadcrumb a {
    color: #ffd35a;
}

/* Cart */

.cart {
    padding: 1.5rem 0 2.5rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cart-table th,
.cart-table td {
    border: 1px solid #333;
    padding: 0.5rem;
    text-align: left;
}

.cart-table th {
    background: #181818;
}

.cart-total {
    margin-bottom: 1rem;
}

.link-remove {
    font-size: 0.8rem;
    color: #ff8b8b;
}

/* Thank you page */

.thankyou {
    padding: 2rem 0 3rem;
}

/* Mobile tweaks */

@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-nav {
        margin-top: 0.5rem;
    }
}

/* Previous & Next styling */

.photo-nav {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.photo-nav-prev,
.photo-nav-next {
    font-size: 0.9rem;
}


.thumb-card-placeholder {
    background-color: #222;
    border-radius: 6px;
    height: 180px;
}

.logo-img {
    width: 200px;   /* your preferred size */
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .logo-img {
        max-width: 180px;
    }
}


/* size of camera logo */
.material-icons-outlined.logo-symbol {
  font-size: 40px;
  line-height: 1;
  vertical-align: middle;
}

/* Cookie bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #eee;
    padding: 1rem;
    display: none;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid #333;
    z-index: 9999;
}

.cookie-yes,
.cookie-no {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.cookie-yes {
    background: #ffd35a;
    color: #000;
}

.cookie-no {
    background: #333;
    color: #eee;
}

