/* Greek Concierge - Ultra Luxury Design */
/* Animated Blue Wave Gradient Background */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: rgba(2, 11, 28, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) rgba(2, 11, 28, 0.5);
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  color: #ffffff;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

body.no-scroll {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* Animated Wave Gradient Background */
.wave-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    45deg,
    #020b1c 0%,
    #041220 15%,
    #071a2e 30%,
    #0a2340 45%,
    #0d2a4a 55%,
    #0a2340 70%,
    #071a2e 85%,
    #020b1c 100%
  );
  background-size: 400% 400%;
  animation: waveGradient 25s ease-in-out infinite;
}

.wave-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(2, 11, 28, 0.9) 0%,
    rgba(4, 18, 32, 0.6) 25%,
    rgba(7, 26, 46, 0.3) 50%,
    rgba(4, 18, 32, 0.6) 75%,
    rgba(2, 11, 28, 0.9) 100%
  );
  background-size: 300% 300%;
  animation: waveOverlay 30s ease-in-out infinite reverse;
}

.wave-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(13, 42, 74, 0.2) 0%,
    transparent 50%
  );
  animation: pulseGlow 20s ease-in-out infinite;
}

@keyframes waveGradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes waveOverlay {
  0% {
    background-position: 0% 0%;
  }
  33% {
    background-position: 100% 50%;
  }
  66% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Page Container */
.page-container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Main Content - Centered Logo */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Logo Styles */
.logo-container {
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
}

.logo {
  max-width: 130px;
  width: 100%;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}

.logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.4));
}

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

/* Content Page Styles */
.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h1,
.content-wrapper h2 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.content-wrapper p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 1rem;
}

/* Long-form content pages */
.content-wrapper.long-form {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 2rem 6rem;
  max-width: 700px;
}

.content-wrapper.long-form .back-home {
  align-self: center;
}

.content-wrapper.long-form h1 {
  align-self: flex-start;
}

.content-wrapper.long-form p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.9;
}

.content-wrapper.long-form .intro {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.content-wrapper.long-form h2 {
  align-self: flex-start;
  font-size: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
}

.content-wrapper.long-form h3 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.content-wrapper.long-form .principles p,
.content-wrapper.long-form .closing p {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.content-wrapper.long-form .principles strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.content-wrapper.long-form .closing p:last-child {
  margin-top: 1.5rem;
}

.content-wrapper.long-form ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.content-wrapper.long-form ul li {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-wrapper.long-form ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.content-wrapper.long-form ul li strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* Policy Navigation - Ultra Luxury Styling */
.policy-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
}

.policy-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.policy-nav a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.policy-nav a:hover {
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.2em;
}

.policy-nav a:hover::before {
  width: 60%;
}

/* Legacy ul styling - fallback */
.content-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.content-wrapper ul li {
  margin-bottom: 1rem;
}

.content-wrapper ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  display: inline-block;
}

.content-wrapper ul li a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
  transform: translateX(5px);
}

/* Back to Home Link */
.back-home {
  display: inline-block;
  margin-bottom: 3rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.back-home:hover {
  opacity: 1;
}

.back-home img {
  max-width: 120px;
  height: auto;
}

/* Footer */
.site-footer {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-content span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  padding-bottom: 2px;
}

.footer-content a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 300;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-content a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Typography */
a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 3rem 1.5rem;
  }

  .content-wrapper h1,
  .content-wrapper h2 {
    font-size: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .content-wrapper h1,
  .content-wrapper h2 {
    font-size: 1.2rem;
  }

  .site-footer {
    padding: 1.5rem 1rem;
  }
}

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0d2847;
  color: #ffffff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Error Pages */
.error-content {
  text-align: center;
  margin-top: 3rem;
  animation: fadeInUp 1.5s ease-out 0.3s both;
}

.error-code {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-message {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  max-width: 300px;
  line-height: 1.6;
}

.error-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.error-link:hover {
  color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.25em;
}

@media (max-width: 480px) {
  .error-code {
    font-size: 3.5rem;
  }

  .error-message {
    font-size: 0.9rem;
    max-width: 250px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }

/* Visually Hidden - SEO Footer (accessible to crawlers, hidden from users) */
.seo-links {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Smooth page transitions */
.page-container {
  animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
