/* Metallic Black Theme for Personal Website */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #252525;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --accent-metallic: #c0c0c0;
  --accent-silver: #d4d4d4;
  --accent-gold: #ffd700;
  --border-color: #333333;
  --shadow-color: rgba(192, 192, 192, 0.1);
  --glow-color: rgba(192, 192, 192, 0.3);
  --font-graphik: 'Graphik', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  font-size: 95%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-graphik);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  padding-top: 70px;
}

/* Top Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.top-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.top-nav-container a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(192, 192, 192, 0.02));
  border: 1px solid rgba(192, 192, 192, 0.1);
  text-transform: uppercase;
  font-family: var(--font-graphik);
  cursor: pointer;
}

.top-nav-container a.active {
  color: cyan;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 255, 255, 0.08));
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.top-nav-container a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-nav-container a:hover {
  color: cyan;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
  border-color: rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.5);
}

.top-nav-container a:hover::before {
  opacity: 1;
}

.top-nav-container a:active {
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: 
    radial-gradient(ellipse at top, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  padding: 2rem 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(192, 192, 192, 0.03) 2px,
      rgba(192, 192, 192, 0.03) 4px
    );
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Main Content Layout */
.main-content {
  display: grid;
  grid-template-columns: 300px 1fr 250px;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.left-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  max-height: calc(100vh - 100px);
  overflow-y: none;
}

.left-panel hr {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0.5rem 0 0.25rem 0;
}

.profile-info {
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.profile-info strong {
  display: block;
  font-size: 2.0rem;
  font-weight: 300;
  color: var(--accent-silver);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent-silver) 0%, var(--accent-metallic) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-info > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  font-weight: 300;
}

