/* NitEntry.com - Custom Styles */
/* Color Scheme: Burgundy #6B1C3E, Gold #C9A961, Beige #F5F1E8, Charcoal #1F1F1F, Teal #2D7A89 */

:root {
  --nitentry-burgundy: #6B1C3E;
  --nitentry-gold: #C9A961;
  --nitentry-beige: #F5F1E8;
  --nitentry-charcoal: #1F1F1F;
  --nitentry-teal: #2D7A89;
  --nitentry-white: #FFFFFF;
  --nitentry-light-gray: #E8E8E8;
  --nitentry-border-radius: 14px;
  --nitentry-shadow: 0 6px 20px rgba(31, 31, 31, 0.12);
  --nitentry-shadow-hover: 0 10px 30px rgba(107, 28, 62, 0.2);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--nitentry-beige);
  color: var(--nitentry-charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* Header and Navigation */
.nitentry-header {
  background: linear-gradient(135deg, var(--nitentry-burgundy) 0%, #8B2450 100%);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nitentry-nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nitentry-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nitentry-brand:hover {
  transform: translateY(-2px);
}

.nitentry-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--nitentry-gold);
}

.nitentry-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--nitentry-white);
  letter-spacing: -0.5px;
}

.nitentry-menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nitentry-burger-bar {
  width: 28px;
  height: 3px;
  background-color: var(--nitentry-gold);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

.nitentry-navlink {
  color: var(--nitentry-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--nitentry-border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.nitentry-navlink:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nitentry-navlink.nitentry-current {
  background-color: rgba(201, 169, 97, 0.2);
  color: var(--nitentry-gold);
}

.nitentry-navlink-highlight {
  background: var(--nitentry-gold);
  color: var(--nitentry-burgundy);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.nitentry-navlink-highlight:hover {
  background: #D4BA7A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
}

/* Main Content Area */
.nitentry-content {
  min-height: calc(100vh - 200px);
}

/* Hero Section with Diagonal Design */
.nitentry-hero-diagonal {
  background: linear-gradient(160deg, var(--nitentry-teal) 0%, #1F5966 50%, var(--nitentry-charcoal) 100%);
  padding: 5rem 2rem 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.nitentry-hero-diagonal::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--nitentry-beige);
  transform: skewY(-2deg);
}

.nitentry-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nitentry-hero-text-area {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.nitentry-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--nitentry-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.nitentry-hero-description {
  font-size: 1.15rem;
  color: var(--nitentry-beige);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.nitentry-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nitentry-primary-button,
.nitentry-secondary-button {
  padding: 1rem 2.5rem;
  border-radius: var(--nitentry-border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nitentry-primary-button {
  background: var(--nitentry-gold);
  color: var(--nitentry-charcoal);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.nitentry-primary-button:hover {
  background: #D4BA7A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.nitentry-secondary-button {
  background: transparent;
  color: var(--nitentry-white);
  border: 2px solid var(--nitentry-white);
}

.nitentry-secondary-button:hover {
  background: var(--nitentry-white);
  color: var(--nitentry-teal);
  transform: translateY(-3px);
}

/* Events Section - Floating Cards */
.nitentry-events-section {
  padding: 5rem 2rem;
  background-color: var(--nitentry-beige);
}

.nitentry-events-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.nitentry-heading-primary {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--nitentry-burgundy);
  text-align: center;
  margin-bottom: 1rem;
}

.nitentry-subheading {
  font-size: 1.2rem;
  color: var(--nitentry-charcoal);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 300;
}

.nitentry-floating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.nitentry-event-card {
  background: var(--nitentry-white);
  border-radius: var(--nitentry-border-radius);
  padding: 2.5rem;
  box-shadow: var(--nitentry-shadow);
  transition: all 0.4s ease;
  border-left: 5px solid var(--nitentry-gold);
}

.nitentry-event-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--nitentry-shadow-hover);
}

.nitentry-float-left {
  transform-origin: left center;
}

.nitentry-float-right {
  transform-origin: right center;
}

.nitentry-card-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--nitentry-burgundy);
  margin-bottom: 1.5rem;
}

.nitentry-event-items {
  list-style: none;
  margin-bottom: 2rem;
}

.nitentry-event-items li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--nitentry-charcoal);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--nitentry-light-gray);
}

.nitentry-event-items li:last-child {
  border-bottom: none;
}

.nitentry-event-items li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--nitentry-teal);
  font-weight: bold;
}

