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

body {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02rem;
    color: #101820;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "playfair-display", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.0169rem;
}

h2 {
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
}

h3 {
    font-size: 1.6875rem;
    line-height: 2.025rem;
    letter-spacing: 0.0169rem;
}

p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e9eff3;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo a:hover {
    opacity: 0.7;
}

.logo-svg {
    height: 32px;
    width: auto;
    max-width: 200px;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    text-decoration: none;
    color: #101820;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: color 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 0;
    justify-content: center;
}

.nav-dropdown-toggle:hover {
    color: #666;
}

.nav-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e9eff3;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

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

.nav-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #101820;
    text-decoration: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #666;
}

.nav-dropdown-item.active {
    background-color: #e9eff3;
    color: #101820;
    font-weight: 500;
}

.nav-link {
    text-decoration: none;
    color: #101820;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link.active {
    color: #101820;
    font-weight: 500;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #101820;
    border-radius: 1px;
}

.nav-btn {
    background: #101820;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-btn:hover {
    background: #2a2f36;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 96px 0 64px;
    background: #fff;
    color: #101820;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #101820;
}

.hero-subtitle {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.02rem;
    margin-bottom: 16px;
    color: #101820;
}

.hero-subtitle-2 {
    font-size: 1.3rem;
    font-family: "playfair-display", serif !important;
    color: #666
}

.hero-description {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.02rem;
    margin-bottom: 32px;
    color: #666;
}

.cta-btn {
    background: #101820;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    background: #2a2f36;
    transform: translateY(-1px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    width: 320px;
    height: auto;
    max-width: 100%;
    color: #101820;
}

@media (max-width: 768px) {
    .hero-badge {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        width: 240px;
    }
}

/* Supporters Section */
.supporters {
    padding: 64px 0;
    background: #e9eff3;
}

.supporters h2 {
    text-align: center;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
    margin-bottom: 48px;
    color: #101820;
}

/* Supporters Carousel */
.supporters-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.supporters-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}

.supporters-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

