/* Seattle Time Hub - Professional Styling */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.seattle-app {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}



.seattle-main-wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	background: #43437b;
	margin: 40px 0;
}


.seattle-header {
	padding: 2rem 0;
	background: linear-gradient(135deg, #453ea0 0%, #4478cc 100%);
	margin: 0 -20px 3rem -20px;
	border-radius: 0 0 24px 24px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.seattle-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.seattle-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.seattle-logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.seattle-title-group {
    display: flex;
    flex-direction: column;
}

.seattle-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.seattle-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 400;
}

.seattle-weather-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.seattle-weather-icon {
    font-size: 1.2rem;
}

.seattle-weather-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Clock Section */
.seattle-clock-section {
    margin-bottom: 4rem;
}

.seattle-clock-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.seattle-clock-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.seattle-clock-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Analog Clock */
.seattle-analog-clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.seattle-clock-svg {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.seattle-clock-svg:hover {
    transform: scale(1.02);
}

.seattle-hour-markers line {
    stroke: #64748b;
    stroke-width: 2;
}

.seattle-hour-markers .seattle-major-marker {
    stroke: #1e293b;
    stroke-width: 3;
}

#seattle-hour-hand {
    transition: transform 1s ease-in-out;
    transform-origin: 100px 100px;
}

#seattle-minute-hand {
    transition: transform 1s ease-in-out;
    transform-origin: 100px 100px;
}

#seattle-second-hand {
    transition: transform 0.1s ease-out;
    transform-origin: 100px 100px;
}

.seattle-clock-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50px;
    border: 1px solid #cbd5e1;
}

