/* Sokka Estudio - Shared Design System */
:root {
    --sokka-primary: #274283;
    --sokka-secondary: #5CB2D4;
    --sokka-accent-1: #EDA143;
    --sokka-accent-2: #EB7638;
    --sokka-bg-light: #F8FAFC;
}

/* Typography */
body {
    font-family: 'Outfit', sans-serif;
}

.font-garet {
    font-family: 'Garet', sans-serif;
}

/* Components */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background-color: var(--sokka-accent-2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d15f2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(235, 118, 56, 0.2);
}

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.21, 0.47, 0.32, 0.98), 
                transform 0.8s cubic-bezier(0.21, 0.47, 0.32, 0.98);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tooltip */
.tooltip-container {
    position: relative;
}

.tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--sokka-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--sokka-primary);
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    z-index: 100;
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 640px) {
    #cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
