﻿/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow: #ffd700;
  --primary-black: #000000;
  --primary-white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #cccccc;
  --gray-dark: #333333;
  --gray-text: #666666;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--primary-white);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-white) 0%,
    var(--gray-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  animation: fadeInUp 1s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.bb-logo,
.vista-logo {
  height: 50px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.partnership-divider {
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-medium);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-light);
  border-top: 3px solid var(--primary-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-text {
  color: var(--gray-text);
  font-size: 14px;
  font-weight: 400;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/* App Container */
.app-container {
  min-height: 100vh;
  max-width: 414px;
  margin: 0 auto;
  background-color: var(--primary-white);
  box-shadow: var(--shadow-medium);
  position: relative;
}

.hidden {
  display: none !important;
}

/* Header */
.app-header {
  background: linear-gradient(
    135deg,
    var(--primary-white) 0%,
    var(--gray-light) 100%
  );
  padding: 15px 20px;
  border-bottom: 1px solid var(--gray-medium);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-dark);
}

.logo-header img {
  height: 25px;
  width: auto;
  border-radius: 4px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.language-btn,
.menu-btn {
  background: var(--primary-white);
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.language-btn:hover,
.menu-btn:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  transform: translateY(-1px);
}

/* Language Selector */
.language-selector {
  position: absolute;
  top: 70px;
  right: 20px;
  background: var(--primary-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  z-index: 200;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

.language-options {
  padding: 10px 0;
}

.lang-option {
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.lang-option:hover {
  background-color: var(--gray-light);
}

.lang-option.active {
  background-color: var(--primary-yellow);
  font-weight: 500;
}

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

/* Navigation */
.main-nav {
  display: flex;
  background: var(--primary-white);
  border-top: 1px solid var(--gray-medium);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 414px;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-text);
  font-size: 12px;
}

.nav-item i {
  font-size: 18px;
  margin-bottom: 2px;
}

.nav-item.active {
  color: var(--primary-yellow);
  background-color: rgba(255, 215, 0, 0.1);
}

.nav-item:hover {
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

/* Main Content */
.main-content {
  padding: 20px;
  padding-bottom: 80px;
  min-height: calc(100vh - 140px);
}

.content-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

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

/* Home Section */
.hero-section {
  text-align: center;
  margin-bottom: 30px;
}

.hero-section h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.hero-image {
  margin: 20px 0;
}

.hero-image img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.feature-cards {
  display: grid;
  gap: 15px;
}

.feature-card {
  background: var(--primary-white);
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-yellow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-white);
  font-size: 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-text);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 14px;
  color: var(--gray-text);
}

/* Monuments Section */
.camera-section {
  margin-bottom: 30px;
}

.camera-container {
  position: relative;
  text-align: center;
}

.camera-preview {
  width: 100%;
  height: 250px;
  background: var(--gray-light);
  border: 2px dashed var(--gray-medium);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  margin-bottom: 15px;
  transition: var(--transition);
}

.camera-preview:hover {
  border-color: var(--primary-yellow);
  background-color: rgba(255, 215, 0, 0.05);
}

.camera-btn {
  background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: var(--primary-white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.camera-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

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

.monument-card {
  background: var(--primary-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  transition: var(--transition);
}

.monument-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.monument-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.monument-card h4 {
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  text-align: center;
}

/* Events Section */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-card {
  background: var(--primary-white);
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-yellow);
}

.event-date {
  background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
  color: var(--primary-white);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  min-width: 60px;
}

.event-date .day {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.event-info {
  flex: 1;
}

.event-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 5px;
}

.event-info p {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 3px;
}

.event-info i {
  margin-right: 5px;
  color: var(--primary-yellow);
}

.event-ticket-btn {
  background: var(--primary-yellow);
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: var(--primary-white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.event-ticket-btn:hover {
  background-color: #ffa500;
  transform: scale(1.1);
}

/* News Section */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  background: var(--primary-white);
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-yellow);
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-category {
  background: var(--primary-yellow);
  color: var(--primary-white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  margin: 10px 0 8px;
  line-height: 1.4;
}

.news-content p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--gray-text);
}

.news-meta i {
  margin-right: 4px;
  color: var(--primary-yellow);
}

/* Chat Section */
.chat-personalities {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.personality-card {
  background: var(--primary-white);
  border: 2px solid var(--gray-medium);
  border-radius: var(--border-radius);
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-width: 100px;
  box-shadow: var(--shadow-light);
}

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

.personality-card.active {
  border-color: var(--primary-yellow);
  background-color: rgba(255, 215, 0, 0.1);
}

.personality-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 8px;
  object-fit: cover;
}

.personality-card span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-dark);
  display: block;
  line-height: 1.3;
}

.chat-container {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  height: 400px;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
  gap: 10px;
  max-width: 85%;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content {
  background: var(--primary-white);
  padding: 12px 15px;
  border-radius: 18px;
  box-shadow: var(--shadow-light);
  position: relative;
}

.user-message .message-content {
  background: var(--primary-yellow);
  color: var(--primary-white);
}

.message-content p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.voice-btn {
  background: none;
  border: none;
  color: var(--primary-yellow);
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
  padding: 2px;
  transition: var(--transition);
}

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

.chat-input-container {
  padding: 15px;
  background: var(--primary-white);
  border-top: 1px solid var(--gray-medium);
  display: flex;
  gap: 10px;
  align-items: center;
}

#chat-input {
  flex: 1;
  border: 1px solid var(--gray-medium);
  border-radius: 20px;
  padding: 12px 15px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

#chat-input:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

#send-btn,
#voice-input-btn {
  background: var(--primary-yellow);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--primary-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#send-btn:hover,
#voice-input-btn:hover {
  background-color: #ffa500;
  transform: scale(1.1);
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: var(--primary-white);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-dark);
}

.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--gray-text);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--gray-dark);
  transform: scale(1.1);
}

