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

/* Base styling */
body {
    margin: 0;
    background-color: #f5f5f3;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

/* Center hero section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.hero-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo */
.logo {
    width: 980px;
    max-width: 80%;
}

/* Enter button */
.enter-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 4px;
    color: #000000;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;

    padding: 20px 40px;
    margin: -20px -40px;
}

.enter-btn:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Footer */
footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    font-size: 0.5rem;
    letter-spacing: 1px;
}

footer p:first-child {
    font-weight: 600;
}




/* Layout Page */

.layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 220px;
    height: 100vh;
    background-color: #f0f0ee;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 40px;
}

/* Sidebar logo */
.sidebar-logo {
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.sidebar-logo img {
    width: 140px;
    max-width: 100%;
    display: block;
}

/* Channel buttons */
.channels {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.channel-btn {
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 2px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.channel-btn:hover {
    background-color: rgba(202, 165, 1, 0.12);
}

.channel-btn.active {
    background-color: rgba(202, 165, 1, 0.22);
    font-weight: 600;
}


/* Content area */
.content {
    flex: 1;
    padding: 60px 60px 30px 60px;  /* remove bottom padding */
    overflow-y: auto;
}

/* Sections */
.section {
    display: none;
}

.section.active {
    display: block;
}




/* Edits Section */

.edits-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.edit-card {
    text-decoration: none;
    color: inherit;
    max-width: 700px;
}

.edit-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.edit-card:hover img {
    transform: scale(1.02);
}

.edit-title {
    margin-top: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}



/* Catalog Section */

.catalog-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.catalog-card {
    max-width: 700px;
}

.catalog-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid rgba(202, 165, 1, 0.6);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.download-btn:hover {
    opacity: 0.6;
}

.newsletter-block {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 320px;
    padding: 20px;
    background: #f5f5f3;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 1000;
}

.newsletter-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0px;
    opacity: 0.6;
}


/* Subtle Scrollbar */

.content::-webkit-scrollbar {
    width: 6px;
}

.content::-webkit-scrollbar-track {
    background: transparent;
}

.content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}
