/* 
 * CSPHR GLOBAL - MINIMAL CSS
 * Optimized for performance and minimal animations
 */

/* ROOT VARIABLES */
:root {
    /* Primary Colors */
    --primary-color: #dea03b;
    --secondary-color: #67cf1c;
    --text-color: #FFFFFF;
    
    /* Background Colors */
    --bg-overlay: rgba(0, 0, 0, 0.1);
    
    /* Effects */
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.2);
    
    /* Gradients */
    --active-gradient: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

body {
    background: linear-gradient(to right, #9d6d5a, #78945d, #5e7eae, #9d65a7, #9f5c63);
    background-size: 200% 100%;
    animation: gradientShift 12s ease infinite;
    background-attachment: fixed;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ANIMATIONS */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LAYOUT */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    animation: fadeIn 0.6s ease-out;
}

/* HEADER */
.header {
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 20px;
}

.header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FFFFFF, #A5B4FC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* BLOCKS */
.blocks {
    display: flex;
    flex: 1;
    padding: 0 20px 20px;
    gap: 20px;
    flex-direction: column;
}

.block {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--card-shadow);
}

.block:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.india-block {
    border-color: rgba(255, 130, 78, 0.3);
}

.netherlands-block {
    border-color: rgba(78, 132, 255, 0.3);
}

.block-content {
    max-width: 400px;
}

.flag-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.india-block .flag-icon {
    color: #FF824E;
}

.netherlands-block .flag-icon {
    color: #4E84FF;
}

.block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn i {
    font-size: 1.1rem;
}

.btn-website {
    background: var(--active-gradient);
}

.btn-website:hover {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.btn-call {
    background: #4a5568;
}

.btn-call:hover {
    background: #2d3748;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-email {
    background: #3182ce;
}

.btn-email:hover {
    background: #2b6cb0;
}

/* FOOTER */
.footer {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
    .blocks {
        flex-direction: row;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .block h2 {
        font-size: 2rem;
    }
}

/* Mobile optimization */
@media (max-width: 767px) {
    .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .header {
        padding: 20px 15px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .block {
        padding: 25px 20px;
    }
}

/* Tablet optimization */
@media (min-width: 768px) and (max-width: 1024px) {
    .block {
        padding: 25px 20px;
    }
    
    .block-content {
        max-width: 100%;
    }
}