.profile-address {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.right-panel {
  min-width: 400px;
  font-size: 0.9em;
}

.projects-panel {
  min-width: 600px;
  grid-column: 2;
  font-size: 0.9em;
}

.projects-panel h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.projects-panel h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--accent-silver);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.project-item {
  margin: 1rem 0;
  padding: 1.5rem;
  border-left: 3px solid var(--accent-metallic);
  background: rgba(37, 37, 37, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.project-item:hover {
  border-left-color: cyan;
  background: rgba(0, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  transform: translateX(5px);
}

.project-item strong {
  color: var(--accent-silver);
  font-size: 1.1rem;
}

.project-item a {
  color: var(--accent-metallic);
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-item a:hover {
  color: cyan;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.project-item p {
  margin-bottom: 0.6rem;
  line-height: 1.5;
  text-align: start;
}

.project-item p:last-child {
  margin-bottom: 0;
}

/* Style bullet lists inside project-item */
.project-item ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.project-item li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.right-side-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.side-nav a {
  display: block;
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-family: var(--font-graphik);
  font-weight: 400;
  border-left: 2px solid transparent;
  background: transparent;
  letter-spacing: 0.3px;
}

.side-nav a:hover {
  background: rgba(192, 192, 192, 0.08);
  color: cyan;
  border-left-color: cyan;
  transform: translateX(5px);
}

.side-nav .nav-projects {
  color: var(--accent-silver);
  font-weight: 600;
}

.news-block {
  margin-top: 2.0rem;
  margin-bottom: 1rem;
  padding: 1.0rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 8px;
  border: 1px solid var(--accent-metallic);
  display: flex;
  flex-direction: column;
  max-height: 450px;
}

.news-block h3 {
  color: var(--accent-silver);
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-graphik);
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.news-items-container {
  overflow-y: auto;
  flex: 1;
}

.news-items-container::-webkit-scrollbar {
  width: 6px;
}

.news-items-container::-webkit-scrollbar-track {
  background: rgba(26, 26, 26, 0.3);
  border-radius: 3px;
}

.news-items-container::-webkit-scrollbar-thumb {
  background: var(--accent-metallic);
  border-radius: 3px;
}

.news-items-container::-webkit-scrollbar-thumb:hover {
  background: var(--accent-silver);
}

.news-item {
  margin-bottom: 0rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.15);
}

.news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Add vertical spacing between project heading and images inside project-item */
.project-item > strong + img,
.project-item h3 + img,
.project-item img {
  margin-top: 0.9rem;
  display: block;
}

.news-date {
  color: cyan;
  font-size: 0.85rem;
  font-family: 'Courier New', monospace;
  margin-bottom: 0.4rem;
  display: block;
  font-weight: 500;
}

.news-content {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.profile-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid var(--accent-metallic);
  object-fit: scale-down;
  object-position: 60% 10%;
  transform: scale(0.9); 
    box-shadow: 
    0 0 20px var(--glow-color),
    0 0 40px rgba(192, 192, 192, 0.2),
    inset 0 0 60px rgba(0, 0, 0, 0.8),
    inset 0 0 120px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  transition: all 0.3s ease;
  background: var(--bg-tertiary);
  filter: brightness(0.7) contrast(1.1);
  position: relative;
}

.profile-img:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 30px var(--glow-color),
    0 0 60px rgba(192, 192, 192, 0.3),
    inset 0 0 60px rgba(0, 0, 0, 0.8),
    inset 0 0 120px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-silver);
  filter: brightness(0.75) contrast(1.1);
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 200;
  font-family: var(--font-graphik);
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, var(--accent-silver) 0%, var(--accent-metallic) 50%, var(--accent-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px var(--shadow-color);
  letter-spacing: 3px;
}

.right-panel h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--accent-silver);
  text-shadow: 0 0 10px var(--shadow-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  letter-spacing: 1px;
}

.right-panel h2 + p {
  text-align: justify;
  line-height: 1.7;
  color: var(--text-secondary);
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 2rem 0 1.5rem;
  color: var(--accent-silver);
  text-shadow: 0 0 10px var(--shadow-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-metallic);
  margin: 1rem 0 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.address-block {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 2rem 0;
  line-height: 1.6;
  font-style: normal;
}

/* About Me Brief */
.about-me-brief {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2.5rem 0;
  padding: 1.5rem;
  background: rgba(37, 37, 37, 0.3);
  border-left: 3px solid var(--accent-metallic);
  border-radius: 8px;
}

/* Education Items */
.education-item {
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-left: 3px solid var(--accent-metallic);
  padding-left: 1.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 8px;
}

.education-item:hover {
  border-left-color: cyan;
  padding-left: 2rem;
  background: rgba(0, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.education-item strong {
  color: var(--accent-silver);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.education-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.education-item a {
  color: var(--accent-silver);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.education-item a:hover {
  color: cyan;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Left Panel Divider */
.left-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 1.5rem 0;
}

/* Skills Divider */
.skills-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0 1.5rem 0;
}

/* Left Panel Skills */
.left-skills {
  width: 100%;
  text-align: left;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 1.0rem;
  margin-top: 0;
}

.left-skills strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-metallic);
  margin: 0.2rem 0 0.1rem 0;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.left-skills p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.3;
  font-family: 'Courier New', 'Consolas', monospace;
}

.left-skills .skill-category {
  margin-bottom: 0.5rem;
}

.left-skills .skill-category:last-child {
  margin-bottom: 0;
}

/* Skills Section */
.skills-section {
  width: 100%;
  text-align: left;
  font-family: 'Courier New', 'Consolas', monospace;
}

.skills-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-silver);
  margin: 0 0 1.5rem 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.skills-section strong {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-metallic);
  margin: 1rem 0 0.4rem 0;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.skills-section p {
  margin: 0 0 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.8;
  font-family: 'Courier New', 'Consolas', monospace;
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0.3rem;
  margin: 0;
  width: 100%;
  max-width: 220px;
  font-size: 0.9em;
}

.social-links p {
  margin: 0;
  display: contents;
}

.social-links a {
  color: var(--accent-metallic);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0.45rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.5);
  white-space: nowrap;
  width: 100%;
}

.social-icon {
  font-size: 1.1rem;
  display: inline-block;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(88%);
  transition: filter 0.3s ease;
}

.social-links a:hover .social-icon-img {
  filter: brightness(0) saturate(100%) invert(90%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(105%) contrast(95%);
}

.social-links a:hover {
  color: var(--accent-silver);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  border-color: var(--accent-metallic);
  background: rgba(37, 37, 37, 0.8);
}


/* Contact Links */
.contact-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.3rem;
  margin: 0;
  width: 100%;
  max-width: 200px;
  font-size: 0.9em;
}

.contact-links p {
  margin: 0;
  display: contents;
}

.contact-links a {
  color: var(--accent-metallic);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.5);
  flex: 1;
  min-width: fit-content;
  max-width: 120px;
  white-space: nowrap;
}

.contact-links a:hover {
  color: var(--accent-silver);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--glow-color);
  border-color: var(--accent-metallic);
  background: rgba(37, 37, 37, 0.8);
}

