/* Johor Tourism Website Style - Warm, Inviting, Professional */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Merriweather:wght@400;700;900&display=swap');

:root {
  /* Johor Tourism Colors - Warm & Tropical */
  --primary: #FFB800;        /* Gold - prosperity, warmth */
  --primary-dark: #E6A500;
  --primary-light: #FFD54F;
  --secondary: #0066CC;      /* Ocean Blue */
  --secondary-dark: #0052A3;
  --accent: #00A859;         /* Green - nature */
  --accent-dark: #008045;
  --warm-red: #DC143C;       /* Malaysian red */
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #6B6B6B;
  --bg-cream: #F5F1E8;       /* Warm beige background */
  --bg-white: #FFFFFF;
  --border-light: #E8E8E8;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header - Professional Tourism Style */
header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  border-bottom: 3px solid var(--primary);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-dark);
  font-family: 'Merriweather', serif;
}

.brand img {
  height: 48px;
  width: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--primary);
}

.brand span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav li a {
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

nav li a:hover {
  color: var(--secondary);
  background: rgba(0, 102, 204, 0.08);
}

nav li a:active {
  color: var(--secondary-dark);
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-dark) !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 184, 0, 0.4);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.cta:active {
  transform: translateY(0);
}

/* Main Content */
main {
  padding: 40px 0 60px;
}

h1 {
  font-family: 'Merriweather', serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1px;
}

h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.3;
}

h3 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 20px 0 12px;
  color: var(--secondary);
}

p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Slideshow - Tourism Hero Style */
.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-strong);
  background: var(--bg-white);
  min-height: 450px;
  border: 1px solid var(--border-light);
}

.slide {
  display: none;
  padding: 60px 48px;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.03) 0%, rgba(0, 102, 204, 0.03) 100%);
  animation: slideFadeIn 0.8s ease;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide.active {
  display: flex;
}

.slide img {
  max-width: 50%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--bg-white);
  transition: transform 0.5s ease;
}

.slide:hover img {
  transform: scale(1.03);
}

.slide .text {
  flex: 1;
}

.slide .text h2 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide .text p {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 32px;
  color: var(--text-medium);
}

.slideshow .controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.slideshow .controls button {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.slideshow .controls button:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.slideshow .controls button:active {
  transform: scale(0.95);
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-indicator.active {
  background: var(--primary);
  width: 35px;
  border-radius: 6px;
  border-color: var(--primary-dark);
}

/* Sections - Tourism Card Style */
.section {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.section:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.section h3 {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary);
  position: relative;
}

.section h3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

/* Attractions List - Tourism Style */
.attractions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.attractions ul li {
  padding: 16px 0;
  padding-left: 36px;
  position: relative;
  color: var(--text-medium);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.attractions ul li:last-child {
  border-bottom: none;
}

.attractions ul li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 16px;
}

.attractions ul li:hover {
  color: var(--secondary);
  transform: translateX(8px);
  padding-left: 44px;
}

/* Actions/Buttons */
.actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.actions .cta {
  font-size: 1rem;
  padding: 14px 28px;
}

/* Images and Media */
figure {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease;
  border: 1px solid var(--border-light);
}

figure:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

figure img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

figure:hover img {
  transform: scale(1.08);
}

figcaption {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: