/* Severance-inspired CSS for Caterina Baars website - Updated for more authentic minimal style */

:root {
  --primary-color: #0a2342;
  --secondary-color: #2ca58d;
  --accent-color: #84bc9c;
  --text-color: #333;
  --light-text: #f5f5f5;
  --background-color: #f8f9fa;
  --dark-background: #0a2342;
  --office-green: #8EB69B;
  --office-floor: #8EB69B;
  --wall-white: #f5f5f5;
  --ceiling-white: #ffffff;
  --divider-color: #d1d1d1;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--wall-white);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.02em;
}

.container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header and Navigation - Severance Style */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--wall-white);
  border-bottom: 1px solid var(--divider-color);
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-model {
  width: 60px;
  height: 60px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.header-model .model-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 0.6rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hero Section - Neumorphic Severance Style */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  margin-top: 60px;
  background: linear-gradient(135deg, var(--office-floor) 0%, var(--dark-background) 100%);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/grid-pattern.svg');
  opacity: 0.05;
  pointer-events: none;
}

.ceiling-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--ceiling-white);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 2px;
  padding: 2px;
}

.ceiling-tile {
  background-color: var(--ceiling-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-content {
  max-width: 500px;
  z-index: 1;
  padding: 40px;
  margin-right: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: all 0.5s ease;
}

.hero-content:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.3),
    -12px -12px 20px rgba(255, 255, 255, 0.15);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -1px;
  color: var(--light-text);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  color: var(--light-text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.email,
.read-more-btn,
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 44px;
}

.linkedin-btn {
  padding: 10px;
  width: 44px;
}

.linkedin-btn svg {
  width: 20px;
  height: 20px;
  color: var(--light-text);
  transition: all 0.3s ease;
}

.email:hover,
.read-more-btn:hover,
.linkedin-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.linkedin-btn:hover svg {
  transform: scale(1.1);
}

.birthday-message {
  margin-top: 40px;
  padding: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 10px 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.birthday-message:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.hidden-message {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--light-text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.birthday-message:hover .hidden-message {
  opacity: 1;
  transform: translateY(0);
}

.hero-model {
  width: 300px;
  height: 500px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.hero-model:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.3),
    -12px -12px 20px rgba(255, 255, 255, 0.15);
}

.hero-model:hover .profile-image {
  transform: scale(1.05);
}

.model-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.model-placeholder:before {
  content: '';
  width: 100px;
  height: 100px;
  border: 2px solid var(--wall-white);
  border-radius: 50%;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* About Section - Severance Style */
.about-section {
  padding: 100px 40px;
  background-color: var(--wall-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--text-color);
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h2:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -15px;
  left: 0;
  background-color: var(--text-color);
}

.about-content {
  max-width: 800px;
  font-size: 0.9rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  padding: 40px;
  background: var(--wall-white);
  border-radius: 15px;
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.1),
    -8px -8px 15px rgba(255, 255, 255, 0.8);
  transform: translateY(0);
  transition: all 0.5s ease;
  margin: 0 auto;
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.15),
    -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.about-content p {
  margin-bottom: 20px;
}

.about-model,
.photography-model,
.blog-model {
  width: 300px;
  height: 300px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  margin: 20px;
}

.about-model:hover,
.photography-model:hover,
.blog-model:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.3),
    -12px -12px 20px rgba(255, 255, 255, 0.15);
}

.about-model img,
.photography-model img,
.blog-model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.about-model:hover img,
.photography-model:hover img,
.blog-model:hover img {
  transform: scale(1.05);
}

/* Photography Section - Artistic Minimal Style */
.photography-section {
  padding: 100px 40px;
  background-color: var(--wall-white);
  color: var(--text-color);
}

.photography-section h2 {
  font-size: 1.5rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.photography-section h2:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-color);
}

.photography-subsections {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.subsection {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.subsection h3 {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  opacity: 0.8;
  padding-left: 20px;
}

.gallery-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--text-color) transparent;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-container::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 4px;
}

.gallery {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  min-width: min-content;
  width: max-content;
}

.gallery-item {
  position: relative;
  flex: 0 0 500px;
  height: 375px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--wall-white);
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.1),
    -8px -8px 15px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  margin-right: 30px;
}

.gallery-item:last-child {
  margin-right: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.15),
    -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--light-text);
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 0 0 15px 15px;
}

.gallery-item:hover .image-caption {
  transform: translateY(0);
  opacity: 1;
}

.image-caption p {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.image-caption .location {
  font-size: 0.8rem;
  opacity: 0.9;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Blog Section - Neumorphic Style */
.blog-section {
  padding: 100px 40px;
  background-color: var(--wall-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-section h2 {
  font-size: 1.5rem;
  margin-bottom: 60px;
  color: var(--text-color);
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.blog-section h2:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.blog-card {
  background: var(--wall-white);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.1),
    -8px -8px 15px rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.15),
    -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
  opacity: 0.8;
}

.read-more {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover .read-more {
  transform: translateX(5px);
}

/* Contact Section - Severance Style */
.contact-section {
  padding: 80px 20px 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--office-floor) 0%, var(--dark-background) 100%);
  color: var(--light-text);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.contact-section .container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section h2:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--wall-white);
}

.contact-info {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  padding: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: all 0.5s ease;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--wall-white);
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.contact-model {
  width: 300px;
  height: 300px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  margin: 20px;
}

.contact-model:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.3),
    -12px -12px 20px rgba(255, 255, 255, 0.15);
}