.contact-links a:hover .social-icon-img {
  filter: brightness(0) saturate(100%) invert(90%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(105%) contrast(95%);
}

.contact-links .contact-emoji {
  font-size: 1.7em;
  vertical-align: middle;
  margin-right: 0.3em;
}

.booking-link {
  display: flex;
  justify-content: center;
  margin-top: 0;
  width: 100%;
  max-width: 200px;
}

.booking-link a {
  color: var(--accent-metallic);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.5);
  width: 100%;
  max-width: 200px;
  white-space: nowrap;
}

.booking-link a:hover {
  color: var(--accent-silver);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--glow-color);
  border-color: var(--accent-metallic);
  background: rgba(37, 37, 37, 0.8);
}

.booking-link .contact-emoji {
  font-size: 1.7em;
  vertical-align: middle;
  margin-right: 0.3em;
}

/* Section Styling */
.section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-primary);
}

/* Education Cards */
.education-card {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(26, 26, 26, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.3),
    0 0 20px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.education-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-metallic), transparent);
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 8px 12px rgba(0, 0, 0, 0.4),
    0 0 30px var(--glow-color);
  border-color: var(--accent-metallic);
}

.education-card h3 {
  color: var(--accent-silver);
  margin-top: 0;
}

.education-card strong {
  color: var(--accent-metallic);
  font-weight: 600;
}

.education-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.education-card ul li {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  position: relative;
  color: var(--text-secondary);
}

.education-card ul li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-metallic);
  font-size: 1.2rem;
}

/* Navbar */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: var(--accent-silver);
}

/* Footer */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-content {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
  
  .side-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    position: static;
  }
  
  .side-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .side-nav li {
    margin: 0;
  }
  
  .side-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .top-nav-container {
    padding: 0.5rem 1rem;
    gap: 0.3rem;
  }
  
  .top-nav-container a {
    font-size: 0.7rem;
    padding: 0.4rem 0.7rem;
    letter-spacing: 0.3px;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .left-panel,
  .right-panel,
  .side-nav {
    width: 100%;
    position: static !important;
  }
  
  .right-panel {
    min-width: 100%;
    margin-top: 2rem;
  }
  
  .right-side-column {
    position: static !important;
    margin-top: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  
  .profile-img {
    width: 180px !important;
    height: 180px !important;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .social-links {
    gap: 0.25rem;
    max-width: 220px;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .social-links a {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.4rem !important;
    width: 100%;
  }
  
  .social-icon-img {
    width: 16px !important;
    height: 16px !important;
  }
  
  .contact-links {
    max-width: 100%;
  }
  
  .contact-links a {
    font-size: 0.7rem !important;
    padding: 0.45rem 0.7rem !important;
  }
  
  .booking-link {
    max-width: 100%;
  }
  
  .booking-link a {
    font-size: 0.7rem !important;
    padding: 0.45rem 0.7rem !important;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .top-nav-container {
    padding: 0.4rem 0.5rem;
    gap: 0.25rem;
  }
  
  .top-nav-container a {
    font-size: 0.65rem;
    padding: 0.35rem 0.5rem;
    letter-spacing: 0.2px;
    border-radius: 4px;
  }
  
  body {
    padding-top: 60px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Link Styling */
a {
  color: var(--accent-metallic);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-silver);
}

/* Selection */
::selection {
  background: var(--accent-metallic);
  color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-metallic);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-silver);
}

/* Footer Section */
.footer-section {
  background: 
    radial-gradient(ellipse at top, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 3rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(192, 192, 192, 0.03) 2px,
      rgba(192, 192, 192, 0.03) 4px
    );
  pointer-events: none;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  font-family: var(--font-graphik);
  position: relative;
  z-index: 1;
}

.copyright::before {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-metallic), transparent);
  margin: 0 auto 1.5rem;
}

/* Responsive: Stack panels vertically on small screens */
@media (max-width: 800px) {
  .main-content {
    display: flex !important;
    flex-direction: column !important;
  }
  .left-panel,
  .right-panel,
  .right-side-column {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 1rem 0.5rem !important;
    box-sizing: border-box;
  }
  .side-nav {
    position: static !important;
    width: 100% !important;
    margin-top: 1rem;
  }
  .profile-img {
    width: 180px !important;
    height: 180px !important;
  }
}

.flj {
  transition: color 0.3s ease;
}

.flj:hover {
  color: cyan;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  width: 100%;
}