 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #ff6b35;
            --dark: #0a0a0a;
            --light: #f4f4f4;
            --accent: #ffd23f;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(255,107,53,0.3)), 
                        url('/images/r15.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10,10,10,0.8) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 35px; /* adjust as needed */
}

        .hero h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3rem, 10vw, 7rem);
            letter-spacing: 8px;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(255,107,53,0.5);
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero h2 {
            font-family: 'cursive', cursive;
            font-size: clamp(2 rem, 5vw, 4rem);
            letter-spacing: 6px;
            margin-bottom: .5rem;
            background: rgba(240, 221, 221, 0.5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: rgba(245, 232, 232, 0.5);
            background-clip: text;
        }
        
        .hero p {
            font-family: 'cursive', cursive;
            font-size: clamp(2 rem, 5vw, 4rem);
            letter-spacing: 6px;
            margin-bottom: .5rem;
            background: rgba(240, 221, 221, 0.5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: rgba(245, 232, 232, 0.5);
            background-clip: text;
        }
        
        .cta-btn {
            background: var(--primary);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,107,53,0.3);
            border: 2px solid var(--primary);
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,107,53,0.5);
            background: transparent;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            background: rgba(10,10,10,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        
        .logo {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--primary);
            letter-spacing: 3px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background: var(--light);
            transition: all 0.3s;
        }
        
        /* Info Section */
        .info-section {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary);
            letter-spacing: 4px;
        }
        
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .card {
            background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(10,10,10,0.9));
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,107,53,0.2);
            position: relative;
            overflow: hidden;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,107,53,0.2), transparent);
            transition: left 0.5s;
        }
        
        .card:hover::before {
            left: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255,107,53,0.3);
            border-color: var(--primary);
        }
        
        .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .card h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent);
            letter-spacing: 2px;
        }
        
        .card p {
            line-height: 1.8;
            color: rgba(244,244,244,0.8);
        }
        
        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.15);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        /* Events */
        .events {
            background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(10,10,10,0.95));
            padding: 100px 50px;
        }
        
        .event-card {
            background: rgba(255,255,255,0.05);
            border-left: 5px solid var(--primary);
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .event-card:hover {
            background: rgba(255,107,53,0.1);
            transform: translateX(10px);
        }
        
        .event-date {
            font-family: 'Bebas Neue', cursive;
            font-size: 2.5rem;
            color: var(--accent);
            text-align: center;
            min-width: 120px;
        }
        
        .event-date small {
            display: block;
            font-size: 0.9rem;
            color: rgba(244,244,244,0.6);
            font-family: 'Montserrat', sans-serif;
            margin-top: 5px;
        }
        
        .event-info {
            flex: 1;
        }
        
        .event-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 2px;
        }
        
        .event-info > p {
            color: rgba(244,244,244,0.9);
            margin-bottom: 10px;
        }
        
        .event-details {
            display: flex;
            gap: 20px;
            margin: 10px 0;
            flex-wrap: wrap;
        }
        
        .event-detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(244,244,244,0.8);
            font-size: 0.9rem;
        }
        
        .event-detail-item i {
            color: var(--primary);
        }
        
        .event-location {
            color: rgba(244,244,244,0.7);
            font-size: 0.9rem;
            margin-top: 8px;
        }
        
        .event-join-btn {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,107,53,0.3);
            font-size: 0.95rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .event-join-btn:hover {
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,107,53,0.5);
        }
        
        .no-events {
            text-align: center;
            padding: 60px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            border: 2px dashed rgba(255,107,53,0.3);
        }
        
        .no-events i {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        .no-events h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        
        .no-events p {
            color: rgba(244,244,244,0.7);
            font-size: 1.1rem;
        }
        
        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
        }
        
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .modal-content {
            background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(10,10,10,0.95));
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            position: relative;
            border: 2px solid var(--primary);
            animation: slideUp 0.4s ease;
            text-align: center;
            margin: auto;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: var(--light);
            cursor: pointer;
            transition: all 0.3s;
            background: none;
            border: none;
            line-height: 1;
        }
        
        .close-modal:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .modal-content h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: 3px;
        }
        
        .modal-content p {
            color: rgba(244,244,244,0.8);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .qr-container {
            background: white;
            padding: 10px;
            border-radius: 15px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(255,107,53,0.3);
        }
        
        .qr-container img {
            width: 200px;
            height: 200px;
            display: block;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: rgba(244,244,244,0.5);
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255,107,53,0.3);
        }
        
        .divider span {
            padding: 0 15px;
            font-weight: 600;
        }
        
        .join-link {
            display: block;
            background: var(--primary);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255,107,53,0.3);
            font-size: 1rem;
        }
        
        .join-link:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,210,63,0.4);
        }
        
        /* Registration Form Styles */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,107,53,0.3);
            border-radius: 10px;
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255,107,53,0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        .form-group select {
            cursor: pointer;
        }
        .form-group select option {
    background: var(--dark);
    color: var(--light);
    padding: 10px;
}
            
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(244,244,244,0.4);
        }

        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255,107,53,0.3);
            font-family: 'Montserrat', sans-serif;
        }
        
        .submit-btn:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,210,63,0.4);
        }
        
        .submit-btn:disabled {
            background: rgba(255,107,53,0.5);
            cursor: not-allowed;
            transform: none;
        }
        
        .form-success {
            background: rgba(33, 81, 34, 0.2);
            border: 2px solid #4CAF50;
            color: #4CAF50;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
        }
        
        .form-error {
            background: rgba(244,67,54,0.2);
            border: 2px solid #f44336;
            color: #f44336;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Footer */
        footer {
            background: rgba(10,10,10,0.98);
            padding: 50px;
            text-align: center;
            border-top: 1px solid rgba(255,107,53,0.3);
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .social-links a {
            color: var(--light);
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary);
            transform: scale(1.2);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 20px 30px;
            }
            
            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                height: 100vh;
                background: rgba(10,10,10,0.98);
                flex-direction: column;
                padding: 100px 50px;
                transition: right 0.3s;
                width: 70%;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .burger {
                display: flex;
                z-index: 1001;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .info-section, .events {
                padding: 60px 20px;
            }
            
            .section-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
            
            .cards {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }
            
            .card {
                padding: 30px 20px;
            }
            
            .event-card {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }
            
            .event-date {
                min-width: auto;
                font-size: 2rem;
            }
            
            .event-info h3 {
                font-size: 1.3rem;
            }
            
            .event-details {
                justify-content: center;
                flex-direction: column;
                gap: 10px;
            }
            
            .event-detail-item {
                justify-content: center;
            }
            
            .no-events {
                padding: 40px 20px;
            }
            
            .no-events i {
                font-size: 3rem;
            }
            
            .no-events h3 {
                font-size: 1.5rem;
            }
            
            .no-events p {
                font-size: 1rem;
            }
            
            .gallery {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .gallery-item {
                height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }
            
            .hero p {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
            
            .cta-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            
            .nav-links {
                width: 80%;
                padding: 100px 30px;
            }
            
            .card-icon {
                font-size: 2.5rem;
            }
            
            .card h3 {
                font-size: 1.5rem;
            }
            
            .event-date {
                font-size: 1.8rem;
            }
            
            .event-info h3 {
                font-size: 1.2rem;
            }
            
            .event-detail-item {
                font-size: 0.85rem;
            }
            
            footer {
                padding: 40px 20px;
            }
            
            .social-links a {
                font-size: 1.3rem;
            }
            
            .modal-content {
                padding: 30px 20px;
                width: 95%;
            }
            
            .modal-content h2 {
                font-size: 2rem;
            }
            
            .modal-content p {
                font-size: 0.95rem;
            }
            
            .qr-container img {
                width: 180px;
                height: 180px;
            }
            
            .close-modal {
                font-size: 1.8rem;
            }
        }
.memory-card {
  display: flex;
  gap: 20px;
  background: rgba(65, 89, 105, 0.193);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.memory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}
.memory-image {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.memory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 2px solid rgba(218, 139, 110, 0.3);
}

.memory-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: white;
}

.memory-content {
  flex: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.memory-content h3 {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.5rem;
}
.memory-content p {
  flex: 10;
  font: get('Montserrat', sans-serif);
  font-size: 1rem;
  color: rgba(244,244,244,0.8);
  line-height: 1.4;
}


.memory-date {
    font-size: 0.9rem;
    color: rgba(244,244,244,0.6);
    margin-bottom: 15px;
}

.memory-stats {
  display: flex;
  gap: 15px;
  margin: 10px 0;
  font-size: 0.9rem;
  color: rgba(244,244,244,0.8);
}

.view-memory-btn {
  align-self: flex-start;
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.view-memory-btn:hover {
  background: var(--accent);
  color: var(--dark);
}

.memory-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 15px;
  margin-top: 20px;
}

.memory-photos-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform .3s;
}

.memory-photos-grid img:hover {
  transform: scale(1.05);
}
 .memory-image img {
    border-right: none;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  }

  @media (max-width: 768px) {
  .memory-card {
    flex-direction: column;
  }
}