.supporter-logo {
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-placeholder {
    width: 180px;
    height: 90px;
    background: #fff;
    border: 1px solid #e9eff3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #f8f9fa;
    color: #333;
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    /* opacity: 0.5; */
    cursor: not-allowed;
    transform: none;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 5px; 
    height: 5px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #666;
    transform: scale(1.2);
}

.dot:hover {
    background: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .supporters-carousel-container {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .supporter-logo {
        min-width: 160px;
    }
    
    .logo-placeholder {
        width: 150px;
        height: 75px;
        font-size: 0.75rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 24, 32, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 32px;
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 10px 40px rgba(16, 24, 32, 0.15);
    border: 1px solid #e9eff3;
}

.close {
    color: #666;
    float: right;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
    transition: color 0.2s ease;
}

.close:hover {
    color: #101820;
}

/* Auth Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 8px;
    color: #101820;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 1.6875rem;
    line-height: 2.025rem;
    letter-spacing: 0.0169rem;
}

.auth-form p {
    text-align: center;
    margin-bottom: 32px;
    color: #666;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.3rem;
    letter-spacing: 0.02rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #101820;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9eff3;
    border-radius: 6px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #101820;
    box-shadow: 0 0 0 3px rgba(16, 24, 32, 0.1);
}

.submit-btn, .auth-submit-btn {
    width: 100%;
    background: #101820;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-btn:hover, .auth-submit-btn:hover {
    background: #2a2f36;
    transform: translateY(-1px);
}

.submit-btn:disabled, .auth-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.switch-form, .auth-switch {
    text-align: center;
    margin-top: 24px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    color: #666;
}

.switch-form a, .auth-switch a {
    color: #101820;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.switch-form a:hover, .auth-switch a:hover {
    color: #2a2f36;
    text-decoration: underline;
}

.auth-switch a {
    color: #101820;
    text-decoration: underline;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: color 0.2s ease;
}

.auth-switch a:hover {
    color: #666;
}

/* Dashboard */
.dashboard {
    padding: 96px 0 64px;
    min-height: 100vh;
    background: #fff;
}

.dashboard-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9eff3;
}

.dashboard-header h1 {
    color: #101820;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
}

.dashboard-welcome {
    color: #666;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    margin-top: 8px;
}

.logout-btn {
    background: #fff;
    color: #101820;
    border: 1px solid #e9eff3;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #e9eff3;
    border-color: #d1d9e0;
}

/* Info Section */
.info-section {
    background: #e9eff3;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #e9eff3;
}

.info-section h2 {
    color: #101820;
    margin-bottom: 16px;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
}

.info-section p {
    color: #666;
    margin-bottom: 32px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.stat-card {
    background: #fff;
    color: #101820;
    padding: 24px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9eff3;
}

.stat-card h3 {
    font-family: "playfair-display", serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: #101820;
}

.stat-card p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.1rem;
    letter-spacing: 0.02rem;
    color: #666;
    margin: 0;
    padding-top: 5px;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #e9eff3;
}

.faq-section h2 {
    color: #101820;
    margin-bottom: 8px;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
}

.faq-intro {
    color: #666;
    margin-bottom: 32px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    font-style: italic;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e9eff3;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #d1d9e0;
}

.faq-question {
    padding: 16px 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #101820;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    margin: 0;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pledge Section */
.pledge-section {
    background: #e9eff3;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e9eff3;
}

.pledge-section h2 {
    color: #101820;
    margin-bottom: 24px;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
}

.pledge-content {
    margin-bottom: 32px;
}

.pledge-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.pledge-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #101820;
    transition: opacity 0.2s ease;
}

.pledge-checkbox input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pledge-checkbox label {
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #101820;
    cursor: pointer;
}

.pledge-description {
    color: #666;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #e9eff3;
    border-top: 2px solid #101820;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    color: #666;
    text-align: center;
}

/* Thank You Section */
.thank-you {
    background: #e1ffea;
    color: #101820;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.thank-you h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.thank-you p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.embed-code {
    margin-bottom: 20px;
}

.embed-code textarea {
    width: 100%;
    padding: 25px;
    border: none;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    margin-bottom: 10px;
    resize: vertical;
    color: #878B8F;
    background-color: #e9eff3;
}

.copy-btn {
    background: #101820;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #2a2f36;
    border-color: #2a2f36;
}

.embed-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.download-btn {
    background: #101820;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #666666;
}

.badge-preview h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.badge-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-placeholder i {
    font-size: 1.5rem;
}


/* Calendar Section */
.calendar-section {
    padding: 80px 0;
    background: #e9eff3;
}

.calendar-section h2 {
    text-align: center;
    color: #101820;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
    margin-bottom: 16px;
}

.calendar-intro {
    text-align: center;
    color: #666;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    margin-bottom: 48px;
}

.calendar-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e9eff3;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calendar-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-form label {
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    color: #101820;
}

.calendar-form input,
.calendar-form select,
.calendar-form textarea {
    padding: 12px 16px;
    border: 1px solid #e9eff3;
    border-radius: 6px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: all 0.2s ease;
    background: #fff;
}

.calendar-form input:focus,
.calendar-form select:focus,
.calendar-form textarea:focus {
    outline: none;
    border-color: #101820;
    box-shadow: 0 0 0 3px rgba(16, 24, 32, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.preset-btn {
    background: #e9eff3;
    color: #101820;
    border: 1px solid #e9eff3;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: all 0.2s ease;
}

.preset-btn:hover {
    background: #d1d9e0;
    border-color: #d1d9e0;
}

.preset-btn.active {
    background: #101820;
    color: #fff;
    border-color: #101820;
}

.generate-btn {
    background: #101820;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.generate-btn:hover {
    background: #2a2f36;
    transform: translateY(-1px);
}

.calendar-result {
    /* background: #e1ffea; */
    color: #101820;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    margin-top: 24px;
}

.calendar-result h3 {
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 1.6875rem;
    line-height: 2.025rem;
    letter-spacing: 0.0169rem;
    margin-bottom: 12px;
}

.calendar-result p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    margin-bottom: 16px;
}

.download-link {
    display: inline-block;
    background: #101820;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: all 0.2s ease;
}

.download-link:hover {
    background: #2a2f36;
    transform: translateY(-1px);
}

.calendar-tips {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e9eff3;
}

.calendar-tips h3 {
    color: #101820;
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 1.6875rem;
    line-height: 2.025rem;
    letter-spacing: 0.0169rem;
    margin-bottom: 16px;
}

.calendar-tips ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-tips li {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.calendar-tips li::before {
    content: "•";
    color: #101820;
    font-weight: 500;
    position: absolute;
    left: 0;
}

/* Out-of-Office Generator Styles */
.generated-message-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #101820;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9eff3;
    margin: 16px 0;
    font-family: "proxima-nova", sans-serif;
    letter-spacing: 0.02rem;
}

.message-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #101820;
    color: #fff;
    padding: 64px 0 24px;
    margin-top: 80px;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: "playfair-display", serif;
    font-weight: 400;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    letter-spacing: 0.0169rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    line-height: 1.35rem;
    letter-spacing: 0.0169rem;
}

.footer-section p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    color: #999;
    margin: 0;
}

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

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e9eff3;
        box-shadow: 0 2px 10px rgba(16, 24, 32, 0.1);
        z-index: 999;
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f8f9fa;
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    .nav-menu .nav-link:last-of-type {
        border-bottom: none;
    }
    
    .nav-menu .nav-btn {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 200px;
    }
    
    .nav-dropdown-item {
        padding: 8px 0 8px 20px;
        border-bottom: none;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .nav-dropdown-item:hover {
        background-color: transparent;
        color: #666;
    }
    
    .nav-dropdown-item.active {
        background-color: transparent;
        color: #101820;
        font-weight: 500;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }



    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .preset-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .info-section,
    .faq-section,
    .pledge-section {
        padding: 30px 20px;
         }
}

/* Countdown Banner */
.countdown-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #101820;;
    color: white;
    padding: 12px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.countdown-banner-hide {
    transform: translateY(-100%);
}

.countdown-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.countdown-text {
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.countdown-text span {
    font-size: 16px;
    font-weight: 700;
    margin-right: 2px;
}

.countdown-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    font-size: 14px;
    opacity: 0.8;
}

.countdown-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Adjust navbar when countdown banner is present */
body:has(.countdown-banner) .navbar {
    top: 44px; /* Approximate banner height */
}

/* Mobile responsiveness for countdown banner */
@media (max-width: 768px) {
    
    .countdown-text {
        font-size: 14px;
    }
    
    .countdown-text span {
        font-size: 16px;
    }
    
    .countdown-close {
        font-size: 12px;
        padding: 6px;
    }
    
    body:has(.countdown-banner) .navbar {
        top: 38px; /* Smaller banner height on mobile */
    }
}

/* Social Proof Widget */
.social-proof-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 350px;
}

