@font-face {
    font-family: 'Camper Sans';
    src: url('fonts/Camper Sans 1 W00 Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Rustling Trees';
    src: url('fonts/RustlingTrees-Regular.otf') format('opentype');
}

:root {
    --gold-color: #F2C933;
}

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

body {
    font-family: 'Camper Sans', sans-serif;
    background-color: #1a1a2e;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #6b9e8f 0%, #7db9a3 100%);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: visible;
}

/* Background image overlay element */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/WebsiteHoverPicStock2.png');
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Outer golden border (thin) */
.container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--gold-color);
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
    clip-path: polygon(
        0 0,
        35% 0,
        35% 75px,
        65% 75px,
        65% 0,
        calc(100% - 80px) 0,
        calc(100% - 80px) 80px,
        100% 80px,
        100% 100%,
        80px 100%,
        80px calc(100% - 80px),
        0 calc(100% - 80px)
    );
}

/* Curved elements */
.curve-tr {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border: 4px solid var(--gold-color);
    border-radius: 0 0 0 80px;
    border-top: none;
    border-right: none;
    pointer-events: none;
    z-index: 3;
}

.curve-bl {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    border: 4px solid var(--gold-color);
    border-radius: 0 80px 0 0;
    border-bottom: none;
    border-left: none;
    pointer-events: none;
    z-index: 3;
}

/* Inner golden border (thick with curved inward edges) */
.container::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border: 3px solid var(--gold-color);
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
    clip-path: polygon(
        0 0,
        35% 0,
        35% 65px,
        65% 65px,
        65% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}

.close-btn {
    position: fixed;
    top: 20px;
    right: calc(50vw - 525px);
    background: none;
    border: none;
    font-size: 50px;
    color: #d4532f;
    cursor: pointer;
    z-index: 100;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

.header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.title-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-lines .line {
    width: 50px;
    height: 2px;
    background-color: var(--gold-color);
}

.title {
    font-size: 64px;
    font-weight: normal;
    color: var(--gold-color);
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -15px;
    margin-bottom: 10px;
    font-family: 'Rustling Trees', cursive;
    white-space: pre;
    tab-size: 12;
}

.subtitle {
    font-size: 52px;
    color: var(--gold-color);
    letter-spacing: 2px;
    font-weight: bold;
    font-family: 'Camper Sans', sans-serif;
    flex: 1;
    text-align: center;
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    text-align: center;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    background-color: #8b7355;
    min-height: 350px;
    object-fit: cover;
    border-radius: 0;
}

.view-full {
    position: static;
    transform: none;
    background: transparent;
    color: #FCFDFD;
    padding: 8px 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
    display: inline-block;
}

.thumbnail-section {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumbnail {
    width: 120px;
    height: 120px;
    background-color: #8b7355;
    border: 3px solid var(--gold-color);
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-label {
    font-size: 48px;
    color: var(--gold-color);
    font-weight: normal;
    letter-spacing: 1px;
    border-bottom: 2px dotted var(--gold-color);
    padding-bottom: 8px;
    font-family: 'Camper Sans', sans-serif;
}

.divider-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.divider-lines .line {
    width: 100%;
    height: 2px;
    background-color: var(--gold-color);
}

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    position: relative;
}

.bottom-section::before {
    content: '';
    position: absolute;
    left: calc(33.333% + 5px);
    top: 5px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--gold-color);
}

.bottom-section::after {
    content: '';
    position: absolute;
    left: calc(33.333% + 12px);
    top: 5px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--gold-color);
}

.social-media h3,
.description h3 {
    font-size: 28px;
    font-weight: normal;
    color: #2d4a42;
    font-style: normal;
    margin-bottom: 15px;
    border-bottom: 2px dotted #2d4a42;
    padding-bottom: 8px;
    font-family: 'Rustling Trees', cursive;
}

.social-media {
    text-align: center;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.icon-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-logo:hover {
    transform: scale(1.1);
}

/* Removed old icon color definitions */

.description p {
    font-size: 32px;
    line-height: 0.9;
    color: #FCFDFD;
    font-weight: normal;
    font-family: 'Camper Sans', sans-serif;
}

.february-text {
    font-weight: bold;
    margin-bottom: 10px;
}

.description-text {
    flex: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-with-button {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 0.8vh, 10px);
}

.read-more-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #2d4a42;
    border: 3px solid #2d4a42;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Camper Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.read-more-btn:hover {
    background: #2d4a42;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive design handled via clamp() values throughout */