.modal-body {
  padding: 20px;
}

/* Monument Modal Specific */
.monument-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-yellow);
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
  background: var(--gray-light);
  padding: 15px;
  border-radius: var(--border-radius);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-yellow);
  border: 3px solid var(--primary-white);
}

.timeline-year {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: 5px;
}

.timeline-event {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.5;
}

.learn-more-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
  border: none;
  border-radius: var(--border-radius);
  padding: 15px;
  color: var(--primary-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

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

/* Ticket Modal Specific */
.ticket-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px dashed var(--primary-yellow);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.ticket-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, #1e3a8a 100%);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-medium);
}

.ticket-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.ticket-logo span {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-dark);
}

.ticket-id {
  font-size: 12px;
  color: var(--gray-text);
  font-family: "Courier New", monospace;
  background: var(--gray-light);
  padding: 4px 8px;
  border-radius: 4px;
}

.ticket-info {
  text-align: center;
  margin-bottom: 25px;
}

.ticket-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.ticket-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-text);
}

.ticket-detail i {
  color: var(--primary-yellow);
  width: 16px;
  text-align: center;
}

.ticket-qr-section {
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background: var(--primary-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-qr {
  margin-bottom: 10px;
}

.ticket-qr img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 2px solid var(--gray-light);
}

.qr-instruction {
  font-size: 12px;
  color: var(--gray-text);
  margin: 0;
  font-weight: 500;
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--gray-medium);
}

.ticket-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-label {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 2px;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: #059669;
}

.ticket-type {
  font-size: 12px;
  color: var(--gray-text);
  background: var(--gray-light);
  padding: 4px 8px;
  border-radius: 4px;
}

.ticket-disclaimer {
  font-size: 11px;
  color: var(--gray-text);
  font-style: italic;
  text-align: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed var(--gray-medium);
}

/* AR Popup */
.ar-popup {
  position: fixed;
  bottom: 100px;
  left: 20px;
  right: 20px;
  background: var(--primary-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  z-index: 500;
  animation: slideUp 0.5s ease;
}

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

.ar-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ar-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
}

.ar-close-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--gray-text);
  cursor: pointer;
  padding: 5px;
}

.ar-body {
  padding: 20px;
}

.ar-body p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 20px;
}

.ar-actions {
  display: flex;
  gap: 10px;
}

.ar-learn-btn {
  flex: 1;
  background: var(--gray-light);
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  padding: 12px;
  color: var(--gray-dark);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.ar-learn-btn:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--primary-white);
}

.ar-instagram-btn {
  flex: 1;
  background: linear-gradient(135deg, #e4405f, #c13584);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px;
  color: var(--primary-white);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 375px) {
  .main-content {
    padding: 15px;
  }

  .feature-card {
    padding: 15px;
  }

  .monuments-grid {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    font-size: 24px;
  }
}

@media (min-width: 415px) {
  .app-container {
    border-left: 1px solid var(--gray-medium);
    border-right: 1px solid var(--gray-medium);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
button:focus,
input:focus,
.nav-item:focus,
.feature-card:focus {
  outline: 2px solid var(--primary-yellow);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .loading-screen,
  .main-nav,
  .modal,
  .ar-popup {
    display: none !important;
  }
}