.social-proof-widget.show {
    opacity: 1;
    transform: translateX(0);
}

.social-proof-widget.hide {
    opacity: 0;
    transform: translateX(-100%);
}

.social-proof-content {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9eff3;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    animation: slideInBounce 0.6s ease-out;
}

@keyframes slideInBounce {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    60% {
        transform: translateX(10px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.social-proof-close:hover {
    color: #666;
}

.social-proof-icon {
    color: #22c55e;
    font-size: 24px;
    flex-shrink: 0;
}

.social-proof-text {
    flex: 1;
    padding-right: 20px;
}

.social-proof-message {
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 4px;
}

.social-proof-message strong {
    color: #101820;
    font-weight: 600;
}

.social-proof-time {
    font-family: "proxima-nova", sans-serif;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    display: none;
}

/* Mobile responsiveness for social proof widget */
@media (max-width: 768px) {
    .social-proof-widget {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .social-proof-content {
        padding: 14px;
        gap: 10px;
    }
    
    .social-proof-message {
        font-size: 13px;
    }
    
    .social-proof-time {
        font-size: 11px;
    }
    
    .social-proof-icon {
        font-size: 20px;
    }
}

/* Tips Page Styles */
.tips-page {
    min-height: 100vh;
    background: #fff;
    padding: 96px 0 64px;
}

.tips-header {
    text-align: center;
    margin-bottom: 48px;
}

.tips-header h1 {
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
    color: #101820;
    margin-bottom: 16px;
}

.tips-subtitle {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

.tips-description {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #666;
    margin: 0 auto;
}

.tips-content {
    max-width: 1000px;
    margin: 0 auto;
}


.tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.tip-item {
    background: #fff;
    padding: 18px 28px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.2s ease;
}

.tip-item:hover {
    border-color: #d1d9e0;
}

.tip-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #101820;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.tip-content h3 {
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
    color: #101820;
    margin-bottom: 12px;
}

.tip-content p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #666;
    margin: 0;
}

/* Tips CTA Section */
.tips-cta-section {
    padding: 64px 0;
    background: #e9eff3;
}

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

.tips-cta h2 {
    font-family: "playfair-display", serif;
    font-weight: 400;
    font-size: 2.3125rem;
    line-height: 2.775rem;
    letter-spacing: 0.0231rem;
    color: #101820;
    margin-bottom: 16px;
}

.tips-cta p {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    color: #666;
    margin-bottom: 24px;
}

.tips-cta .cta-btn {
    background: #101820;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    display: inline-block;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.tips-cta .cta-btn:hover {
    background: #2a2f36;
    transform: translateY(-1px);
}

/* Mobile responsiveness for tips page */
@media (max-width: 768px) {
    .tips-page {
        padding: 100px 0 60px;
    }
    
    .tips-header h1 {
        font-size: 2rem;
    }
    
    .tip-item {
        padding: 18px 20px;
    }
    
    .tip-item {
        gap: 16px;
    }
    
    .tip-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tips-cta .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
} 