/* Philosophy Page Specific Styles */

.content-section {
    position: relative;
    min-height: 100vh;
    padding: 30vh 0 5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 30vh;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.title-line {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

/* Center-text section - full height with centered content */
.center-text {
    height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    opacity: 1;
}

.center-text h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Main layout styling */
main {
    padding: 0 8%;
    display: block;
    height: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Philosophy showcase with manifesto link */
.philosophy-showcase {
    padding: 1rem 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

/* Art Projects Showcase */
.art-showcase {
    padding: 1rem 0 2rem; /* Reduced bottom padding from 4rem to 2rem */
    position: relative;
    z-index: 5;
}

.art-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
}

.art-item {
    position: relative;
    width: 48%;
    transition: transform 0.3s ease;
    margin-bottom: 3rem;
}

/* Left project (See Clearly) positioning */
.left-project {
    text-align: left;
}

/* Right project (Burning Mind) positioning */
.right-project {
    text-align: right;
}

.art-image-container {
    position: relative;
    overflow: visible;
    border-radius: 4px;
    background-color: transparent;
    height: auto;
    min-height: 300px;
}

.art-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: none;
    max-height: none;
    filter: none;
    opacity: 1;
}

/* Ensure overlay doesn't block content */
.art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    pointer-events: none;
}

/* Manifesto container for centered image */
.manifesto-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    margin: 2rem auto;
    max-width: 900px;
}

/* Manifesto link styling */
.manifesto-link {
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease;
    position: relative;
}

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

/* Image container styling */
.manifesto-image-container {
    width: 100%;
    height: 320px;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-image-container:hover {
    background-color: rgba(10, 10, 10, 0.9);
}

.manifesto-image-container img {
    max-width: 100%;
    max-height: 280px;
    display: block;
    object-fit: contain;
}

/* Philosophy description styling */
.philosophy-description {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Adding styles for list item links */
.philosophy-description ul li a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.philosophy-description ul li a:hover {
    opacity: 0.8;
}

.philosophy-description p {
    max-width: 800px;
    margin: 0 auto 1.8rem;
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    letter-spacing: 0.4px;
    font-weight: 400;
    text-align: left;
}

/* Adding styles for ordered and unordered lists */
.philosophy-description ol, 
.philosophy-description ul {
    max-width: 800px;
    margin: 0 auto 1.8rem;
    padding-left: 2.5rem;
    text-align: left;
}

.philosophy-description ol li, 
.philosophy-description ul li {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    letter-spacing: 0.4px;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

/* Section subtitle */
.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-subtitle::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Manifesto note styling */
.manifesto-note {
    font-style: italic;
    margin-top: 3rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center !important;
    font-size: 1.1rem !important;
}

/* Meditations Section */
.meditations-section {
    text-align: center;
    margin: 4rem auto;
    max-width: 800px;
    position: relative;
    z-index: 5;
    padding-top: 2.5rem; /* Add padding above for dividing line */
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* Subtle dividing line */
}

.essays-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.essay-link {
    transition: transform 0.3s ease;
}

.essay-link:hover {
    transform: translateY(-2px);
}

.essay-link a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 400;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.essay-link a::after {
    content: "→";
    position: absolute;
    right: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.essay-link a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.5);
}

.essay-link a:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

/* Let's Create Together link styling */
.create-together {
    display: inline-block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.create-together:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

/* Responsive styles */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .philosophy-description p {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .philosophy-description p {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .manifesto-note {
        font-size: 1rem !important;
    }
    
    .manifesto-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .manifesto-link {
        max-width: 350px;
    }
    
    .manifesto-image-container {
        height: 280px;
    }
    
    .manifesto-image-container img {
        max-height: 240px;
    }
    
    .essay-link a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .meditations-section {
        margin: 3rem auto;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .manifesto-image-container {
        height: 240px;
        padding: 0.75rem;
    }
    
    .manifesto-image-container img {
        max-height: 200px;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .philosophy-description p {
        font-size: 1rem;
    }
    
    .essay-link a {
        font-size: 1.1rem;
        padding: 0.7rem 1rem;
    }
    
    .meditations-section {
        margin: 2rem auto;
        padding: 0 0.5rem;
    }
    
    .essays-container {
        gap: 1rem;
    }
}

/* Hidden logos in corners */
.hidden-logo {
    position: fixed;
    width: 120px;
    height: 120px;
    z-index: 10;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: auto;
}

.hidden-logo:hover {
    opacity: 1;
    transform: none;
}

.hidden-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    transition: none;
}

.bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.bottom-right {
    bottom: 2rem;
    right: 2rem;
}

/* Burningmind logo container styling to match See Clearly */
.burningmind-logo-container img {
    max-height: 340px;
    object-fit: contain;
    filter: none !important;
    opacity: 0.9 !important;
    margin-bottom: 0;
    transition: opacity 0.3s ease;
}

.burningmind-logo-container img:hover {
    opacity: 1 !important;
}

/* Special fix for SEE CLEARLY logo to ensure full height and no cropping/fading */
.see-clearly-logo img {
    max-height: 340px;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    margin-bottom: 0;
}

/* Reddit logo styling to match the design */
.reddit-logo img {
    max-height: 300px;
    object-fit: contain;
    filter: none !important;
    opacity: 0.9 !important;
    margin-bottom: 0;
    transition: opacity 0.3s ease;
}

.reddit-logo img:hover {
    opacity: 1 !important;
} 