/* =================================
   PRIVACY POLICY PAGE STYLES  
   ================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

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

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Homepage Main Content */
.homepage-main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.homepage-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Container */
.homepage-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Title */
.homepage-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Tagline */
.homepage-tagline {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Description */
.homepage-description {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Auth Form Styles */
.auth-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    max-width: 700px;
    width: 100%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.auth-switch-link {
    text-align: center;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.auth-switch-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .homepage-main-content {
        padding: 60px 20px;
        min-height: 100vh;
    }
    
    .homepage-content-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .homepage-main-content {
        padding: 40px 16px;
    }
    
    .auth-form-container {
        padding: 30px 20px;
        margin-top: 20px;
    }
}

/* Footer Styles */
.footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.footer-links {
    font-size: 0.85rem;
    display: block;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}