/*
Theme Name: Monochrome Accordion
Theme URI: https://example.com/monochrome-accordion
Author: Your Name
Description: A sleek minimalist theme with a monochrome blue background, no scrolling, and 5 accordion tabs that hide text content.
Version: 1.0.8
License: GPL v2 or later
Text Domain: monochrome-accordion
*/

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

body {
    background-color: #0100be;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: white;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navigation dots */
.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: white;
    transform: scale(1.3);
}

.nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Accordion Styles */
.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease;
    position: relative;
    z-index: 2;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-number {
    font-size: 1rem;
    opacity: 0.6;
    margin-right: 1rem;
}

.accordion-title {
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: none; /* Remove max-height limitation */
    padding-bottom: 1.5rem;
    overflow: visible; /* Ensure content is visible */
}

.accordion-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Ensure the form stays within the content area */
.accordion-text [data-fillout-id="ejMcBKwj5Eus"] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    display: block;
}

/* Fix any z-index issues */
.accordion-item {
    position: relative;
    z-index: 1;
}

.accordion-item.active {
    z-index: 2;
}

/* Language selector */
.language-selector {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
    z-index: 100;
}

.language-selector span {
    cursor: pointer;
    transition: opacity 0.2s;
}

.language-selector span:hover {
    opacity: 1;
}

.language-selector .separator {
    margin: 0 0.5rem;
}

/* Navigation link */
.nav-link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 100;
}

.nav-link:hover {
    opacity: 1;
}

/* Vision header */
.vision-header {
    position: fixed;
    top: 2rem;
    left: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
    z-index: 100;
	margin-top:40px;
}
/* Ticker Widget Area */
.ticker-widget-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #0100be;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-widget {
    width: 100%;
}

/* Adjust body padding to prevent overlap */
body {
    padding-top: 50px;
}
/* Astrology Ticker - Simple Scrolling */
/* Split Layout - Left Sidebar 25% | Right Content 75% */
.main-layout {
    display: flex;
    flex-wrap: nowrap;
	width:70vw;
	margin:0 auto;
    min-height: calc(100vh - 50px); /* Adjust based on ticker height */
    margin-top: 50px; /* Space for fixed ticker */
}

/* Left Sidebar - 25% width */
.left-sidebar-area {
    width: 25%;
    flex-shrink: 0;
    padding: 2rem 1rem 2rem 2rem;
    overflow-y: auto;
    max-height: calc(100vh - 50px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Right Content Area - 75% width */
.right-content-area {
    width: 75%;
    flex-shrink: 0;
    overflow-y: auto;
    max-height: calc(100vh - 50px);
    padding: 2rem;
}

/* Widget Styling */
.left-sidebar-widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

/* Default message when no widgets */
.default-widget-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

.default-widget-message p {
    margin: 0.5rem 0;
}

/* Scrollbar styling */
.left-sidebar-area::-webkit-scrollbar,
.right-content-area::-webkit-scrollbar {
    width: 4px;
}

.left-sidebar-area::-webkit-scrollbar-track,
.right-content-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.left-sidebar-area::-webkit-scrollbar-thumb,
.right-content-area::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
        margin-top: 60px;
		width:90vw;
		margin:0 auto;
    }
    
    .left-sidebar-area {
        width: 100%;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: auto;
    }
    
    .right-content-area {
        width: 100%;
        padding: 1rem;
    }
    
    .container {
        padding: 0;
    }
}

/* Ensure accordion works within the right area */
.right-content-area .container {
    max-width: 100%;
    padding: 0;
}

.right-content-area .accordion-header {
    padding: 1rem 0;
    font-size: 1.25rem;
}
/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    .accordion-header {
        padding: 1rem 0;
        font-size: 1.25rem;
    }
    .nav-dots {
        right: 1rem;
    }
    .accordion-item.active .accordion-content {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        font-size: 1rem;
    }
    .vision-header, .language-selector, .nav-link {
        font-size: 0.75rem;
    }
    .language-selector {
        bottom: 1rem;
        left: 1rem;
    }
    .nav-link {
        bottom: 1rem;
        right: 1rem;
    }
    .vision-header {
        top: 1rem;
        left: 1rem;
    }
}