/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.washington-time-app {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.main-title {
    margin-bottom: 3rem;
}

.title-primary {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title-secondary {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

/* Clock Container */
.clock-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 100%;
}

/* SVG Clock Styles */
.analog-clock {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.clock-face {
    fill: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
}

.clock-inner {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
}

.hour-marker {
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    stroke-linecap: round;
}

.major-marker {
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 3;
}

.clock-number {
    fill: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
}

.hour-hand {
    stroke: #FFD700;
    stroke-width: 4;
    stroke-linecap: round;
    transform-origin: 100px 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.minute-hand {
    stroke: #FFA500;
    stroke-width: 3;
    stroke-linecap: round;
    transform-origin: 100px 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.second-hand {
    stroke: #FF6B6B;
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: 100px 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.center-dot {
    fill: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Digital Time Display */
.digital-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hour-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
}

.minute-box {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(255, 107, 107, 0.2));
}

.second-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(240, 147, 251, 0.2));
}

.time-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timezone-info {
    text-align: center;
}

.current-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timezone-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Information Sections */
.info-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.1);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Business Hours Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.business-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.business-type {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
}

.business-hours {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.business-days {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Time Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.city-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.time-difference {
    color: #FFA500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.time-display {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

/* Facts Container */
.facts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.fact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.fact-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    min-width: 60px;
    text-align: center;
}

.fact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.fact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.tool-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tool-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Quick Reference */
.reference-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.current-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.status-item {
    text-align: center;
}

.status-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.status-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.reference-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

.note-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.note-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.editor-styles-wrapper, .entry-content {
	counter-reset: footnotes;
	background: #5b5b7e;
}

/* Responsive Design */
@media (max-width: 992px) {
    .title-primary {
        font-size: 1rem;
    }
    
    .analog-clock {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .fact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .fact-number {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }
    
    .title-primary {
        font-size: 2.5rem;
    }
    
    .title-secondary {
        font-size: 1.2rem;
    }
    
    .clock-container {
        padding: 2rem;
    }
    
    .analog-clock {
        width: 200px;
        height: 200px;
    }
    
    .time-box {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .info-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid,
    .business-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .current-status {
        grid-template-columns: 1fr;
    }
	.title-primary {
	font-size: 1rem;
}
}

@media (max-width: 600px) {
    .title-primary {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .digital-time {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .time-separator {
        display: none;
    }
    
    .analog-clock {
        width: 180px;
        height: 180px;
    }
    
    .reference-note {
        flex-direction: column;
    }
	.title-primary {
	font-size: 1rem;
}
}

@media (max-width: 400px) {
    .hero-section {
        padding: 0.5rem;
    }
    
    .clock-container {
        padding: 1.5rem;
    }
    
    .analog-clock {
        width: 160px;
        height: 160px;
    }
    
    .title-primary {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .info-card,
    .business-card,
    .tool-card {
        padding: 1.5rem;
    }
	
	.title-primary {
	font-size: 1rem;
}
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
