:root {
    --color-purple: #800080; /* Adjust shade as needed */
    --color-dark-blue: #00008B; /* Adjust shade as needed */
    --color-pink: #FFC0CB; /* Adjust shade as needed */
    --color-light-pink: #fff5f8;
    --color-white: #FFFFFF;
    --color-text: var(--color-dark-blue);
    --color-bg: var(--color-light-pink);
    --color-accent: var(--color-purple);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--color-white);
    border-bottom: 3px solid var(--color-purple);
    padding: 2rem;
    text-align: center;
}

.logo-container {
    margin: 0 auto 1rem;
    width: 150px; /* Adjust size as needed */
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

nav a {
    text-decoration: none;
    color: var(--color-dark-blue);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: var(--color-pink);
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

section {
    margin-bottom: 4rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fafafa;
}

h2 {
    color: var(--color-purple);
    border-bottom: 2px solid var(--color-pink);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Content Text */
.content-text h3 {
    color: var(--color-dark-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Press Articles */
.press-articles article {
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid var(--color-purple);
}

.press-articles h3 {
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
}

.press-articles .meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.archive-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border-radius: 8px; */ /* Removed rounding */
    aspect-ratio: 4 / 5; /* Instagram portrait ratio */
    background-color: #ddd;
}

.archive-item img, .archive-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-item:hover img, .archive-item:hover video {
    transform: scale(1.05);
}

.multiple-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.pin-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-purple);
    padding: 5px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 2;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-media-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-media-container img, #lightbox-media-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Post Navigation (Outer Buttons) */
.prev-post, .next-post {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    user-select: none;
    z-index: 1002;
}

.prev-post {
    left: 20px;
}

.next-post {
    right: 20px;
}

.prev-post:hover, .next-post:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 10px;
}

.lightbox-thumb {
    height: 60px;
    width: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: 4px;
}

.lightbox-thumb.active, .lightbox-thumb:hover {
    opacity: 1;
    border-color: var(--color-pink);
}

.lightbox-description {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    max-width: 800px;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.lightbox-date {
    color: #ccc;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: italic;
}

/* List Placeholders */
.list-placeholder {
    list-style: none;
}

.list-placeholder li {
    background-color: #eee;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

footer {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}
