
/* Base styles */
:root {
  --black: #000;
  --white: #fff;
  --gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}
/* Pirate-themed animations */
@keyframes shipRock {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}
/* Treasure map effect */
.treasure-path {
  position: relative;
}
.treasure-path:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M0,0 L20,20 M20,0 L0,20" stroke="rgba(0,0,0,0.05)" stroke-width="1" /></svg>');
  opacity: 0.2;
  pointer-events: none;
}

/* Custom section spacing */
section {
    scroll-margin-top: 100px;
}

/* Gallery hover effects */
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Custom button styles */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive typography */
@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}