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

body {
    font-family: "Playfair Display", serif;
    background-color: #2c2c2c; 
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    overflow-x: hidden;
}

/* --- HEADER --- */
.main-header {
    text-align: center;
    padding: 80px 20px 20px;
    color: white;
}

.inspo-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
}

.inspo-title i {
    font-style: italic;
    font-weight: 400;
}

.inspo-subtitle {
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.8;
}

.navbar {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: 0.3s;
}

.navbar a:hover { opacity: 1; }

/* --- FOLDER SYSTEM --- */
.folder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 200px;
}

.folder {
    width: 100%;
    max-width: 800px; /* Narrowed slightly for a cleaner text-only look */
    position: relative;
    margin-top: -180px; /* Tighter overlap since there are no images */
    z-index: var(--z-index);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.folder:first-child { margin-top: 0; }

.folder:hover {
    transform: translateY(-70px);
    z-index: 100 !important;
}

/* --- TAB WRITING --- */
.folder__tab {
    background-color: var(--folder-bg);
    width: fit-content;
    padding: 10px 40px;
    border-radius: 12px 12px 0 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.tab-left { margin-left: 5%; }
.tab-center { margin-left: 35%; }
.tab-right { margin-left: 65%; }

.folder__content {
    background-color: var(--folder-bg);
    padding: 60px;
    border-radius: 0 30px 30px 30px;
    min-height: 350px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card__description {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    opacity: 0.4;
    display: block;
    margin-bottom: 5px;
}

.folder__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.card__button {
    display: inline-block;
    width: fit-content;
    padding: 12px 35px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.3s;
}

.card__button:hover {
    background: #444;
    transform: scale(1.05);
}

.barcode {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: monospace;
    opacity: 0.2;
    font-size: 1.2rem;
}