Changed around line 1
+ :root {
+ --primary: #ff4d8d;
+ --secondary: #ff85a2;
+ --dark: #1a1a2e;
+ --light: #f8f8f8;
+ --accent: #ffd166;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 2rem 0;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto;
+ padding: 0 2rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ max-width: 700px;
+ margin: 0 auto 2rem;
+ }
+
+ .primary-button {
+ background: var(--accent);
+ color: var(--dark);
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-block;
+ transition: transform 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ }
+
+ section {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ section h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ color: var(--primary);
+ }
+
+ .image-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .gallery-item {
+ overflow: hidden;
+ border-radius: 8px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .gallery-item:hover {
+ transform: translateY(-5px);
+ }
+
+ .gallery-item img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ display: block;
+ }
+
+ .video-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
+ gap: 2rem;
+ }
+
+ .video-card {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ .video-thumb {
+ position: relative;
+ padding-top: 56.25%;
+ overflow: hidden;
+ }
+
+ .video-thumb img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+
+ .video-card h3 {
+ padding: 1rem;
+ font-size: 1.2rem;
+ }
+
+ .video-card p {
+ padding: 0 1rem 1rem;
+ color: #666;
+ font-size: 0.9rem;
+ }
+
+ .about-content {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ gap: 3rem;
+ }
+
+ .about-content img {
+ flex: 1;
+ min-width: 300px;
+ border-radius: 8px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ .bio {
+ flex: 1;
+ min-width: 300px;
+ }
+
+ .bio p {
+ margin-bottom: 1rem;
+ }
+
+ .join-form {
+ max-width: 500px;
+ margin: 0 auto;
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ text-align: center;
+ }
+
+ .join-form h3 {
+ margin-bottom: 1.5rem;
+ color: var(--primary);
+ }
+
+ .join-form input {
+ width: 100%;
+ padding: 0.8rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ font-size: 1rem;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 2rem 0;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ flex-wrap: wrap;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ .footer-links a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .about-content {
+ flex-direction: column;
+ }
+ }
+
+ @media (max-width: 480px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+ }