/* Additional Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&display=swap');

/* Custom Properties */
:root {
    --primary-color: #69f0f0;
    --primary-dark: #27cccc;
    --text-primary: #1f5661;
    --text-secondary: rgba(31, 86, 97, 0.6);
    --background-white: #ffffff;
    --shadow-light: 0px 0px 4px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0px 0px 12px rgba(0, 0, 0, 0.15);
    --border-radius-large: 32px;
    --border-radius-medium: 16px;
    --border-radius-small: 8px;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    display: none;
}

.custom-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Animations */
header {
    transition: all 0.3s ease;
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Button Animations */
.btn-primary {
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(105, 240, 240, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Dock Button Animations */
.dock-button {
    transition: all 0.2s ease;
    position: relative;
}

.dock-button:hover {
    transform: scale(1.1);
}

.dock-button:active {
    transform: scale(0.95);
}

/* Active State for Dock */
.dock-button.active {
    background-color: var(--primary-dark);
}

.dock-button.active svg {
    color: white;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.4s ease-out;
}

/* Responsive Design */
@media (max-width: 480px) {
    .max-w-md {
        max-width: 100%;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .gap-6 {
        gap: 1rem;
    }
    
    .w-[345px] {
        width: 280px;
    }
    
    .w-[153px] {
        width: 120px;
    }
    
    .h-[238px] {
        height: 200px;
    }
}

@media (max-width: 360px) {
    .w-[345px] {
        width: 260px;
    }
    
    .w-[153px] {
        width: 110px;
    }
    
    .text-xl {
        font-size: 1.125rem;
    }
    
    .text-lg {
        font-size: 1rem;
    }
}

/* Status Bar Styling */
.status-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hero Card Enhancements */
.hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(31, 86, 97, 0.1);
}

.hero-card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-image {
    transform: scale(1.05);
}

/* Schedule Card Enhancements */
.schedule-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(31, 86, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
}

/* Suggestion Card Enhancements */
.suggestion-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(31, 86, 97, 0.1);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(39, 204, 204, 0.15);
}

/* Rating Stars */
.rating-star {
    transition: transform 0.2s ease;
}

.rating-star:hover {
    transform: scale(1.2);
}

/* Progress Indicators */
.progress-dot {
    transition: all 0.3s ease;
}

.progress-dot.active {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(39, 204, 204, 0.5);
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --background-white: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: rgba(255, 255, 255, 0.7);
    }
    
    .hero-card,
    .schedule-card,
    .suggestion-card {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Print Styles */
@media print {
    .dock,
    button {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
