
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: url('assets/images/background-ocean.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}

h1 {
  font-family: 'GFS Didot', serif;
  font-size: 2.5em;
  margin-top: 2rem;
  color: #f8f8f8;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
}

.nav a {
  color: #f8f8f8;
  text-decoration: none;
  margin: 0 0.5rem;
}

.order-btn {
  background: #a67c00;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #ffd700;
  color: #000;
}

.form-container {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  display: inline-block;
}

input, button {
  padding: 0.6rem 1rem;
  margin: 0.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

input {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
}

button {
  background: #a67c00;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ffd700;
  color: #000;
}

.matrix-panel {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: inline-block;
}

footer {
  margin-top: 3rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
}

.fade-in {
  animation: fadeIn 1.5s ease-in;
}

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


/* === Custom Header Styling (Devynios Juros) === */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 12px 24px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.highlight {
  font-weight: 600;
  color: #005f73; /* accent color */
}


/* === Devynios Jūros Header Override (Refined) === */
.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 32px;
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 48px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333 !important;
  text-decoration: none;
  transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.highlight {
  font-weight: 500;
  color: #005f73 !important; /* brand accent */
}


/* === Logo visibility override === */
.site-header .logo,
.logo {
  opacity: 1 !important;
  transform: none !important;
  height: 50px !important;
  width: auto !important;
  display: block !important;
  z-index: 2000 !important;
  margin-right: 20px;
}
.site-header {
  background: #fff !important;
  position: relative;
  z-index: 1999 !important;
}
