@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



:root {
            --primary-navy: #1a2332;
            --accent-coral: #044a88;
            --soft-sage: #a8c69f;
            --warm-cream: #faf8f3;
            --text-charcoal: #2d3748;
            --text-muted: #718096;
            --border-light: #e2e8f0;
            --shadow-soft: 0 4px 20px rgba(26, 35, 50, 0.08);
            --shadow-hover: 0 8px 32px rgba(26, 35, 50, 0.12);
            --success-green: #38a169;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			font-family: "Poppins", sans-serif !important;
        }

        body {
/*             font-family: 'Inter', sans-serif; */
			 
            line-height: 1.6;
            color: var(--text-charcoal);
            background: var(--warm-cream);
        }
		/* Header - Clean and Modern */
        .header {
            background: white;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-top {
            background: var(--primary-navy);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .user-nav a {
            color: white;
            text-decoration: none;
            margin-left: 1.5rem;
            opacity: 0.9;
            transition: opacity 0.2s;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .user-nav a:hover {
            opacity: 1;
        }

        .header-main {
            padding: 1rem 0;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            height: 60px;
        }
		
		.site-nav {
			position: relative;
		}

        .main-nav {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .main-nav a {
            text-decoration: none;
            color: var(--text-charcoal);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .main-nav a:hover {
            color: var(--accent-coral);
        }
		
		.menu-toggle {
			display: none;
		}
		

input#gform_submit_button_6 {
	width: 100%;
	background: #38a169;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
	 border-radius:50px;
}
		
		/* Hide submenu by default */

			

			.main-nav ul ul,
			.sub-menu {
				display: none;
				position: absolute;
				z-index: 999;
				list-style: unset;
    			padding: 10px 12px;
				line-height:33px;
			}

			/* Show on hover */
			.main-nav ul li:hover > ul,
			.menu-item-has-children:hover > .sub-menu {
				display: block;
			}

			/* Optional: smooth dropdown */
			.sub-menu {
				background: #fff;
				min-width: 200px;
				border-radius:0px 0px 12px 12px;
			}

        .search-box {
            position: relative;
        }

        .search-box input {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-light);
            border-radius: 50px;
            font-size: 0.9rem;
            width: 280px;
            transition: all 0.2s;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--accent-coral);
            box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.1);
        }

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

        /* Hero Section - Clean and Compelling */
        .hero {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #2a3441 100%);
            color: white;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 40%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(168, 198, 159, 0.15) 0%, transparent 70%);
        }

        .hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            background: var(--accent-coral);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
