/**
 * Portal Cinema Custom Styles
 * 
 * Save this file as: portal-cinema.css in your theme's /css/ directory
 */

/* ========================================
GLOBAL STYLES
======================================== */

@font-face {
    font-family: 'Kosmos';
    src: url('../fonts/Kosmos-Regular.otf');
}

@font-face {
    font-family: 'NewEdge666 Light';
    src: url('../fonts/NewEdge666-LightRounded.otf');
}

@font-face {
    font-family: 'NewEdge666 Ultra Light';
    src: url('../fonts/NewEdge666-UltraLightRounded.otf');
}

@font-face {
    font-family: 'NewEdge666 Bold';
    src: url('../fonts/NewEdge666-UltraBoldRounded.otf');
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf');
}

@font-face {
    font-family: 'SanFranciscoText Medium';
    src: url('../fonts/SanFranciscoText-Medium.otf');
}

html {
    margin: 0;
    padding: 0;
}

body {
    background: #000000;
    font-family: 'SanFranciscoText Medium'; 
    margin: 0;
}

.site-header {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.site-header svg {
    width: 9vmin;
}

.portal-cinema-page {
    color: #ffffff;
}

.portal-cinema-container {
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
HERO IMAGE SECTIONS
======================================== */

.hero-image-section {
    padding: 40px 20px 0 20px;
}

.hero-image-section img,
.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-placeholder img {
    width: 100%;
    height: auto;
    background-color: #666;
}

/* ========================================
SECTION TITLES & TYPOGRAPHY
======================================== */

.portal-cinema-section {
    padding: 40px 0 0 20px;
}

.portal-cinema-section:empty {
    padding: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    position: relative;
}

.section-title:after {
    background: #ffffff;
    bottom: -1px;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
}

.section-intro strong {
    font-weight: bold;
    color: #ffd700;
    font-size: 20px;
}

.section-description {
    padding-right: 20px;
}

.section-description p {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* ========================================
LANDING PAGE STYLES
======================================== */

.landing-page {
    background-color: #000000;
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
}

.landing-content {
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
}

.landing-title {
    font-size: clamp(40px, 10vw, 72px);
    font-weight: 900;
    color: #ffd700;
    margin: 0;
    max-width: 400px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'NewEdge666 Ultra Light';
}

.landing-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.landing-logo {
    display: flex;
    justify-content: center;
}

.landing-logo svg {
    width: 9vmin;
}

/* Hover effect */
.landing-page:hover .landing-title {
    color: #ffed4e;
    transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-title {
        font-size: clamp(38px, 10vw, 80px);
    }
}

@media (max-width: 480px) {
    .landing-title {
        font-size: clamp(36px, 12vw, 60px);
    }
}

/* ========================================
MENU PAGE STYLES
======================================== */

.menu-page {
    background-color: #000000;
    display: grid;
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
}

.menu-content {
    display: flex;
    justify-content: center;
    align-items: end;
}

.menu-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    font-family: 'NewEdge666 Ultra Light';
    line-height: 1.3;
}

.menu-item span {
    border-bottom: 4px solid #ffffff;
}

.menu-item:hover span,
.menu-item:focus span {
    color: #ffd700;
    border-bottom-color: #ffd700;
    outline: none;
}

.menu-logo {
    display: flex;
    justify-content: center;
}

.menu-logo svg {
    width: 9vmin;
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.menu-close span {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transition: background-color 0.3s ease;
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover span,
.menu-close:focus span {
    background-color: #ffd700;
}

.menu-close:focus {
    outline: 2px solid #ffd700;
    outline-offset: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-page {
        padding: 60px 30px 100px;
    }

    .menu-item {
        font-size: clamp(28px, 8vw, 48px);
    }

    .menu-close {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }

    .menu-close span {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .menu-page {
        padding: 50px 20px 80px;
    }

    .menu-item {
        font-size: clamp(24px, 9vw, 40px);
        padding-bottom: 6px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .menu-item,
    .menu-close span {
        transition: none;
    }
}

/* ========================================
DONATE PAGE STYLES
======================================== */

.donate-content-section {
    background-color: #000000;
    padding: 20px 20px 40px 20px;
}

.donate-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.donate-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
    letter-spacing: 2px;
}

.donate-headline {
    font-size: 18px;
    font-weight: 500;
    color: #ffd700;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
}

.donate-description {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.donate-main-content p {
    line-height: 1.25;
    margin-bottom: 20px;
}

.donate-main-content a {
    color: #ffd700;
    text-decoration: underline;
}

.donate-main-content a:hover {
    color: #ffed4e;
}

/* ========================================
NEWS & EVENTS STYLES
======================================== */

.poster-placeholder {
    background-color: #cccccc;
    aspect-ratio: 2/3;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-align: left;
}

.poster-placeholder p {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
}

.news-events-header {
    margin-bottom: 10px;
}

.news-events-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 20px;
}

.event-date {
    color: #ffd700;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 20px 0;
}

.event-title {
    font-family: "NewEdge666 Ultra Light";
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-year {
    font-size: 14px;
}

.event-description {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.event-description p {
    font-weight: bold;
    margin: 0 0 10px 0;
}

.event-description a {
    color: #00aaff;
    text-decoration: underline;
}

.event-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-image-placeholder {
    background-color: transparent;
}

.placeholder-box {
    width: 100%;
    height: 100%;
    background-color: #ffd700;
}

.no-events {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
}

/* ========================================
ABOUT PAGE STYLES
======================================== */

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.about-grid-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #333;
}

.about-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* ========================================
TEAM SECTION STYLES
======================================== */

.team-members {
    margin-top: 30px;
    padding-right: 20px;
}

.team-member {
    margin-bottom: 40px;
    background-color: rgb(242, 243, 238);
    color: #000000;
    overflow: hidden;
}

.team-member-inner {
    display: flex;
    flex-direction: column;
}

.team-member-image {
    width: 100%;
    aspect-ratio: 3/2;
    background-color: #cccccc;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #cccccc;
}

.team-member-content {
    padding: 16px 10px 10px 10px;
}

.team-member-name {
    font-size: 28px;
    font-weight: bold;
    line-height: 16px;
    margin: 0;
}

.team-member-role {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.team-member-bio {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 24em;
}

.team-member-bio p {
    margin-bottom: 10px;
}

.team-member-link {
    font-size: 11px;
    color: rgb(211, 121, 74);
    text-decoration: underline;
    word-break: break-all;
}

/* Advisory Board */
.advisory-placeholder {
    background-color: #cccccc;
    padding: 80px 40px;
    text-align: center;
}

.advisory-placeholder p {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 1px;
}

/* ========================================
BUILD OUT PAGE STYLES
======================================== */

.buildout-gallery {
    padding: 40px 20px;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.buildout-gallery-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.buildout-image-frame {
    background-color: #000000;
    border: 2px solid #ffffff;
    padding: 15px;
    transition: border-color 0.3s ease;
}

.buildout-image-frame.yellow-border {
    border-color: #ffd700;
}

.buildout-image-frame.white-border {
    border-color: #ffffff;
}

.buildout-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.buildout-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #333333;
}

.buildout-image-title {
    font-family: system-ui;
    font-weight: bold;
    font-size: 12px;
    padding-top: 10px;
}

.buildout-image-caption {
    font-family: system-ui;
    font-size: 12px;
    font-weight: 200;
    line-height: 1;
    color: #ffffff;
}

/* ========================================
DONATE BUTTON SECTION
======================================== */

.donate-button-section {
    background-color: #000000;
    border-top: 3px solid #ffffff;
    padding: 40px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.donate-cta-button {
    background-color: #ffd700;
    color: #000000;
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.donate-cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.donate-cta-button svg {
    width: 14vmin;
}

.donate-button-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 9.5vmin;
    font-weight: 500;
    justify-content: end;
    padding-top: 7vmin;
    text-align: right;
}

/* ========================================
CONTACT PAGE STYLES
======================================== */

.contact-section {
    padding: 40px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-instagram, .contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-instagram {
    margin-bottom: 30px;
}

.instagram-icon, .email-icon {
    font-size: 24px;
}

.contact-instagram a, .contact-email a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.contact-instagram a:hover, .contact-email a {
    text-decoration: underline;
}

.contact-venue {
    margin-bottom: 30px;
}

.venue-name {
    font-size: 18px;
    font-weight: 500;
    color: #ffd700;
    margin: 0;
    letter-spacing: 1px;
}

.venue-address p {
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.contact-map {
    margin: 30px 0;
    padding-right: 20px;
}

.contact-map img,
.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-placeholder {
    background-color: #333333;
    padding: 60px 20px;
    text-align: center;
    color: #666666;
}

.map-placeholder p {
    margin: 10px 0;
}

.map-hint {
    font-size: 12px;
}

.contact-additional-content {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
}

/* Mailing List Section */
.mailing-list-section {
    padding: 20px 20px 60px 20px;
    background-color: #000000;
    max-width: 400px;
    margin: 0 auto;
}

.mailing-list-box {
    max-width: 400px;
    margin: 0 auto;
    background-color: #ffd700;
    padding: 40px 30px;
    color: #000000;
}

.mailing-list-title {
    font-family: 'Kosmos';
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-align: center;
    letter-spacing: 2px;
}

.mailing-list-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-input {
    background-color: #ffd700;
    border: 2px solid #000000;
    padding: 12px 15px;
    font-size: 14px;
    font-family: inherit;
    color: #000000;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #000000;
    background-color: #ffed4e;
}

.form-input::placeholder {
    color: #666666;
}

.form-submit {
    background-color: #000000;
    color: #ffd700;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

/* ========================================
RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    .donate-title {
        font-size: 36px;
    }

    .donate-headline {
        font-size: 20px;
    }

    .donate-description {
        font-size: 16px;
    }

    .donate-content-section {
        padding: 40px 20px;
    }
}

@media (min-width: 480px) {
    .donate-button-text {
        font-size: 4.5vmin;
        padding-top: 2vmin;
    }

    .donate-cta-button svg {
        width: 5vmin;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 40px;
    }

    .donate-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .donate-headline {
        font-size: 18px;
    }

    .donate-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .advisory-placeholder p {
        font-size: 20px;
    }

    .buildout-image-frame {
        padding: 10px;
        border-width: 2px;
    }

    .news-events-container {
        max-width: 100%;
    }

    .mailing-list-title {
        font-size: 24px;
    }

    .mailing-list-box {
        padding: 30px 20px;
    }
}
