@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --lh-radius: 20px;
    --lh-primary: #FF6B35;
    --lh-secondary: #004E89;
    --lh-accent: #FFC857;
    --lh-dark: #1A1A2E;
    --lh-light: #F7F9FC;
    --lh-border: #E2E8F0;
}

body { 
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--lh-dark);
}

/* Typography - Larger, bolder, more fun */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h1, .h1 { font-size: 3.5rem; }
h2, .h2 { font-size: 2.75rem; }
h3, .h3 { font-size: 2.25rem; }
h4, .h4 { font-size: 1.75rem; }
h5, .h5 { font-size: 1.35rem; }
h6, .h6 { font-size: 1.15rem; }

@media (max-width: 768px) {
    h1, .h1 { font-size: 2.5rem; }
    h2, .h2 { font-size: 2rem; }
    h3, .h3 { font-size: 1.75rem; }
}

p { font-size: 1.1rem; }
.small { font-size: 1rem !important; }

.tracking-tight { letter-spacing: -0.03em; }

/* Navbar - More prominent */
.navbar {
    padding: 1rem 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.75rem !important;
    font-weight: 800;
    color: var(--lh-secondary) !important;
}

.nav-link {
    font-size: 1.1rem !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--lh-primary) !important;
    transform: translateY(-2px);
}

/* Buttons - More fun and engaging */
.btn {
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: visible;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lh-primary) 0%, #FF8C61 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Uwe popup on hover - base styles */
.uwe-popup::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 1000;
    margin-bottom: -1px;
}

.uwe-popup:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Specific Uwe images */
.uwe-excited::after {
    background-image: url('../images/uwe-excited.png');
}

.uwe-desk::after {
    background-image: url('../images/uwe-desk.png');
}

.uwe-cepiliniai::after {
    background-image: url('../images/uwe-cepiliniai.png');
}

.uwe-pretzel::after {
    background-image: url('../images/uwe-pretzel.png');
}

/* For buttons */
.btn-primary.uwe-popup::after {
    position: absolute;
}

/* For timeline cards - Uwe appears on the right side inside */
.t-card.uwe-popup {
    position: relative;
    overflow: hidden;
}

.t-card.uwe-popup::after {
    bottom: 0;
    right: -120px;
    left: auto;
    top: auto;
    transform: translateX(0);
    width: 100px;
    height: 100px;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.t-card.uwe-popup:hover::after {
    opacity: 1;
    right: 10px;
    transform: translateX(0);
}

.btn-outline-primary {
    border: 3px solid var(--lh-primary) !important;
    color: var(--lh-primary) !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--lh-primary) !important;
    color: white !important;
    border-color: var(--lh-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

/* Cards - More modern and playful */
.card-quiet {
    border: 2px solid var(--lh-border);
    border-radius: var(--lh-radius);
    transition: all 0.3s ease;
    background: white;
}

.card-quiet:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--lh-accent);
}

.card-quiet .card-body {
    padding: 2rem;
}

.card-quiet i {
    color: var(--lh-primary);
}

/* Badges - More vibrant */
.badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
}

/* Lithuanian flag colors for badges - muted/calm versions */
.badge-lt-yellow {
    background: #F5D576;
    color: #1A1A2E;
}

.badge-lt-green {
    background: #4A8B6F;
    color: white;
}

.badge-lt-red {
    background: #D67076;
    color: white;
}

/* Quotes - More distinctive */
.quote {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
    border: 3px solid var(--lh-accent);
    border-radius: var(--lh-radius);
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-style: italic;
    position: relative;
    transition: all 0.3s ease;
}

.quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 87, 0.3);
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 15px;
    color: var(--lh-accent);
    font-weight: 800;
    line-height: 1;
}

.quote footer {
    color: var(--lh-accent) !important;
    font-size: 0.95rem;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

blockquote.quote footer {
    color: var(--lh-accent) !important;
}

/* Two column layout */
.two-col {
    columns: 2;
    column-gap: 3rem;
}

@media (max-width: 576px) {
    .two-col { columns: 1; }
}

/* Stats - More impactful */
.stat {
    background: linear-gradient(135deg, var(--lh-light) 0%, #E8F0FE 100%);
    border: 3px solid var(--lh-secondary);
    border-radius: var(--lh-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.2);
}

.stat-value {
    font-weight: 800;
    font-size: 3rem;
    color: var(--lh-secondary);
    line-height: 1;
}

.stat-label {
    color: var(--lh-dark);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Timeline - More visual */
.timeline {
    position: relative;
    margin-left: 1rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--lh-primary) 0%, var(--lh-accent) 100%);
    border-radius: 10px;
}

.t-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.t-dot {
    position: absolute;
    left: 5px;
    top: 0.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 5px solid var(--lh-primary);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

.t-card {
    border-radius: var(--lh-radius);
    border: 2px solid var(--lh-border);
    transition: all 0.3s ease;
}

.t-card:hover {
    border-color: var(--lh-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.t-card-body {
    padding: 1.5rem 2rem;
}

/* Header section */
header {
    background: linear-gradient(135deg, #FFF9F0 0%, #E8F0FE 100%);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Vilnius Tower Section */
.vilnius-tower {
    /*max-width: 250px;*/
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.vilnius-tower:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Video wrapper for proper rounded corners */
.video-wrapper {
    display: inline-block;
    border-radius: 30px !important;
    overflow: hidden !important;
    width: 325px;
    height: 325px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@media (max-width: 576px) {
    .video-wrapper {
        width: 250px;
        height: 250px;
    }
}

/* Video specific styling */
video.vilnius-tower {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Footer */
footer {
    background: var(--lh-dark);
    color: white !important;
}

footer, footer * {
    color: white !important;
}

footer a {
    text-decoration: none;
    color: var(--lh-accent) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: white !important;
    transform: translateX(5px);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Fun hover effects for icons */
.bi {
    transition: all 0.3s ease;
}

.card-quiet:hover .bi {
    transform: scale(1.2) rotate(5deg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--lh-light);
}

::-webkit-scrollbar-thumb {
    background: var(--lh-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lh-secondary);
}