/* ============================================
   NY MINUTE DATING — SHARED STYLES
   Ported from legacy style-main.css
   Used across all pages via _Layout.cshtml

   Page-specific styles go in PageName.cshtml.css
   (auto-scoped by .NET 8 CSS Isolation)
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    --primary-purple: #7c3aed;
    --deep-purple: #5b21b6;
    --dark-purple: #2e1065;
    --accent-rose: #e879f9;
    --accent-coral: #fb7185;
    --accent-gold: #fbbf24;
    --text-light: #ffffff;
    --text-gray: #d1d5db;
    --text-muted: #9ca3af;
    --background-dark: #0f0f0f;
    --background-medium: #1a1a1a;
    --background-light: #262626;
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.logo span {
    color: #9d22ae;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links a.nav-active {
    border-bottom: 2px solid #9d22ae;
    padding-bottom: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #9d22ae;
}

.mobile-menu a.nav-active {
    text-decoration: underline;
    text-decoration-color: #9d22ae;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* ============================================
   HERO SECTION (shared base — no background)
   Page-specific hero styles are in each page's scoped CSS.
   ============================================ */

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

/* Keep button text readable regardless of :visited link state
   (fixes purple-on-purple after a link button's target has been visited) */
.btn-primary:link, .btn-primary:visited,
.btn-secondary:link, .btn-secondary:visited,
.cta-button:link, .cta-button:visited { color: #fff; }
.cta-section .btn-secondary:link, .cta-section .btn-secondary:visited { color: #9d22ae; }

.btn-secondary {
    background: transparent;
    padding: 1rem 2.5rem;
    border: 2px solid #9d22ae;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.btn-secondary:hover {
    background: #9d22ae;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.4);
}

.cta-button {
    background: #7d1b8e;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.5);
    background: #c855d9;
    color: white;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   EVENTS SECTION (shared for events pages)
   ============================================ */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.event-card {
    background: var(--background-medium);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.3);
}

.event-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #9d22ae 0%, #7d1b8e 100%);
    position: relative;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--primary-purple);
}

.event-content {
    padding: 2rem;
}

.event-content h3,
.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-button {
    display: block;
    text-align: center;
    background: #9d22ae;
    padding: 0.8rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.event-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.5);
    background: #7d1b8e;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: rgba(26, 26, 26, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: #9d22ae;
    color: white;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6d9f5;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--background-medium);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
    color: var(--primary-purple);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-light);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: #231934;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 2rem 2rem 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-section .btn-secondary {
    background: white;
    color: #9d22ae;
    border: none;
    position: relative;
    z-index: 1;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--background-medium);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section.company-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.company-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info h3,
.contact-info h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
}

.contact-info ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info ul li a:hover {
    color: var(--primary-purple);
}

.footer-section.quick-links {
    display: flex;
    flex-direction: column;
}

.footer-section.quick-links ul {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem 2.5rem;
    list-style: none;
    justify-content: start;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #9d22ae;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer Form Inputs */
.footer-input {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 0.95rem;
    width: 100%;
}

.footer-select {
    flex: 1;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 0.95rem;
}

#nl-age {
    font-size: 0.95rem;
    -moz-appearance: textfield;
}

#nl-age::-webkit-outer-spin-button,
#nl-age::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.footer-btn {
    padding: 0.8rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

/* ============================================
   FORM STYLES (shared across contact, login, etc.)
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #e6d9f5;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #9d22ae;
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-about h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    #testimonials {
        display: none;
    }

    section {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section.quick-links ul {
        grid-template-columns: auto auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-header h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   SHARED ABOUT / NICHE PAGE LAYOUT
   Used by About, and all niche SEO landing pages.
   ============================================ */

.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)),
                url('/images/speeddating3.jpg') center/cover;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-about h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; color: #e6d9f5; }
.hero-about p { font-size: 1.3rem; color: var(--text-gray); }

.about-page-content { padding: 4rem 2rem; }

