/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Main Wrapper */
.main-wrapper {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a1a1a 50%, #2d5016 100%);
    min-height: 100vh;
	  margin:40px 0;
	border-radius:16px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    width: 100%;
}

/* Title Section */
.title-section {
    margin-bottom: 3rem;
}

.main-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    color: #228B22;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Clock Container */
.clock-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock-svg {
    width: 400px;
    height: 400px;
    max-width: 90vw;
    transition: transform 0.3s ease;
}

.clock-svg:hover {
    transform: scale(1.05);
}

/* Digital Time Display */
.digital-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(34, 139, 34, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.time-box:hover::before {
    opacity: 1;
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(34, 139, 34, 0.5);
}

.time-label {
    font-size: 0.9rem;
    color: #228B22;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.time-value {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Orbitron', monospace;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.time-separator {
    font-size: 3rem;
    color: #228B22;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(34, 139, 34, 0.8);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Timezone Info */
.timezone-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.timezone-text {
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.date-text {
    font-size: 1rem;
    color: #228B22;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    background: rgba(26, 26, 26, 0.9);
    border-top: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    display: block;
}

.section-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #228B22);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Info Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #228B22);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-text {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Weather Cards */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.weather-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.weather-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.weather-icon {
    font-size: 2.5rem;
}

.weather-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Culture Showcase */
.culture-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.culture-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateX(10px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.culture-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.culture-symbol {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.culture-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
}

.culture-detail {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #228B22, #FFD700);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.attraction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.attraction-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
}

.attraction-rating {
    font-size: 1rem;
}

.attraction-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.attraction-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(34, 139, 34, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #228B22;
    font-weight: 600;
}

/* Practical Grid */
.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.practical-card {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.practical-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.practical-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.practical-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.practical-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

.practical-details {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a, #0f4c3a);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

.footer-text {
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-facts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fact-item {
    color: #228B22;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Small devices (400px) */
@media (max-width: 400px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .clock-svg {
        width: 300px;
        height: 300px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .digital-time {
        gap: 0.5rem;
    }
    
    .time-box {
        padding: 1rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
}

/* Medium devices (600px) */
@media (max-width: 600px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .digital-time {
        flex-direction: column;
        gap: 1rem;
    }
    
    .time-separator {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .weather-grid {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .practical-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .culture-visual {
        min-width: auto;
    }
	.practical-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
	gap: 2rem;
}
}

/* Tablet devices (768px) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .clock-svg {
        width: 350px;
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-icon {
        align-self: center;
    }
}

/* Large tablets/small laptops (992px) */
@media (max-width: 992px) {
    .main-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .weather-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
	.practical-card {
	display: flex;
	gap: 1rem;
	background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 215, 0, 0.2);
	transition: all 0.3s ease;
}
}

/* Smooth animations for all interactive elements */
.time-box,
.info-card,
.feature-item,
.weather-card,
.culture-item,
.attraction-card,
.practical-card {
    will-change: transform;
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Clock hand animations */
#hourHand,
#minuteHand,
#secondHand {
    transform-origin: 200px 200px;
    transition: transform 0.5s ease-in-out;
}

#secondHand {
    transition: transform 0.1s ease-in-out;
}
