/* LAYOUT PRINCIPAL */
.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0px 0px;
    min-height: 100vh;
}

/* LOGO */
.Logo {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    gap: 12px;
}

.Logo img {
    max-width: 100px;
    height: auto;
    box-shadow: 0 4px 8px var(--bg-dark);
    transition: transform 0.3s ease;
}

.Logo img:hover {
    transform: scale(1.1);
}

.Logo a {
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 11px;
    margin: 0;
    color: var(--text);
    text-shadow: 1px 1px 2px var(--bg-dark);
}

.name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    text-shadow: 2px 2px 4px var(--bg-dark);
}

.name::after {
    content: "Zakhar Oleksenko Shapoval";
}

/* SETTINGS (Botón modo claro/oscuro) */
.Settings {
    position: absolute;
    top: 25px;
    right: 30px;
}

#lightmode-toggle {
    display: none;
}

.toggle {
    cursor: pointer;
    font-size: 22px;
    z-index: 200;
}

.toggle::after {
    content: '🌙';
    display: inline-block;
    line-height: 1;
}

#lightmode-toggle:checked + .toggle::after {
    content: '☀️';
}

/* CONTENIDO DE LA POLÍTICA */
.Privacy-Content {
    padding: 40px 10%;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 8px;
}

.Privacy-Content h1 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.Privacy-Content h2 {
    color: var(--secondary);
    font-size: 24px;
    margin-top: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 5px;
}

.Privacy-Content h3 {
    color: var(--info);
    font-size: 18px;
    margin-top: 20px;
}

.Privacy-Content h4 {
    color: var(--text);
    font-size: 16px;
    margin-top: 15px;
}

.Privacy-Content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.Privacy-Content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.Privacy-Content ul li {
    color: var(--text-border);
    line-height: 1.6;
    margin-bottom: 8px;
    list-style-type: square;
}

.Privacy-Content a {
    color: var(--danger);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.Privacy-Content a:hover {
    color: var(--success);
}

.btn-volver {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--bg-dark) !important;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.btn-volver:hover {
    background-color: var(--secondary);
    transform: scale(1.5);
    transform: translate(0.3) ease
}

/* FOOTER */
.FOOTER {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid var(--border-muted);
    margin-top: 40px;
}

.FOOTER h4, .FOOTER p {
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text);
}

.email a {
    color: var(--danger);
    text-decoration: none;
}

.email a::before {
    content: "✉ ";
}

.email a:hover {
    color: var(--primary);
}