/* Digital Display */
.seattle-digital-display {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.seattle-time-boxes {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.seattle-time-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 10px 25px -5px rgba(30, 41, 59, 0.3),
        0 10px 10px -5px rgba(30, 41, 59, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

.seattle-time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.seattle-time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.seattle-time-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seattle-time-separator {
    font-size: 2rem;
    font-weight: bold;
    color: #64748b;
    animation: seattle-blink 1s infinite;
}

@keyframes seattle-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.seattle-timezone-info {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

#seattle-timezone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    display: block;
}

.seattle-date {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Content Grid */
/* .seattle-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
} */

.seattle-content-grid {
	gap: 2rem;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
}

/* Content Cards */
.seattle-content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seattle-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #1e40af);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seattle-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 25px 25px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.seattle-content-card:hover::before {
    opacity: 1;
}

.seattle-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seattle-card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.seattle-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.seattle-card-content {
    color: #475569;
}

.seattle-card-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Specific Card Styles */

/* Attractions Card */
.seattle-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seattle-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.seattle-feature-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.seattle-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seattle-feature-text strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.seattle-feature-text span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Tech Card */
.seattle-tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seattle-stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.3);
}

.seattle-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.seattle-stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.seattle-company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.seattle-company-item {
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.seattle-company-item:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

/* Food Card */
.seattle-food-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seattle-food-category {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef7f0, #fef3e2);
    border-radius: 12px;
    border: 1px solid #fed7aa;
}

.seattle-food-title {
    font-size: 1.1rem;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.seattle-food-category p {
    color: #7c2d12;
    margin: 0;
}

/* Neighborhoods Card */
.seattle-neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.seattle-neighborhood-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.seattle-neighborhood-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

.seattle-neighborhood-card h4 {
    color: #0c4a6e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.seattle-neighborhood-card p {
    color: #075985;
    font-size: 0.9rem;
    margin: 0;
}

/* Weather Card */
.seattle-climate-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.seattle-season-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    position: relative;
}

.seattle-season-card h4 {
    color: #14532d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.seattle-season-card p {
    color: #166534;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.seattle-temp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Outdoor Activities Card */
.seattle-activity-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seattle-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fefce8, #fef9c3);
    border-radius: 12px;
    border: 1px solid #fde047;
}

.seattle-activity-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.seattle-activity-item strong {
    display: block;
    color: #713f12;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.seattle-activity-item p {
    color: #a16207;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer */
/* .seattle-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    margin: 0 -20px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}
 */

.seattle-footer {
	background: linear-gradient(135deg, #3b59a4 0%, #388269 100%);
	color: white;
	margin: 0 -20px;
	border-radius: 24px 24px 0 0;
	overflow: hidden;
}

.seattle-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 20px 2rem 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.seattle-footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.seattle-footer-brand p {
    color: #94a3b8;
    margin: 0;
}

.seattle-footer-links {
    display: flex;
    gap: 3rem;
}

.seattle-footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seattle-footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seattle-footer-section li {
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
}

.seattle-footer-section li:hover {
    color: #3b82f6;
}

.seattle-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 20px 2rem 20px;
    text-align: center;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 992px) {
    .seattle-clock-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .seattle-content-grid {
        grid-template-columns: 1fr;
    }
    
    .seattle-tech-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .seattle-company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seattle-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .seattle-footer-links {
        justify-content: center;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .seattle-main-wrapper {
        padding: 0 15px;
    }
    
    .seattle-header {
        margin: 0 -15px 2rem -15px;
        padding: 1.5rem 0;
    }
    
    .seattle-header-content {
        padding: 0 15px;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .seattle-main-title {
        font-size: 1.75rem;
    }
    
    .seattle-clock-container {
        padding: 2rem;
    }
    
    .seattle-clock-svg {
        width: 240px;
        height: 240px;
    }
    
    .seattle-time-boxes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .seattle-time-box {
        min-width: 120px;
    }
    
    .seattle-content-card {
        padding: 1.5rem;
    }
    
    .seattle-climate-info,
    .seattle-neighborhood-grid {
        grid-template-columns: 1fr;
    }
    
    .seattle-tech-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .seattle-company-grid {
        grid-template-columns: 1fr;
    }
    
    .seattle-footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Small tablets and large phones */
@media (max-width: 600px) {
    .seattle-clock-container {
        padding: 1.5rem;
    }
    
    .seattle-clock-svg {
        width: 200px;
        height: 200px;
    }
    
    .seattle-time-value {
        font-size: 2rem;
    }
    
    .seattle-time-box {
        padding: 1rem;
        min-width: 100px;
    }
    
    .seattle-content-card {
        padding: 1.25rem;
    }
    
    .seattle-card-title {
        font-size: 1.25rem;
    }
    
    .seattle-feature-item,
    .seattle-activity-item {
        padding: 1rem;
    }
    
    .seattle-season-card,
    .seattle-neighborhood-card,
    .seattle-food-category {
        padding: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 400px) {
    .seattle-main-wrapper {
        padding: 0 10px;
    }
    
    .seattle-header {
        margin: 0 -10px 1.5rem -10px;
    }
    
    .seattle-header-content {
        padding: 0 10px;
    }
    
    .seattle-main-title {
        font-size: 1.5rem;
    }
    
    .seattle-logo-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .seattle-clock-container {
        padding: 1rem;
    }
    
    .seattle-clock-svg {
        width: 180px;
        height: 180px;
    }
    
    .seattle-time-boxes {
        gap: 0.75rem;
    }
    
    .seattle-time-value {
        font-size: 1.75rem;
    }
    
    .seattle-time-box {
        padding: 0.75rem;
        min-width: 80px;
    }
    
    .seattle-content-grid {
        gap: 1.5rem;
    }
    
    .seattle-content-card {
        padding: 1rem;
    }
    
    .seattle-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .seattle-footer-content {
        padding: 2rem 10px 1rem 10px;
    }
}

/* Smooth scrolling and performance optimizations */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .seattle-time-separator {
        animation: none;
    }
}

/* Print styles */
@media print {
    .seattle-header,
    .seattle-footer {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .seattle-content-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .seattle-clock-section {
        break-after: page;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .seattle-content-card {
        border: 2px solid #000;
    }
    
    .seattle-time-box {
        border: 2px solid #fff;
    }
    
    .seattle-feature-item,
    .seattle-activity-item,
    .seattle-season-card,
    .seattle-neighborhood-card,
    .seattle-food-category {
        border: 2px solid #333;
    }
}
