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

@font-face {
  font-family: 'BebasNeue';
  src: url('/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  /* font-display: swap; */
}

body {
    background: linear-gradient(to bottom, #562039, #ffffff);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "BebasNeue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333;
}

button, input, textarea {
    font-family: inherit; /* This makes buttons use the body font */
}

p, label {
    font-family: Arial, sans-serif;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-links a:hover {
    color: #7B2E52;
}

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

.hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.hero-logo {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 2.2em;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1em;
    color: rgba(255,255,255,0.9);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.5;
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.user-welcome {
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.welcome-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    /* text-shadow: 0 2px 10px rgba(0,0,0,0.3); */
    color: #562039;
}

.welcome-header {
    margin-bottom: 30px;
}

.welcome-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #562039;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.welcome-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
    /* font-weight: 400;
    line-height: 1.5; */
    /* max-width: 500px; */
    margin-left: auto;
    margin-right: auto;
}

.welcome-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.dot-1 { background: #2BA6A0; }
.dot-2 { background: #562039; opacity: 0.7; }
.dot-3 { background: #2BA6A0; opacity: 0.5; }

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2BA6A0, #562039);
    margin: 0 auto;
    border-radius: 2px;
}

/* Hover effects */
/* .user-welcome:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(86, 32, 57, 0.15);
    transition: all 0.3s ease;
}

.user-welcome:hover .user-avatar {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} */

/* Specific elements that need more spacing */
.rsvp-status-corner,
.filter-btn,
.action-btn,
.rsvp-date,
.meta-item,
.info-text,
.venue-description,
.event-rsvp-status {
    letter-spacing: 0.05em; /* Slightly more spacing for smaller text */
}

/* Buttons and interactive elements */
.filter-btn,
.action-btn {
    letter-spacing: 0.05em; /* Even more for buttons */
    font-weight: 600; /* Combine with bold for better readability */
}

/* Status badges and labels */
.rsvp-status-corner,
.event-rsvp-status {
    letter-spacing: 0.08em; /* Maximum for small status text */
    text-transform: uppercase; /* Combine with uppercase for premium feel */
}

/* Small meta text */
.meta-item,
.info-text,
.rsvp-date {
    letter-spacing: 0.025em;
}

.error-state {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #562039;
    margin: 20px 0;
}

.retry-btn {
    color: #7B2E52;
    border: #7B2E52 2px solid;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 15px;
}

.footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    text-align: center;
    color: #666;
    margin-top: 60px;
    font-size: 0.9em;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    .container {
        padding: 60px 30px;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
        max-width: 600px;
    }
    
    .content-card {
        padding: 40px 35px;
        border-radius: 18px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 60px 40px;
    }
    
    .hero-title {
        font-size: 3.5em;
    }
    
}

/* Small mobile fixes */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .logo {
        height: 30px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .content-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
}
