/* Animasi Pokemon di Background */
.pokemon-bg-anim {
    position: fixed;
    width: 80px;
    height: 80px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    animation: float-bg-pokemon 3s ease-in-out infinite alternate;
}
@keyframes float-bg-pokemon {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-24px) scale(1.08); }
}
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gorie', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Background */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: center;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Gorie', Arial, sans-serif;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.brand-text {
    color: #ffffff;
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 700;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-family: 'Gorie', Arial, sans-serif;
}

.nav-link:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

/* Social Links in Navigation */
.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #007bff;
    transform: scale(1.2);
    text-decoration: none;
}

.social-link.twitter:hover {
    color: #1da1f2;
}

.social-link.dexscreener:hover {
    color: #00d4aa;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    color: rgb(10, 10, 10);
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Gorie', Arial, sans-serif;
    letter-spacing: 2px;
    max-width: 100%;
    height: auto;
    width: auto;
}

.hero-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-title.img-fluid {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 200px;
}

/* Mobile responsive for hero title image */
@media (max-width: 768px) {
    .hero-title.img-fluid {
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-title.img-fluid {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title.img-fluid {
        max-height: 100px;
    }
}

@media (max-width: 400px) {
    .hero-title.img-fluid {
        max-height: 80px;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 500;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    position: relative;
    z-index: 1;
}

section h2 {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 700;
}

section p {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

#about {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    color: #333;
}

#gallery {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 500px;
    height: 500px;
    margin: 0 auto 30px auto;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    transition: all 0.3s ease;
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Gallery Grid */
#gallery .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

#gallery .col-md-4 {
    flex: 0 0 auto;
    width: 520px;
    max-width: 520px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

/* Responsive for smaller screens only */
@media (max-width: 1600px) {
    #gallery .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 1200px) {
    #gallery .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    #gallery .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Keep 500x500 on all screen sizes */
@media (max-width: 576px) {
    .gallery-item {
        width: 500px;
        height: 500px;
    }
    
    .gallery-item img {
        width: 500px;
        height: 500px;
    }
    
    #gallery .container {
        max-width: 520px;
        overflow-x: auto;
    }
}

/* Contact Section */
#contact {
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
}

#contact h2, #contact h4 {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 700;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(8, 8, 8);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Gorie', Arial, sans-serif;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #007bff;
    color: rgb(19, 11, 11);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form button {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 500;
}

.social-links-large {
    display: flex;
    flex-direction: column;
}

.social-link-large {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

.social-link-large:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transform: translateX(10px);
}

.social-link-large i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.social-link-large.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
}

.social-link-large.dexscreener:hover {
    background: rgba(0, 212, 170, 0.2);
}

/* Footer */
footer {
    background: rgba(23, 27, 31, 0.95);
    backdrop-filter: blur(10px);
    color: white;
}

footer p {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

.bg-darker {
    background: rgba(23, 27, 31, 0.95) !important;
}

.footer-social {
    margin-top: 15px;
}

.footer-social-link {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #007bff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Modal */
.modal-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
}

.modal-header {
    border: none;
    padding: 20px 20px 0 20px;
}

.modal-body {
    padding: 20px;
}

#modalImage {
    border-radius: 10px;
    max-height: 70vh;
    object-fit: contain;
}

/* Typography Classes */
.gorie-light {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 300;
}

.gorie-regular {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

.gorie-medium {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 500;
}

.gorie-bold {
    font-family: 'Gorie', Arial, sans-serif;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        max-width: 95%;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        height: 70px;
    }
    
    .social-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        max-width: 100%;
        letter-spacing: 0px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .gallery-item {
        width: 500px;
        height: 500px;
    }
    
    .gallery-item img {
        width: 500px;
        height: 500px;
    }
    
    #gallery .container-fluid {
        max-width: 520px;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-logo {
        height: 50px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-logo {
        height: 45px;
    }
}

/* Pokeball Background Animation */
.bg-pokeball {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pokeball {
  position: absolute;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 40px 40px, #fff 40px, #e74c3c 40px, #e74c3c 50px, #fff 50px);
  border-radius: 50%;
  border: 4px solid #333;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.18;
  animation: float-pokeball 4s ease-in-out infinite;
  transition: all 0.3s ease;
}
.pokeball::before {
  content: '';
  position: absolute;
  top: 36px; left: 0;
  width: 80px; height: 8px;
  background: #333;
}
.pokeball::after {
  content: '';
  position: absolute;
  top: 28px; left: 28px;
  width: 24px; height: 24px;
  background: #fff;
  border: 4px solid #333;
  border-radius: 50%;
  z-index: 2;
}
@keyframes float-pokeball {
  0% { 
    transform: translateY(0) scale(1) rotate(0deg); 
    opacity: 0.15;
  }
  25% { 
    transform: translateY(-15px) scale(1.05) rotate(90deg); 
    opacity: 0.25;
  }
  50% { 
    transform: translateY(-22px) scale(1.08) rotate(180deg); 
    opacity: 0.20;
  }
  75% { 
    transform: translateY(-15px) scale(1.05) rotate(270deg); 
    opacity: 0.25;
  }
  100% { 
    transform: translateY(0) scale(1) rotate(360deg); 
    opacity: 0.15;
  }
}