/*             letter-spacing: -0.02em; */
        }
		
        .hero p {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
		
		 .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
		.cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
		.btn {
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
		  .btn-primary {
            background: var(--accent-coral);
            color: white;
            font-size: 1.1rem;
            padding: 1.3rem 3rem;
        }

        .btn-primary:hover {
            background: #14538a;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
		.btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white !important;
        }
		  .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
		.btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }
		.btn-outline:hover {
            background: white;
            color: var(--primary-navy);
        }
		 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
		.value-prop {
            opacity: 0.8;
            font-size: 1rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 0;
            background: white;
        }
		
		.section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-family: 'Fraunces', serif;
            font-size: 3rem;
            font-weight: 400;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
		.benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }
		.benefit-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--border-light);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .benefit-icon.discount {
            background: linear-gradient(135deg, var(--soft-sage), #8bb687);
        }

        .benefit-icon.forever {
            background: linear-gradient(135deg, #ffd700, #ffed4a);
        }

        .benefit-icon.library {
            background: linear-gradient(135deg, var(--accent-coral), #ff8a75);
        }

        .benefit-icon.early {
            background: linear-gradient(135deg, #4299e1, #63b3ed);
        }

        .benefit-icon.resurrect {
            background: linear-gradient(135deg, #ed8936, #f6ad55);
        }

        .benefit-icon.cta-icon {
            background: linear-gradient(135deg, var(--accent-coral), #ff8a75);
        }

        .cta-card {
            background: white;
            position: relative;
        }

        .cta-card:hover {
            transform: translateY(-8px);
        }

        .cta-card .btn {
            padding: 0.8rem 1.5rem;
            font-size: 0.95rem;
        }

        .benefit-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-navy);
        }

        .benefit-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: var(--warm-cream);
        }

        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-soft);
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            border: 2px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--accent-coral), var(--soft-sage));
        }

        .pricing-header h3 {
            font-family: 'Fraunces', serif;
            font-size: 2rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .price {
            font-family: 'Fraunces', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .pricing-details {
            text-align: left;
            margin: 2rem 0;
        }

        .pricing-details ul {
            list-style: none;
            padding: 0;
        }

        .pricing-details li {
            padding: 0.75rem 0;
            color: var(--text-muted);
            position: relative;
            padding-left: 1.5rem;
        }

        .pricing-details li::before {
            content: '•';
            color: var(--accent-coral);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            text-align: center;
        }

        .btn-success {
            background: var(--success-green);
            color: white;
            font-size: 1.2rem;
            padding: 1.5rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .btn-success::before {
            content: '✓';
            margin-right: 0.5rem;
            font-weight: bold;
        }

        .btn-success:hover {
            background: #2f855a;
            transform: translateY(-3px);
        }

        .btn-cancel {
            background: #e53e3e;
            color: white;
        }

        .btn-cancel:hover {
            background: #c53030;
        }

        /* Testimonial */
        .testimonial {
            background: var(--primary-navy);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial blockquote {
            font-size: 1.4rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.95;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--accent-coral);
        }
		/* Recently Released Section */
        .recently-released {
            padding: 5rem 0;
            background: white;
        }

        .recently-released-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s;
            margin-bottom: 3rem;
        }

        .recently-released-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .recently-released-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .recently-released-content {
            padding: 2rem;
        }

        .recently-released-content h3 {
            font-family: 'Fraunces', serif;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-navy);
        }

        .recently-released-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        /* Featured Workshops - Clean Grid */
        .featured-workshops {
            padding: 5rem 0;
            background: var(--warm-cream);
        }

        .workshops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .workshop-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s;
        }

        .workshop-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .workshop-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

 		.workshop-card a{
			text-decoration: none;
		}


        .workshop-info {
            padding: 1.5rem;
        }

        .workshop-info h4 {
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--primary-navy);
        }

        .workshop-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .workshop-info small {
            color: var(--accent-coral);
            font-weight: 600;
            font-size: 0.85rem;
        }

        /* Featured Instructors Section */
        .featured-instructors {
            padding: 5rem 0;
            background: white;
        }

        .instructors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .instructor-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s;
            text-align: center;
        }

        .instructor-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .instructor-card img {
            width: 245px;
            height: 245px;
            object-fit: cover;
            margin: 0 auto;
            display: block;
        }

        .instructor-info {
            padding: 1.5rem;
        }

        .instructor-info h4 {
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-navy);
        }

        .instructor-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
		.instructor-info a {
             color: var(--primary-navy);
            font-size: 1.2rem;
			text-decoration: none;
        }
		
		.social-links a {
            width: 40px;
            height: 40px;
           /* background: rgba(255, 255, 255, 0.1);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
		.social-links a:hover {
            transform: translateY(-2px);
			/*background: var(--accent-coral);*/
        }

        .social-links a:hover svg circle:first-child {
            fill: var(--accent-coral);
        }
		
		/* Footer - Same as members page */
        .footer {
            background: var(--primary-navy);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 0;
        }

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

        .footer-section h4 {
            margin-bottom: 1rem;
            font-family: 'Fraunces', serif;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.2s;
        }

		.social-links a {
           
			transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

		.footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

			/* Dashboard Navigation - Modern Top Menu */
        .dashboard-nav {
            background: white;
            padding: 2rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .dashboard-nav-menu {
            display: flex;
            justify-content: center;
            gap: 0;
            background: var(--warm-cream);
            border-radius: 60px;
            padding: 0.5rem;
            box-shadow: var(--shadow-soft);
            max-width: 800px;
            margin: 0 auto;
        }

        .dashboard-nav-item {
            flex: 1;
            text-align: center;
        }

        .dashboard-nav-item a {
            display: block;
            padding: 1rem 1.5rem;
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 50px;
            transition: all 0.3s;
            position: relative;
        }

        .dashboard-nav-item.active a,
        .dashboard-nav-item a:hover {
            background: white;
            color: var(--primary-navy);
            box-shadow: var(--shadow-soft);
            transform: translateY(-2px);
        }
		/* Page Title */
        .page-header {
            padding: 2rem 0 1rem;
        }

        .page-title {
            font-family: 'Fraunces', serif;
            font-size: 2.5rem;
            color: var(--primary-navy);
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Content Areas */
        .dashboard-content {
            padding: 1rem 0 3rem;
        }

        /* My Content - 4 Column Grid */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .workshop-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s;
        }

        .workshop-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .workshop-thumbnail {
            width: 100%;
            height: 140px;
            background: #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .workshop-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .access-status {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background: var(--success-green);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .access-status.expiring {
            background: var(--accent-coral);
        }

        .workshop-info {
            padding: 1rem;
        }

        .workshop-title {
            font-family: 'Fraunces', serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .workshop-meta {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }

        .workshop-instructor {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 0.2rem;
        }

        .access-date {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

/*         .btn {
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            display: inline-block;
            text-align: center;
            width: 100%;
        } */


        .btn-primary {
            background: var(--accent-coral);
            color: white;
        }

        .btn-primary:hover {
            background: #e55a4a;
            transform: translateY(-1px);
        }

        /* Profile Form */
        .profile-form {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-soft);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-section {
            margin-bottom: 2rem;
        }

        .form-section h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.3rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-light);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-charcoal);
        }

        .form-input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-coral);
            box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.1);
        }

        .btn-update {
            background: var(--success-green);
            color: white;
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .btn-update:hover {
            background: #2f855a;
        }

        /* Tables for Receipts/Certificates */
        .data-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            margin-top: 2rem;
        }

        .data-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .data-table th {
            background: var(--primary-navy);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-light);
        }

        .data-table tr:hover {
            background: var(--warm-cream);
        }

        .data-table a {
            color: var(--accent-coral);
            text-decoration: none;
            font-weight: 500;
        }

        .data-table a:hover {
            text-decoration: underline;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-muted);
        }

        .empty-state-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .empty-state h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-charcoal);
        }

        /* Search Bar */
        .content-search {
            margin-bottom: 2rem;
            text-align: center;
        }

        .content-search input {
            padding: 0.8rem 1.2rem;
            border: 1px solid var(--border-light);
            border-radius: 50px;
            font-size: 0.95rem;
            width: 100%;
            max-width: 400px;
            transition: all 0.2s;
        }

        .content-search input:focus {
            outline: none;
            border-color: var(--accent-coral);
            box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.1);
        }


		
		/* Mobile hamburger menu */
        .mobile-menu-toggle {
            display: none;
            background: var(--primary-navy);
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            margin: 0 auto;
        }

        .dashboard-nav-menu.mobile-hidden {
            display: none;
        }
		
		/* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-in:nth-child(1) { animation-delay: 0.1s; }
        .fade-in:nth-child(2) { animation-delay: 0.2s; }
        .fade-in:nth-child(3) { animation-delay: 0.3s; }
        .fade-in:nth-child(4) { animation-delay: 0.4s; }
        .fade-in:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
		 @media (max-width: 480px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
		
        @media (max-width: 768px) {
			
/* 			.search-box {
            display: none;
        } */
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
			.cta-group {
                flex-direction: column;
                align-items: center;
            }			            
			.main-nav {
				display: none;
				flex-direction: column;
				background: #fff;
				position: absolute;
				top: 50px;
				left: 0;
				width: 100%;
				padding: 15px 0;
				box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			}

			.main-nav.active {
				display: flex;
			}

			.menu-toggle {
				display: block;
			}
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
			
			.search-box input {           
            width: 100%;            
        	}
			
			.mobile-menu-toggle {
                display: block;
            }

            .dashboard-nav-menu {
                display: none;
                flex-direction: column;
                margin-top: 1rem;
                padding: 1rem;
                gap: 0.5rem;
            }

            .dashboard-nav-menu.show {
                display: flex;
            }

            .dashboard-nav-item {
                flex: none;
            }

            .dashboard-nav-item a {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
                border-radius: 8px;
            }

            .content-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .profile-form {
                padding: 1.5rem;
                margin: 0 1rem;
            }

            .data-table {
                overflow-x: auto;
            }

            .page-header {
                padding: 1.5rem 0 1rem;
            }

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




/* Button hover */
.btn {
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}


