* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: white;
    font-family: Helvetica;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background */
.background {
    position: fixed; /* Fix the background in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/bgimage.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.4); /* Dim the background */
    animation: 
        breathe 15s infinite ease-in-out,
        slowZoom 30s infinite ease-in-out;
}


@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Mobile-first tweaks */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 2.5rem;
    }

    .welcome-subtext {
        font-size: 1rem;
    }

    .navdiv {
        flex-direction: row;
        align-items: flex-start;
        height: auto;
        padding: 1px;
    }

    .navdiv img {
        margin-bottom: 10px;
    }

    nav ul {
        padding-left: 0;
    }

    nav li {
        display: inline-block;
        margin-bottom: 10px;
    }

    .content {
        padding: 20px;
    }
}


@keyframes floatZoom {
    0% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        transform: scale(1) translateY(0px);
    }
}


/* Navbar styles */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    font-family: Helvetica;
    padding: 0 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    height: 80px;
    width: 80px;
    object-fit: cover;
    margin-left: 0px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

li {
    list-style: none;
    display: inline-block;
    position: relative;
}

li a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-right: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: inline-block;
}

li a:hover {
    color: grey;
}


li a:hover::after {
    width: 100%;
}

/* Welcome text */
.welcome-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px; /* Account for navbar */
    overflow: hidden;
}


@keyframes slowZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.welcome-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.welcome-text {
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: fadeIn 2s ease-in-out;
    margin-bottom: 20px;
}

.welcome-subtext {
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 0.5s forwards;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* gallery */

.gallery-section {
    padding: 80px 20px;
    background-color: #1d1d1d; /* transparent black */
    backdrop-filter: blur(2px);
    text-align: center;
    border-radius: 16px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.03);
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  

/* Content area */
.content {
    min-height: 50vh;
    padding: 80px 20px 20px;
    background-color: #1d1d1d; /* transparent black */
}

.subcontent {
    padding: 10px 25px;
    padding-left: 5%;
    font-family: arial;
}
.bottom-bar {
    position: fixed;
    bottom: -100px; /* hidden initially */
    left: 50%;
    /* width: 100%; */
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 1);
    padding: 10px 25px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    transition: bottom 0.5s ease;
    z-index: 1001;
    backdrop-filter: blur(6px);
    justify-content: center;
    
}

/* Neon glow effect */
.social-icon {
    width: 30px;
    height: 30px;
    background-size: cover;
    filter: drop-shadow(0 0 0px #fff);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #3d3d3d);
}

/* Specific icons */
.telegram {
    background-image: url('Images/Logos/telegram.png');
}

.twitter {
    background-image: url('Images/Logos/twitter.png');
}

.instagram {
    background-image: url('Images/Logos/instagram.png');
}