.content-wrapper-two-col {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.about-main-content { max-width: 800px; }

.about-intro { text-align: left; margin-bottom: 4rem; }
.about-intro h2 { font-size: 2.5rem; color: #e6d9f5; margin-bottom: 1.5rem; }
.about-intro p { font-size: 1.2rem; color: var(--text-gray); line-height: 1.8; }

.about-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}
.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}
.highlight-section {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(157, 34, 174, 0.3);
}
.about-icon { font-size: 3rem; margin-bottom: 1rem; color: #9d22ae; }
.about-icon svg { width: 40px; height: 40px; }
.about-section h3 { font-size: 1.8rem; color: #e6d9f5; margin-bottom: 1rem; }
.about-section p { font-size: 1.1rem; color: var(--text-gray); line-height: 1.8; }
.about-section a { color: #9d22ae; text-decoration: none; font-weight: 600; }
.about-section a:hover { text-decoration: underline; }

.about-sidebar { position: sticky; top: 100px; }

.sidebar-card {
    background: var(--background-medium);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}
.sidebar-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.2);
}
.sidebar-card h3 { font-size: 1.3rem; color: #9d22ae; margin-bottom: 1.5rem; text-align: center; }
.sidebar-card h4 { color: var(--primary-purple); margin-bottom: 0.5rem; }
.sidebar-card p { color: var(--text-gray); font-style: italic; }
.sidebar-card.highlight-card {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(157, 34, 174, 0.3);
}
.sidebar-link {
    display: inline-block;
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.sidebar-link:hover { color: #b12ec6; }

/* Coverage/highlights list in sidebar */
.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.coverage-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.coverage-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #9d22ae;
    border-radius: 50%;
    flex-shrink: 0;
}
.coverage-list li:last-child { border-bottom: none; }

/* Sidebar stats */
.sidebar-stat {
    text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #9d22ae;
    line-height: 1.2;
}
.sidebar-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

/* Location page sidebar lists */
.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location-list li { margin-bottom: 0.6rem; }
.location-list li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}
.location-list li a:hover {
    color: #c855d9;
    background: rgba(157, 34, 174, 0.15);
    padding-left: 1.1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}
.benefits-list li {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 0.3rem;
}

/* Location page inline CTA button */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

@media (max-width: 768px) {
    .hero-about h1 { font-size: 2rem; }
    .hero-about p { font-size: 1.1rem; }
    .content-wrapper-two-col { grid-template-columns: 1fr; gap: 2rem; }
    .about-sidebar { position: static; }
    .about-main-content { max-width: 100%; }
    .about-intro h2 { font-size: 1.8rem; }
    .about-section { padding: 1.5rem; }
    .about-section h3 { font-size: 1.4rem; }
}

/* ============================================
   PAGE-SPECIFIC OVERRIDES (via body class)
   ============================================ */

/* Events page: minimal footer (copyright only) */
.events-page footer { padding-top: 0; }
.events-page footer .footer-content { display: none; }
.events-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Event details page: minimal footer (copyright only) */
.event-details-page footer { padding-top: 0; }
.event-details-page footer .footer-content { display: none; }
.event-details-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Contact page: minimal footer (copyright only) */
.contact-page footer { padding-top: 0; }
.contact-page footer .footer-content { display: none; }
.contact-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Login page: minimal footer (copyright only) */
.login-page footer { padding-top: 0; }
.login-page footer .footer-content { display: none; }
.login-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Why Choose Us page: minimal footer (copyright only) */
.whychooseus-page footer { padding-top: 0; }
.whychooseus-page footer .footer-content { display: none; }
.whychooseus-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Testimonials page: minimal footer (copyright only) */
.testimonials-page footer { padding-top: 0; }
.testimonials-page footer .footer-content { display: none; }
.testimonials-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Legal page: minimal footer (copyright only) */
.legal-page footer { padding-top: 0; }
.legal-page footer .footer-content { display: none; }
.legal-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* What is Speed Dating page: minimal footer (copyright only) */
.whatissd-page footer { padding-top: 0; }
.whatissd-page footer .footer-content { display: none; }
.whatissd-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Privacy page: minimal footer (copyright only) */
.privacy-page footer { padding-top: 0; }
.privacy-page footer .footer-content { display: none; }
.privacy-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Careers page: minimal footer (copyright only) */
.careers-page footer { padding-top: 0; }
.careers-page footer .footer-content { display: none; }
.careers-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* FAQ page: minimal footer (copyright only) */
.faq-page footer { padding-top: 0; }
.faq-page footer .footer-content { display: none; }
.faq-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Videos page: minimal footer (copyright only) */
.videos-page footer { padding-top: 0; }
.videos-page footer .footer-content { display: none; }
.videos-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Tell a Friend page: minimal footer (copyright only) */
.tellafriend-page footer { padding-top: 0; }
.tellafriend-page footer .footer-content { display: none; }
.tellafriend-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Venues page: minimal footer (copyright only) */
.venues-page footer { padding-top: 0; }
.venues-page footer .footer-content { display: none; }
.venues-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Sitemap page: minimal footer (copyright only) */
.sitemap-page footer { padding-top: 0; }
.sitemap-page footer .footer-content { display: none; }
.sitemap-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* NYC Speed Dating page: minimal footer (copyright only) */
.nyc-speeddating-page footer { padding-top: 0; }
.nyc-speeddating-page footer .footer-content { display: none; }
.nyc-speeddating-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Gift page: minimal footer (copyright only) */
.gift-page footer { padding-top: 0; }
.gift-page footer .footer-content { display: none; }
.gift-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Gift Register page: minimal footer (copyright only) */
.gift-register-page footer { padding-top: 0; }
.gift-register-page footer .footer-content { display: none; }
.gift-register-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Promo Codes page: minimal footer (copyright only) */
.promo-codes-page footer { padding-top: 0; }
.promo-codes-page footer .footer-content { display: none; }
.promo-codes-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Blog page: minimal footer (copyright only) */
.blog-page footer { padding-top: 0; }
.blog-page footer .footer-content { display: none; }
.blog-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Blog article page: minimal footer (copyright only) */
.blog-article-page footer { padding-top: 0; }
.blog-article-page footer .footer-content { display: none; }
.blog-article-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}

/* Niche speed dating pages: minimal footer (copyright only) */
.niche-dating-page footer { padding-top: 0; }
.niche-dating-page footer .footer-content { display: none; }
.niche-dating-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.register-view-page footer { padding-top: 0; }
.register-view-page footer .footer-content { display: none; }
.register-view-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.waitinglist-page footer { padding-top: 0; }
.waitinglist-page footer .footer-content { display: none; }
.waitinglist-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.mailing-list-page footer { padding-top: 0; }
.mailing-list-page footer .footer-content { display: none; }
.mailing-list-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.register-session-page footer { padding-top: 0; }
.register-session-page footer .footer-content { display: none; }
.register-session-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.error-page footer { padding-top: 0; }
.error-page footer .footer-content { display: none; }
.error-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.not-found-page footer { padding-top: 0; }
.not-found-page footer .footer-content { display: none; }
.not-found-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
.wl-register-session-page footer { padding-top: 0; }
.wl-register-session-page footer .footer-content { display: none; }
.wl-register-session-page footer .footer-bottom {
    padding: 20px 0;
    margin-top: 0;
    border-top: none;
}
