:root {
    --bg-main: #fcfbf7; /* Off-white/Cream */
    --accent-yellow: #ffcc00;
    --accent-dark: #d4a017;
    --glass-white: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 204, 0, 0.3);
    --text-main: #4a422e;
    --text-muted: #7d7561;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard syntax */
}

.page {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Background Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}
.blob--yellow { width: 500px; height: 500px; background: #fff4cc; top: -100px; right: -100px; }
.blob--white { width: 400px; height: 400px; background: #ffffff; bottom: -50px; left: -50px; }

.cv-container { width: 100%; max-width: 900px; z-index: 1; }

/* Header */
.header { display: flex; align-items: center; gap: 25px; margin-bottom: 40px; }
.header__img-placeholder img {
    width: 150px; height: 180px;
    background: var(--accent-yellow);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 2rem; color: #fff;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}
.header__name { font-size: 2.2rem; color: var(--text-main); }
.header__title {
	color: var(--accent-dark);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 1px;
	margin-bottom: 0.4em;
}

/* Grid & Cards */
.cv-grid { display: flex; gap: 20px; align-items: stretch; }
.cv-column { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.card--glass {
    flex: 1;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(212, 160, 23, 0.05);
}

.card__heading { font-size: 1.1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--accent-yellow); display: inline-block; padding-bottom: 5px; }

/* Dropdowns */
.dropdown { margin-bottom: 15px; border-radius: 12px; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.4); }
.dropdown[open] { background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }

.dropdown__title {
    padding: 15px; cursor: pointer; font-weight: 600; list-style: none;
    position: relative; display: flex; align-items: center;
}
.dropdown__title::after { content: '+'; margin-left: auto; color: var(--accent-dark); transition: transform 0.3s; }
.dropdown[open] .dropdown__title::after { content: '−'; transform: rotate(180deg); }

.dropdown__content { padding: 0 15px 15px; font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); }
.dropdown__meta { font-weight: 600; font-size: 0.8rem; margin-bottom: 5px; color: var(--accent-dark); }

/* Skills & Socials */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list__item { background: white; padding: 6px 12px; border-radius: 10px; font-size: 0.8rem; border: 1px solid #eee; }

.socials { display: flex; flex-direction: column; gap: 10px; }
.socials__link { text-decoration: none; color: var(--text-main); font-size: 0.9rem; padding: 12px; background: white; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; text-align: center; }
.socials__link:hover { background: var(--accent-yellow); color: white; border-color: var(--accent-yellow); }

@media (max-width: 768px) { .cv-grid { flex-direction: column; } }