.contact-model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.contact-model:hover img {
  transform: scale(1.05);
}

/* Footer - Grandiose Style */
footer {
  display: none;
}

/* Severance-inspired animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 165, 141, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(44, 165, 141, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(44, 165, 141, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  nav {
    padding: 0 20px;
  }

  .logo {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .header-model {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--wall-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Adjust hero section for mobile */
  .hero-section {
    flex-direction: column;
    padding: 100px 20px;
    gap: 40px;
  }

  .hero-content {
    margin-right: 0;
    width: 100%;
    max-width: none;
  }

  .hero-model {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }

  /* Adjust photography section for mobile */
  .photography-subsections {
    padding: 0 10px;
  }

  .gallery-item {
    flex: 0 0 300px;
    height: 225px;
    margin-right: 20px;
  }

  .gallery {
    gap: 20px;
    padding: 0 10px;
  }

  /* Adjust blog section for mobile */
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .blog-card {
    padding: 20px;
  }

  /* Adjust about section for mobile */
  .about-section .container,
  .contact-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content,
  .contact-info {
    max-width: 100%;
    margin: 0 20px;
  }

  .about-model,
  .photography-model,
  .blog-model,
  .contact-model {
    margin: 20px auto;
  }

  /* Adjust contact section for mobile */
  .contact-section {
    padding: 80px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    max-width: 100%;
    margin-right: 0;
  }

  .contact-model {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .email,
  .read-more-btn,
  .linkedin-btn {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 16px;
  }

  .header-model {
    width: 35px;
    height: 35px;
  }

  .gallery-item {
    flex: 0 0 250px;
    height: 187px;
  }

  .blog-card h3 {
    font-size: 1.1rem;
  }

  .blog-card p {
    font-size: 0.8rem;
  }
}

/* What You Need to Know Page Styles */
.info-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-color);
}

.info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.info-card {
  background: var(--wall-white);
  padding: 30px;
  border-radius: 4px;
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.1),
    -8px -8px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-color);
}

.info-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
  opacity: 0.9;
}

.info-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text-color);
  opacity: 0.9;
  padding-left: 25px;
  position: relative;
}

.info-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .info-section {
    padding: 40px 10px;
  }

  .info-section h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .info-card {
    padding: 20px;
  }
}

/* Remove custom cursor styles */
.custom-cursor {
  display: none;
}

/* Remove next-steps-button and popup styles */
.next-steps-button {
  display: none;
}

/* Publications Section - Neumorphic Style */
.publications-section {
  padding: 100px 40px 0;
  margin-bottom: 120px;
  background-color: var(--wall-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.publications-section h2 {
  font-size: 1.5rem;
  margin-bottom: 60px;
  color: var(--text-color);
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.publications-section h2:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-color);
}

.publications-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

.no-publications,
.error-message {
  text-align: center;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1rem;
  padding: 20px;
}

.error-message {
  color: #dc3545;
}

/* Loading animation */
@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

.publications-grid.loading {
  animation: pulse 1.5s infinite;
}

.publication-card {
  background: var(--wall-white);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    8px 8px 15px rgba(0, 0, 0, 0.1),
    -8px -8px 15px rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: inherit;
  display: block;
}

.publication-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.4;
}

.publication-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
  opacity: 0.8;
}

.publication-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
}

.publication-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.publication-journal {
  font-style: italic;
}

.publication-date {
  font-size: 0.75rem;
}

.publication-doi {
  font-family: monospace;
  font-size: 0.75rem;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 20px rgba(0, 0, 0, 0.15),
    -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.publication-card:hover h3 {
  color: var(--text-color);
}

.publication-card:hover .read-more {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .publications-section {
    padding: 80px 20px;
  }

  .publications-grid {
    padding: 0 20px;
  }

  .publication-card {
    padding: 20px;
  }

  .publication-card h3 {
    font-size: 1.1rem;
  }

  .publication-card p {
    font-size: 0.8rem;
  }

  .publication-meta {
    gap: 0.5rem;
  }

  .publication-journal {
    min-width: 100%;
  }
}

.loading-indicator {
  text-align: center;
  color: var(--text-color);
  font-size: 1.1rem;
  opacity: 0.8;
  padding: 2rem;
  font-family: var(--font-main);
  letter-spacing: 0.5px;
}

.loading-dots {
  display: inline-block;
  animation: loadingDots 1.5s infinite;
  width: 24px;
  text-align: left;
}

@keyframes loadingDots {
  0% {
    content: '.';
  }

  33% {
    content: '..';
  }

  66% {
    content: '...';
  }

  100% {
    content: '.';
  }
}

.publications-grid.loading {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publications-grid.loading .loading-indicator {
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.4;
  }
}

/* Hide blog section and navigation link temporarily */
.blog-section,
.blog-link {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.hero-buttons a {
  scroll-behavior: smooth;
}