/*
Theme Name: Minimalist Landing
Theme URI: 
Author: 
Author URI: 
Description: A minimalist WordPress theme with a single section landing page and policy pages.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimalist-landing
*/

:root {
    --primary: #007BFF;
    --light-blue: #E6F1FF;
    --white: #FFFFFF;
    --gray: #333333;
    --light-gray: #666666;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(230, 241, 255, 0.1);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(230, 241, 255, 0.08);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--light-blue);
    font-style: italic;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
}

.whatsapp-text {
    text-align: left;
}

.whatsapp-text p {
    margin: 0;
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.whatsapp-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.whatsapp-text a:hover {
    color: #25D366;
}

.page-content {
    padding: 80px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--gray);
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 10px;
}

.deletion-steps {
    margin: 25px 0;
    counter-reset: step-counter;
    list-style-type: none;
}

.deletion-steps li {
    position: relative;
    margin-bottom: 25px;
    padding-left: 50px;
    counter-increment: step-counter;
}

.deletion-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.deletion-steps a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.deletion-steps a:hover {
    text-decoration: underline;
}

.retention-note {
    background-color: var(--light-blue);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 0.95rem;
}

footer {
    background-color: var(--gray);
    color: var(--white);
    padding: 40px 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .whatsapp-contact {
        flex-direction: column;
        padding: 15px;
    }
    
    .whatsapp-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .whatsapp-text {
        text-align: center;
    }
    
    .deletion-steps li {
        padding-left: 40px;
    }
    
    .deletion-steps li::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .site-footer {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-links li {
        margin: 0 10px;
    }
} 