@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.editorial-dark {
    background: #fff;
    color: #222;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.nav-logo:hover {
    color: #666;
    transform: translateY(-1px);
}

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

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: #666;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #000000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #666;
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Common Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.01em;
    border: 2px solid #000000;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
}

/* Common Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    color: #000000;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

/* Utility Classes */
.bg-light {
    background: #f8f8f8;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ---- Privacy Policy Page Styles (Refined) ---- */
.privacy-policy-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: left;
  box-sizing: border-box;
  margin-top: 5rem;
}
.privacy-policy-body h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
  text-align: left;
}
.privacy-policy-body h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  text-align: left;
}
.privacy-policy-body p {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  color: #222;
  text-align: left;
}
.privacy-policy-body small {
  font-size: 0.95rem;
  color: #666;
}
.privacy-policy-body hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid #eee;
}
.privacy-policy-body a {
  color: #000;
  text-decoration: none;
  word-break: break-all;
}
.privacy-policy-body a:hover {
  color: #666;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .privacy-policy-body {
    padding: 2.5rem 1rem;
    font-size: 0.98rem;
    max-width: 98vw;
  }
  .privacy-policy-body h1 {
    font-size: 1.4rem;
  }
  .privacy-policy-body h2 {
    font-size: 1.05rem;
  }
  .privacy-policy-body p {
    font-size: 0.98rem;
  }
} 