:root {
  --brand-pink: #FF269E;
  --brand-purple: #924EFF;
  --brand-dark: #333;
  --brand-light: #fafafa;
  --brand-white: #ffffff;
  --border-light: #e8e8e8;
  --text-muted: #666;
  --nav-height: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--brand-dark);
  line-height: 1.6;
  background: var(--brand-white);
  font-weight: 400;
}

a {
  color: var(--brand-pink);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand-purple);
}

/* Site-Wide Notification Banner */
.site-notification {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: white;
  text-align: center;
  padding: 0.75rem 2rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: none;
  font-size: 0.95rem;
  overflow-x: auto;
  z-index: 1001;
  height: 40px;
}

.site-notification.show {
  display: block;
}

/* Adjust body padding when notification is visible */
body.has-notification {
  padding-top: 0;
}

/* Adjust header position when notification is visible */
body.has-notification header {
  top: 40px;
}

.notification-close {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.notification-close:hover {
  opacity: 1;
}

/* Responsive notification banner */
@media (max-width: 768px) {
  .site-notification {
    font-size: 0.85rem;
    padding: 0.6rem 3rem 0.6rem 1rem;
  }

  .notification-close {
    right: 0.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .site-notification {
    font-size: 0.8rem;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  }
}

/* Header - Fixed (sticky) with glassy effect */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

header.scrolled:hover {
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.logo-link {
  position: relative;
  display: inline-block;
  width: 170px;
  height: 51px;
}

.logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 51px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 51px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple), var(--brand-pink), var(--brand-purple));
  background-size: 300% 100%;
  animation: plasmaLogoAnimation 12s ease-in-out infinite;
  mask-image: var(--logo-mask);
  -webkit-mask-image: var(--logo-mask);
  mask-size: 170px 51px;
  -webkit-mask-size: 170px 51px;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
}

.logo:hover .logo-link::before {
  opacity: 0.8;
}

@keyframes plasmaLogoAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@supports (mask-image: url()) {
  .logo {
    --logo-mask: url('../assets/images/Logo Finished with text.svg');
  }
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  position: relative;
}

nav li {
  position: relative;
}

nav a {
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

nav li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 220px;
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 0.75rem 1.5rem;
  display: block;
  color: var(--brand-dark);
  font-weight: 400;
  border-bottom: none;
  transition: all 0.3s ease;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: var(--brand-light);
  color: var(--brand-pink);
  padding-left: 2rem;
}

.dropdown .dropdown-header {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--brand-pink);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.5rem;
}

.dropdown .dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.5rem 0;
}

.upload-btn {
  padding: 0.6rem 1.25rem;
  background: var(--brand-white);
  color: var(--brand-dark);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.upload-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  padding: 3px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple), var(--brand-pink));
  background-size: 200% 100%;
  border-radius: 9px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  animation: gradientShift 3s ease-in-out infinite;
}

.upload-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 38, 158, 0.2);
  color: var(--brand-dark);
}

/* Account Menu */
.account-menu {
  position: relative;
}

.account-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.account-btn .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.account-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 180px;
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.account-menu:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown a {
  padding: 0.75rem 1.5rem;
  display: block;
  color: var(--brand-dark);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.account-dropdown a:hover {
  background: var(--brand-light);
  color: var(--brand-pink);
  padding-left: 2rem;
}

.account-dropdown .dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.5rem 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brand-dark);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--brand-light);
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--brand-pink);
}

/* Container utility */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Content Container - for standard pages */
.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 2rem;
}

/* Page Title */
.page-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-dark);
  text-align: center;
  margin-bottom: 1rem;
}

/* Section Title */
.section-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--brand-dark);
  margin-bottom: 2rem;
}

/* Intro Text */
.intro-text {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section utility classes */
.section {
  padding: 4rem 2rem;
}

.section-alt {
  background: var(--brand-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--brand-pink);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--brand-purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(146, 78, 255, 0.3);
  color: white;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--brand-white);
  color: var(--brand-dark);
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
  text-align: center;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: -3px;
  padding: 3px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple), var(--brand-pink));
  background-size: 200% 100%;
  border-radius: 9px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  animation: gradientShift 3s ease-in-out infinite;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 38, 158, 0.2);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-out;
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-message {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-message a {
  color: var(--brand-pink);
  text-decoration: underline;
}

.cookie-button {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: white;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-button:hover {
  opacity: 0.9;
}

/* Full Width Gray Section - Form */
.full-width-gray {
  background: var(--brand-light);
  width: 100%;
  padding: 60px 0;
  margin: 0;
}

.form-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Form Styles */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group-full {
  width: 100%;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-pink);
}

.form-input:invalid:not(:focus):not(:placeholder-shown),
.form-textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc3545;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

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

.required-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 20px 0;
}

.submit-btn {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: white;
  padding: 15px 50px;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 2rem;
  text-align: center;
}

.contact-methods {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.notice-box {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 25px;
  background: #fff3e0;
  border-left: 4px solid var(--brand-pink);
  border-radius: 4px;
  text-align: left;
}

.notice-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Full Width Map */
.full-width-map {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
}

/* Address Section */
.address-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 2rem;
}

.address-content {
  text-align: center;
  margin-bottom: 40px;
}

.address-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.directions-content {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
}

.directions-content h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-dark);
  margin-bottom: 15px;
}

.directions-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.map-link {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
}

.map-link a {
  color: #0000FF;
  text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-center {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    flex-direction: column;
    background: var(--brand-white);
    width: 300px;
    height: calc(100vh - var(--nav-height));
    padding: 2rem 1rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav-center.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  nav a {
    padding: 1rem 0;
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: var(--brand-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav li:hover .dropdown,
  nav li.active .dropdown {
    max-height: 300px;
    overflow-y: auto;
  }

  .dropdown a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown a:hover {
    padding-left: 1.5rem;
  }

  .upload-btn {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }

  /* Account Menu Mobile */
  .account-menu {
    width: 100%;
    margin-top: 2rem;
  }

  .account-btn {
    width: 100%;
    justify-content: center;
  }

  .account-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: var(--brand-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .account-menu:hover .account-dropdown,
  .account-menu.active .account-dropdown {
    max-height: 200px;
  }

  .account-dropdown a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .account-dropdown a:hover {
    padding-left: 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding: 3rem 1rem;
  }

  .content-container {
    padding: 30px 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-button {
    width: 100%;
  }

  .form-container {
    padding: 0 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-info-section,
  .address-section {
    padding: 40px 1rem;
  }

  .notice-box {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
