/* 
 * Sandys101.in - Styling
 * Author: Antigravity AI Pair
 * Design: Premium Dark Photography Theme
 */

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

:root {
  /* Colors */
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-card: #181820;
  --bg-overlay: rgba(10, 10, 12, 0.92);
  --bg-glass: rgba(18, 18, 22, 0.75);
  
  --text-primary: #f1f1f5;
  --text-secondary: #a0a0b0;
  --text-muted: #6e6e7e;
  
  --accent: #cda250; /* Golden/bronze camera mount color */
  --accent-light: #dfc185;
  --accent-rgb: 205, 162, 80;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(205, 162, 80, 0.5);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.highlight {
  color: var(--accent);
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(205, 162, 80, 0.25);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(205, 162, 80, 0.08);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  font-weight: 300;
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

nav a:hover, nav a.active {
  color: var(--text-primary);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(205, 162, 80, 0.08) 0%, transparent 60%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 500px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.meta-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(1deg);
  transition: var(--transition-smooth);
}

.portrait-frame:hover {
  transform: rotate(0) scale(1.02);
}

.portrait-frame img {
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.frame-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-family: var(--font-heading);
}

.frame-tag {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.frame-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.tech-specs {
  margin-top: 40px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.spec-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.spec-card:hover {
  border-color: var(--accent);
  background: var(--bg-card);
}

.spec-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

/* Full-card clickable link wrapper */
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover .blog-link {
  color: var(--accent-light);
}

.blog-card-link:hover .arrow-right-icon {
  transform: translateX(4px);
  display: inline-block;
  transition: var(--transition-fast);
}


.blog-img-container {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-container img {
  transform: scale(1.05);
}

.blog-meta-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-overlay);
  color: var(--accent);
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.blog-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link i {
  transition: var(--transition-fast);
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

/* Gallery Section (Masonry) */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--text-primary);
  background: rgba(205, 162, 80, 0.08);
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 24px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.2) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery-item-exif {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  gap: 12px;
}

/* Instagram Showcase Section */
.instagram-banner {
  background: linear-gradient(135deg, #181820 0%, #0d0d12 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instagram-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(205,162,80,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.instagram-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.instagram-banner h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.instagram-handle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.instagram-handle:hover {
  color: var(--accent);
  border-color: #fff;
}

.instagram-banner p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px auto;
  font-size: 1rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  background: rgba(205, 162, 80, 0.1);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(205, 162, 80, 0.2);
}

.contact-text h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-text p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(205, 162, 80, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: #060608;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo span {
  color: var(--accent);
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

/* Modal Overlay & Transitions */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-overlay);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: rotate(90deg);
}

/* Lightbox Specific */
.lightbox-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 90vh;
}

.modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-viewer {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-sidebar {
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--border-color);
  background: var(--bg-card);
}

.lightbox-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.lightbox-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.exif-details {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px;
}

.exif-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.exif-row:last-child {
  border-bottom: none;
}

.exif-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.exif-val {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Blog Modal Specific */
.blog-modal-content {
  max-width: 900px;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow-y: auto;
  max-height: 90vh;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active .blog-modal-content {
  transform: translateY(0);
}

.blog-modal-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-modal-body {
  padding: 40px;
}

.blog-modal-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-modal-meta {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.blog-modal-meta span i {
  color: var(--accent);
  margin-right: 6px;
}

.blog-modal-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.blog-modal-text p {
  margin-bottom: 20px;
}

.blog-modal-text h4 {
  font-size: 1.4rem;
  margin: 30px 0 16px 0;
  color: var(--text-primary);
}

.blog-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.blog-modal-gallery img {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero-portrait {
    order: -1;
  }
  .portrait-frame img {
    max-width: 100%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .lightbox-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding: 20px;
  }
  .lightbox-desc {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none; /* In a full build we'd make a burger, but for desktop/mobile-basic we will hide and adapt */
  }
  .section-title {
    font-size: 2rem;
  }
  .blog-modal-body {
    padding: 24px;
  }
  .blog-modal-title {
    font-size: 1.8rem;
  }
  .blog-modal-gallery {
    grid-template-columns: 1fr;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
