﻿/* ============================================
   SAGUN SAMAROH — styles.css
   Pixel-perfect match to original design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
    --primary: #9b1c1c;
    --primary-hover: #7f1d1d;
    --primary-light: #fef2f2;
    --bg: #f7f3ef;
    --white: #ffffff;
    --text-dark: #111111;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-input: #d1d5db;
    --card-bg: #fdf6f6;
    --shadow-card: 0 8px 32px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
    --radius-card: 20px;
    --radius-input: 10px;
    --radius-btn: 12px;
    --font: 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif !important;
}

html, body {
    height: auto;
    overflow-y: auto;
   
    font-family: var(--font);
    /*    background: radial-gradient(ellipse at 60% 35%, #faf6f1 0%, #f1ebe3 100%);*/

    background: radial-gradient(circle at 25% 35%, #fff1ed 0%, #fdf4f0 35%, #f6eee8 70%, #efe7df 100%);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   APP WRAPPER
   ============================================ */
.app-wrapper {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 40px 20px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.app-header {
    padding: 16px 0 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right:78%;
}

.logo-icon {
  font-size: 26px;
  color: var(--primary);
  font-family: var(--font-display);
  line-height: 1;
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.app-main {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 40px;
    align-items: center;
    flex: 1;
    overflow: visible;
    padding-top: 8px;
}

/* ============================================
   LEFT PANEL
   ============================================ */
.left-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-dark);
  letter-spacing: -0.4px;
}

    .hero-text h1 .accent {
        background: linear-gradient(90deg, #7f1d1d, #f87171);

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }   

.hero-desc {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 400px;
}

/* Feature 2x2 grid */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feat-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 1px;
    
}

.feat-icon--pink   { background:  #ffefeb; }
.feat-icon--red    { background:  #ffefeb; }
.feat-icon--blue   { background: #ffefeb; }
.feat-icon--purple { background:  #ffefeb; }

.feature-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 0.74rem;
  color: var(--text-gray);
  line-height: 1.45;
}

/* Stats */
.stats-row {
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid var(--border);
   
    padding-top: 38px;
    padding-left: 120px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.1;
}

.stat span {
  font-size: 0.72rem;
  color: var(--text-gray);
  display: block;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============================================
   RIGHT PANEL
   ============================================ */
.right-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CARD
   ============================================ */
.card {
    background: var(--card-bg);
    background: #fff8f6;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 24px 24px;
    width: 100%;
    max-width: 390px;
    border: none;
    animation: cardIn 0.28s ease both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hidden {
  display: none !important;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* ============================================
   SOCIAL BUTTONS
   ============================================ */
.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}

.social-btn:hover {
  border-color: #bbb;
  background: #f8f8f8;
}

/* ============================================
   OR DIVIDER
   ============================================ */
.or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 14px;
  font-size: 0.74rem;
  color: var(--text-gray);
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================
   FORM
   ============================================ */
.form-group {
  margin-bottom: 11px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 10px;
  font-size: 13px;
  color: var(--text-gray);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 1;
}

.input-icon-right {
  position: absolute;
  right: 10px;
  font-size: 13px;
  color: var(--text-gray);
  pointer-events: none;
  line-height: 1;
}

.form-input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 32px;
  border: 1.5px solid var(--border-input);
  border-radius: var(--radius-input);
  font-size: 0.83rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fef9f9;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.08);
  background: var(--white);
}

.form-input[readonly] {
  background: #f5f5f5;
  color: var(--text-gray);
  cursor: default;
  border-color: var(--border);
}

.form-input[readonly]:focus {
  box-shadow: none;
  border-color: var(--border);
}

.dob-input {
  padding-right: 34px;
}

/* ============================================
   EMAIL CHIPS
   ============================================ */
.email-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    display: none;
    transition: all 0.3s ease;
}

.chip {
  padding: 3px 10px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.71rem;
  font-family: var(--font);
  background: var(--white);
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.18s;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ============================================
   TERMS
   ============================================ */
.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-gray);
  margin-bottom: 14px;
  cursor: pointer;
  line-height: 1.55;
}

.terms-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   HELPER / ERROR
   ============================================ */
.helper-text {
  font-size: 0.76rem;
  color: var(--text-gray);
  margin-top: 6px;
  line-height: 1.5;
}

.error-msg {
  font-size: 0.76rem;
  color: #dc2626;
  min-height: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ============================================
   PRIMARY BUTTON
   ============================================ */
.btn-primary {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #9b1c1c, #dc2626); /* 🔥 gradient */
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(155, 28, 28, 0.35);
    transition: all 0.25s ease;
}
    .btn-primary:hover {
        background: linear-gradient(90deg, #7f1d1d, #b91c1c);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(155, 28, 28, 0.45);
    }
    .btn-primary:active {
        transform: scale(0.98);
    }

/* ============================================
   OTP BOXES — fixed size, 6 equal columns
   ============================================ */
.otp-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: 100%;
}

.otp-box {
  /* Let grid control width */
  width: 100%;
  min-width: 0;          /* critical: allow shrink in grid */
  height: 48px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font);
  border: 1.5px solid var(--border-input);
  border-radius: var(--radius-input);
  background: #fef9f9;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  padding: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}

.otp-box:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.08);
  background: var(--white);
}

.otp-box.filled {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Remove number spinners */
.otp-box::-webkit-outer-spin-button,
.otp-box::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============================================
   RADIO GROUP
   ============================================ */
.radio-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-dark);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================
   SUCCESS
   ============================================ */
.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 12px 0 4px;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from { transform: scale(0.3); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  html, body {
    overflow: auto;
    height: auto;
  }

  .app-wrapper {
    height: auto;
    overflow: visible;
    padding: 0 20px 32px;
  }

  .app-main {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: visible;
    padding-top: 8px;
  }

  .right-panel {
    order: -1;
  }

  .card {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 1.95rem;
  }
}

@media (max-width: 480px) {
  .app-wrapper {
    padding: 0 14px 24px;
  }

  .card {
    padding: 22px 16px;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .otp-box {
    height: 40px;
    font-size: 1rem;
  }

  .otp-row {
    gap: 6px;
  }

  .feature-list {
    gap: 12px 16px;
  }
}
/* container */
.text-slider {
    height: 60px; /* same as text height */
    overflow: hidden;
    display: inline-block;
}

/* moving list */
.text-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease;
}

    /* each word */
    .text-list span {
        height: 60px;
        display: flex;
        align-items: center;
        background: linear-gradient(90deg, #7f1d1d, #f87171);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }
.app-main {
    position: relative;
    z-index: 1;
}

    .app-main::after {
        content: "";
        position: absolute;
        bottom: 10%;
        left: 5%;
        width: 320px;
        height: 320px;
        background: rgba(255, 180, 150, 0.35);
        filter: blur(120px);
        border-radius: 50%;
        z-index: -1;
    }
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    margin-right: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==============================
   GLOBAL
============================== */
body {
    margin: 0; /* 🔥 gap fix */
    font-family: 'Poppins', sans-serif;
    background: #f6f1ed;
}

/* ==============================
   HEADER WRAPPER
============================== */
.app-header {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-top: 0;
}

/* OUTER PILL */
.header-container {
    width: 95%;
    max-width: 1100px;
    background: #fbf5fb;
    border-radius: 40px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e7e1dc;
}

/* ==============================
   LOGO
============================== */
.custom-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-logo-icon {
    color: #9b1c1c;
    font-size: 20px;
    font-weight: 700;
}

.custom-logo-text {
    color: #9b1c1c;
    font-weight: 600;
    font-size: 14px;
}

/* ==============================
   NAVIGATION
============================== */

/* CENTER PILL */
.nav-wrapper {
    background: #f3f0f3;
    padding: 4px;
    border-radius: 30px;
    border: 1px solid #e2dee2;
}

/* NAV LIST */
.nav {
    display: flex;
    list-style: none;
    gap: 60px;
}

    /* LINK */
    .nav li a {
        display: block;
        padding: 8px 22px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 13px;
        color: #666;
        transition: all 0.25s ease;
    }

    /* ACTIVE TAB */
    .nav li.active a {
        background: #fff;
        color: #000;
        font-weight: 500;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    /* HOVER EFFECT */
    .nav li a:hover {
        background: #fff;
        color: #000;
    }

/* ==============================
   RIGHT SECTION
============================== */
.actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    font-size: 16px;
    cursor: pointer;
}

.profile {
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ==============================
   RESPONSIVE HEADER
============================== */

/* Tablet */
@media (max-width: 992px) {

    .header-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
    }

    .nav {
        gap: 25px; /* reduce spacing */
    }

        .nav li a {
            padding: 6px 14px;
            font-size: 12px;
        }
}

/* Mobile */
@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        border-radius: 20px;
    }

    /* Logo center */
    .custom-logo {
        justify-content: center;
    }

    /* NAV wrapper full width */
    .nav-wrapper {
        width: 100%;
        overflow-x: auto; /* scroll enable */
    }

    .nav {
        width: max-content;
        gap: 15px;
        padding: 0 10px;
    }

        .nav li a {
            padding: 6px 12px;
            font-size: 12px;
            white-space: nowrap;
        }

    /* Right icons */
    .actions {
        justify-content: center;
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .header-container {
        padding: 10px;
    }

    .custom-logo-text {
        font-size: 12px;
    }

    .nav li a {
        padding: 5px 10px;
        font-size: 11px;
    }

    .profile {
        width: 26px;
        height: 26px;
    }

    .icon {
        font-size: 14px;
    }
}

/*===================================home======================*/
:root {
    --bg-main: #f8f6f7;
    --maroon: #a12d3c;
    --card-bg: #ffffff;
    --soft-border: #f0ecee;
    --text-dark: #333333;
}

body {
    background-color: var(--bg-main);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.custom-container {
    max-width: 1100px;
}

/* Welcome Card Container */
.welcome-card {
    background-color: #f3eff1;
    border-radius: 40px;
    border: 1px solid var(--soft-border);
}

/* Banner Styling */
.upcoming-banner {
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.banner-left {
    background-color: #a45c64;
    min-width: 220px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.badge-custom {
    font-size: 0.75rem;
    color: #dc3545;
    background: #fff5f6;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 5px;
}

.btn-maroon {
    background-color: var(--maroon);
    color: white;
    border: none;
}

    .btn-maroon:hover {
        background-color: #8a2432;
        color: white;
    }

/* Icon Boxes */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-pink {
    background-color: #ffeef0;
}

.bg-peach {
    background-color: #fff0f0;
}

.bg-red-soft {
    background-color: #fff0f0;
}

/* Action Cards */
.action-card, .step-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--soft-border);
    transition: transform 0.3s ease;
}

    .action-card:hover {
        transform: translateY(-5px);
        cursor: pointer;
    }

.tiny-text {
    font-size: 0.7rem;
    line-height: 1.4;
}

/* Section Header Line */
.line {
    height: 1px;
    background: #ddd;
}

/* Custom Tabs */
.custom-tabs .nav-link {
    color: #999;
    font-size: 0.85rem;
    padding: 5px 0;
    margin-right: 25px;
    border: none;
    background: transparent;
}

    .custom-tabs .nav-link.active {
        color: var(--maroon);
        border-bottom: 2px solid var(--maroon);
    }

/* Preview Cards */
.preview-card {
    border-radius: 25px;
    overflow: hidden;
    background: white;
}

.card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.btn-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Card Decoration */
.step-number {
    margin-top: 15px;
    color: #ddd;
    font-size: 0.9rem;
}

.dots-decoration {
    position: absolute;
    right: 50px;
    bottom: 20px;
    font-size: 2rem;
    color: #ddd;
    letter-spacing: 5px;
}

@media (max-width: 768px) {
    .banner-left {
        min-height: 150px;
    }

    .welcome-card {
        border-radius: 20px;
    }
}
/* Explore Templates ko link jaisa banao */
.explore-link {
    font-weight: 500;
    color: #1f1f1f;
    text-decoration: none;
}

    .explore-link:hover {
        text-decoration: underline;
    }

/* Button size fix */
.action-buttons .btn {
    font-size: 0.85rem;
}

/* Better alignment */
.action-buttons {
    margin-left: auto;
}


/*===========================================================================/Add Event===============================================*/

body {
    background: #f8f6f7;
    font-family: 'Poppins', sans-serif;
}

/* Wrapper */
.event-wrapper {
    max-width: 520px;
    margin: auto;
    padding: 40px 15px;
}

/* Back */
.back-btn {
/*    position: fixed;*/
    top: 120px;
    left: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
}

    /* Arrow styling */
    .back-btn .arrow {
        font-size: 16px;
    }

    /* Hover effect */
    .back-btn:hover {
        color: #8b1e2d;
        transform: translateX(-3px);
    }

/* Step */
.step {
    color: #b52b3c;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 600;
}

.sub-step {
    font-size: 13px;
    font-weight: 500;
}

/* Progress */
.custom-progress {
    height: 5px;
    border-radius: 10px;
    margin: 12px 0 25px;
    background: #eadede;
}

.progress-bar {
    width: 30%;
    background: #8b1e2d;
    border-radius: 10px;
}

/* Title */
.title-section {
    text-align: center;
    margin-top: 10px;
}

    /* Heading Fix */
    .title-section h2 {
        font-size: 28px;
        font-weight: 700; /* bold */
        letter-spacing: 0.5px; /* spacing */
        color: #222;
        margin-bottom: 10px;
    }

    /* Paragraph Fix */
    .title-section p {
        font-size: 14px;
        color: #7a7a7a;
        max-width: 480px;
        margin: 0 auto; /* center align */
        line-height: 1.6;
    }
/* Cards */
.event-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

    .event-card:hover {
        transform: translateY(-2px);
    }

    .event-card.active {
        border: 2px solid #8b1e2d;
        background: #dfc2cb;
    }

    .event-card .icon {
        font-size: 20px;
    }

    .event-card h5 {
        margin-top: 8px;
        font-weight: 600;
        font-size: 15px;
    }

    .event-card p {
        font-size: 12px;
        color: #777;
    }

/* Form */
.form-section {
    margin-top: 25px;
}

    .form-section label {
        font-size: 12px;
        margin-top: 10px;
        color: #444;
    }

.form-control {
    border-radius: 8px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #e3e3e3;
    font-size: 13px;
}

/* Button */
.btn-main {
    width: 100%;
    margin-top: 25px;
    background: linear-gradient(to right, #8b1e2d, #c72c41);
    color: white;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 30, 45, 0.3);
    transition: 0.3s;
}

    .btn-main:hover {
        opacity: 0.9;
    }

/* Footer */
.footer-text {
    margin-top: 15px;
    font-size: 11px;
    text-align: center;
    color: #999;
}

/* Responsive */
@media (max-width: 576px) {
    .event-wrapper {
        padding: 25px 12px;
    }

    .title-section h2 {
        font-size: 20px;
    }
}