/* Styles for privacy-policy.html */

:root {
    --color-primary: #00aeef; /* Bright Blue */
    --color-secondary: #ffa94d; /* Orange/Amber */
    --color-dark: #1c1c1e; /* Dark Grey/Near Black */
    --color-light: #f2f2f2; /* Light Grey/Off-white */
    --color-white: #ffffff;
    --color-red: #dc3545; /* For critical timer/errors */
    --color-yellow: #ffc107; /* For warning timer */
    --color-whatsapp: #25D366; /* WhatsApp Green */
    --color-disabled: #cccccc; /* Grey for disabled elements */
    --color-disabled-text: #666666; /* Darker grey for disabled text */
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-light); /* Light grey background */
    color: var(--color-dark); /* Dark text on light background */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auction-header {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 15px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.auction-header .logo {
    height: 40px;
    width: auto;
    vertical-align: middle;
    border-radius: 8px;
    margin-bottom: 5px;
}

.auction-header h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none; /* For the button acting as a link */
}

.btn-primary:hover {
    background-color: #008cc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.privacy-policy-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.privacy-policy-container h1 {
    color: var(--color-dark);
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 10px;
}

.privacy-policy-container h2 {
    color: var(--color-primary);
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-light);
    padding-bottom: 5px;
}

.privacy-policy-container section {
    margin-bottom: 25px;
}

.privacy-policy-container p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
}

.privacy-policy-container ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-policy-container li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

.privacy-policy-container strong {
    color: var(--color-dark);
    font-weight: 700;
    /* Explicitly remove any card-like styling */
    background-color: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    display: inline;
}

.auction-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.auction-footer a {
    color: var(--color-white);
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-whatsapp);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 8px #888;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}