.nitentry-venue-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nitentry-link-button {
  background: linear-gradient(135deg, var(--nitentry-teal) 0%, #3A8B9C 100%);
  color: var(--nitentry-white);
  padding: 0.7rem 1.5rem;
  border-radius: var(--nitentry-border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nitentry-link-button:hover {
  background: linear-gradient(135deg, #3A8B9C 0%, var(--nitentry-teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 137, 0.3);
}

/* Advantages Section - Alternating Layout */
.nitentry-advantages {
  background: linear-gradient(180deg, var(--nitentry-white) 0%, var(--nitentry-light-gray) 100%);
  padding: 5rem 2rem;
}

.nitentry-advantages-container {
  max-width: 1100px;
  margin: 0 auto;
}

.nitentry-advantages-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--nitentry-burgundy);
  text-align: center;
  margin-bottom: 4rem;
}

.nitentry-alternating-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.nitentry-advantage-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nitentry-row-reverse {
  flex-direction: row-reverse;
}

.nitentry-advantage-content {
  flex: 1;
  background: var(--nitentry-white);
  padding: 2.5rem;
  border-radius: var(--nitentry-border-radius);
  box-shadow: var(--nitentry-shadow);
  border-top: 4px solid var(--nitentry-gold);
}

.nitentry-advantage-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--nitentry-teal);
  margin-bottom: 1rem;
}

.nitentry-advantage-text {
  font-size: 1.05rem;
  color: var(--nitentry-charcoal);
  line-height: 1.8;
  font-weight: 300;
}

/* Contact Page */
.nitentry-contact-area {
  background-color: var(--nitentry-beige);
  padding: 4rem 2rem;
  min-height: 70vh;
}

.nitentry-contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.nitentry-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--nitentry-burgundy);
  text-align: center;
  margin-bottom: 1rem;
}

.nitentry-intro-text {
  font-size: 1.1rem;
  color: var(--nitentry-charcoal);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

.nitentry-notification {
  padding: 1.2rem;
  border-radius: var(--nitentry-border-radius);
  margin-bottom: 2rem;
  font-weight: 500;
}

.nitentry-notification.nitentry-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.nitentry-notification.nitentry-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#nitentry-contact-form {
  background: var(--nitentry-white);
  padding: 3rem;
  border-radius: var(--nitentry-border-radius);
  box-shadow: var(--nitentry-shadow);
  margin-bottom: 3rem;
}

.nitentry-input-group {
  margin-bottom: 1.8rem;
}

.nitentry-input-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--nitentry-charcoal);
  font-size: 0.95rem;
}

.nitentry-text-input,
.nitentry-message-area {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--nitentry-light-gray);
  border-radius: var(--nitentry-border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--nitentry-charcoal);
  transition: all 0.3s ease;
}

.nitentry-text-input:focus,
.nitentry-message-area:focus {
  outline: none;
  border-color: var(--nitentry-teal);
  box-shadow: 0 0 0 3px rgba(45, 122, 137, 0.1);
}

.nitentry-message-area {
  min-height: 180px;
  resize: vertical;
}

.nitentry-submit-btn {
  background: linear-gradient(135deg, var(--nitentry-burgundy) 0%, #8B2450 100%);
  color: var(--nitentry-white);
  padding: 1rem 3rem;
  border: none;
  border-radius: var(--nitentry-border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.nitentry-submit-btn:hover {
  background: linear-gradient(135deg, #8B2450 0%, var(--nitentry-burgundy) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 28, 62, 0.3);
}

.nitentry-submit-btn:disabled {
  background: #CCCCCC;
  cursor: not-allowed;
  transform: none;
}

.nitentry-additional-info {
  background: var(--nitentry-white);
  padding: 2rem;
  border-radius: var(--nitentry-border-radius);
  border-left: 4px solid var(--nitentry-teal);
}

.nitentry-info-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--nitentry-charcoal);
  margin-bottom: 1.2rem;
}

.nitentry-info-item {
  margin: 0.8rem 0;
  font-size: 1rem;
  color: var(--nitentry-charcoal);
}

.nitentry-info-item i {
  margin-right: 0.6rem;
  color: var(--nitentry-teal);
  width: 20px;
  display: inline-block;
}

.nitentry-info-item a {
  color: var(--nitentry-teal);
  text-decoration: none;
  font-weight: 500;
}

.nitentry-info-item a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.nitentry-legal-section {
  background-color: var(--nitentry-beige);
  padding: 4rem 2rem;
}

.nitentry-legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--nitentry-white);
  padding: 3rem;
  border-radius: var(--nitentry-border-radius);
  box-shadow: var(--nitentry-shadow);
}

.nitentry-legal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--nitentry-burgundy);
  margin-bottom: 0.5rem;
}

