@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Reset and Base Styles */
.sydney-time-tool * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sydney-time-tool {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
}

.stt-container {
  max-width: auto;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.stt-hero {
  background: linear-gradient(135deg, #061626 0%, #1e484a 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
	border-radius: 20px;
}

.stt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stt-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.stt-current-time {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.stt-time-display {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stt-date-display {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.stt-timezone-info {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Section Styles */
.stt-section {
  padding: 80px 0;
  position: relative;
}

.stt-section:nth-child(even) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	border-radius: 20px;
}

.stt-section:nth-child(odd) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	border-radius: 20px;
}

.stt-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Quick Facts Grid */
.stt-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stt-fact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stt-fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stt-fact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.stt-fact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.stt-fact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Comparison Grid */
.stt-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.stt-time-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stt-time-card:hover {
  transform: scale(1.05);
}

.stt-time-card h3 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.stt-time {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.stt-difference {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Converter Section */
.stt-converter-tool {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stt-input-group {
  margin-bottom: 30px;
}

.stt-input-group label {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.stt-input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.stt-conversion-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stt-conversion-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.stt-conversion-item h4 {
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.stt-conversion-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Business Hours */
.stt-business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stt-business-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stt-business-card h3 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.stt-business-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Weather Section */
.stt-weather-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stt-weather-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stt-weather-icon {
  font-size: 4rem;
}

.stt-temperature {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.stt-weather-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.stt-weather-extra {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Calendar Section */
.stt-calendar-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.stt-calendar-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stt-calendar-card h3 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.stt-holiday-item {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stt-countdown {
  text-align: center;
}

.stt-countdown-item {
  display: inline-block;
}

.stt-countdown-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.stt-countdown-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Meeting Planner */
.stt-planner-tool {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stt-planner-controls {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.stt-select {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  flex: 1;
}

.stt-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stt-meeting-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stt-meeting-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.stt-meeting-item h4 {
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.stt-meeting-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* History Section */
.stt-history-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stt-history-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stt-history-card h3 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.stt-history-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* FAQ Section */
.stt-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.stt-faq-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.stt-faq-question {
  padding: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.stt-faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stt-faq-answer {
  padding: 0 25px 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Footer */
.stt-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 30px 0;
  text-align: center;
}

.stt-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stt-main-title {
    font-size: 2.5rem;
  }
  
  .stt-time-display {
    font-size: 2.5rem;
  }
  
  .stt-section-title {
    font-size: 2rem;
  }
  
  .stt-calendar-grid {
    grid-template-columns: 1fr;
  }
  
  .stt-planner-controls {
    flex-direction: column;
  }
  
  .stt-weather-info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .stt-weather-extra {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stt-current-time {
    padding: 25px;
  }
  
  .stt-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .stt-container {
    padding: 0 15px;
  }
  
  .stt-main-title {
    font-size: 2rem;
  }
  
  .stt-time-display {
    font-size: 2rem;
  }
  
  .stt-facts-grid {
    grid-template-columns: 1fr;
  }
  
  .stt-comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stt-section {
  animation: fadeInUp 0.8s ease-out;
}

/* Pulse animation for live updates */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.stt-time-display {
  animation: pulse 2s infinite;
}