.nitentry-legal-updated {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.nitentry-legal-content {
  line-height: 1.8;
}

.nitentry-subsection-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--nitentry-teal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.nitentry-minor-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--nitentry-charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.nitentry-paragraph {
  margin-bottom: 1.3rem;
  font-size: 1.02rem;
  color: var(--nitentry-charcoal);
}

.nitentry-legal-list {
  margin: 1.2rem 0 1.5rem 2rem;
  list-style-type: disc;
}

.nitentry-legal-list li {
  margin-bottom: 0.7rem;
  padding-left: 0.5rem;
  color: var(--nitentry-charcoal);
}

.nitentry-link-inline {
  color: var(--nitentry-teal);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nitentry-link-inline:hover {
  border-bottom-color: var(--nitentry-teal);
}

/* Footer */
.nitentry-footer {
  background: linear-gradient(135deg, var(--nitentry-charcoal) 0%, #2A2A2A 100%);
  color: var(--nitentry-beige);
  padding: 4rem 2rem 2rem 2rem;
}

.nitentry-footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.nitentry-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.nitentry-footer-block {
  display: flex;
  flex-direction: column;
}

.nitentry-footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--nitentry-gold);
  margin-bottom: 1.2rem;
}

.nitentry-footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--nitentry-beige);
  font-weight: 300;
}

.nitentry-contact-details p {
  margin: 0.7rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nitentry-contact-details i {
  color: var(--nitentry-gold);
  width: 18px;
}

.nitentry-contact-details a {
  color: var(--nitentry-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nitentry-contact-details a:hover {
  color: var(--nitentry-gold);
}

.nitentry-footer-menu {
  list-style: none;
}

.nitentry-footer-menu li {
  margin-bottom: 0.8rem;
}

.nitentry-footer-menu a {
  color: var(--nitentry-beige);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nitentry-footer-menu a:hover {
  color: var(--nitentry-gold);
  transform: translateX(5px);
}

.nitentry-helpline {
  margin-top: 1rem;
  font-size: 0.95rem;
  padding: 0.8rem;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--nitentry-gold);
}

.nitentry-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
  margin: 2rem 0;
}

.nitentry-legal-notice {
  margin-bottom: 2rem;
}

.nitentry-disclaimer-content {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #CCCCCC;
  font-weight: 300;
}

.nitentry-disclaimer-content p {
  margin-bottom: 1rem;
}

.nitentry-disclaimer-content a {
  color: var(--nitentry-gold);
  text-decoration: none;
}

.nitentry-disclaimer-content a:hover {
  text-decoration: underline;
}

.nitentry-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nitentry-copyright a {
  color: var(--nitentry-gold);
  text-decoration: none;
  margin-right: 1rem;
}

.nitentry-copyright a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.nitentry-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--nitentry-charcoal) 0%, #2A2A2A 100%);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: slideUp 0.5s ease;
}

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

.nitentry-cookie-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.nitentry-cookie-message {
  flex: 1;
  min-width: 300px;
}

.nitentry-cookie-message h5 {
  color: var(--nitentry-gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.nitentry-cookie-message p {
  color: var(--nitentry-beige);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.nitentry-cookie-button-area {
  flex-shrink: 0;
}

.nitentry-accept-button {
  background: var(--nitentry-gold);
  color: var(--nitentry-charcoal);
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: var(--nitentry-border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.nitentry-accept-button:hover {
  background: #D4BA7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.nitentry-hide {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nitentry-menu-toggle {
    display: flex;
  }

  .nitentry-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, var(--nitentry-burgundy) 0%, #5A1632 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nitentry-navigation.nitentry-active {
    right: 0;
  }

  .nitentry-navlink {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }

  .nitentry-main-heading {
    font-size: 2.2rem;
  }

  .nitentry-hero-description {
    font-size: 1rem;
  }

  .nitentry-hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .nitentry-heading-primary {
    font-size: 2.2rem;
  }

  .nitentry-floating-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nitentry-event-card:hover {
    transform: translateY(-5px);
  }

  .nitentry-advantage-row,
  .nitentry-row-reverse {
    flex-direction: column;
  }

  .nitentry-advantages-title {
    font-size: 2rem;
  }

  .nitentry-page-title {
    font-size: 2.2rem;
  }

  #nitentry-contact-form {
    padding: 2rem 1.5rem;
  }

  .nitentry-legal-wrapper {
    padding: 2rem 1.5rem;
  }

  .nitentry-legal-title {
    font-size: 2rem;
  }

  .nitentry-subsection-heading {
    font-size: 1.4rem;
  }

  .nitentry-footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .nitentry-cookie-button-area {
    width: 100%;
  }

  .nitentry-accept-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nitentry-nav-wrapper {
    padding: 0 1rem;
  }

  .nitentry-brand-name {
    font-size: 1.5rem;
  }

  .nitentry-main-heading {
    font-size: 1.8rem;
  }

  .nitentry-hero-description {
    font-size: 0.95rem;
  }

  .nitentry-primary-button,
  .nitentry-secondary-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .nitentry-heading-primary {
    font-size: 1.8rem;
  }

  .nitentry-event-card {
    padding: 1.8rem;
  }

  .nitentry-card-heading {
    font-size: 1.5rem;
  }

  .nitentry-venue-links {
    flex-direction: column;
  }

  .nitentry-link-button {
    text-align: center;
  }
}

