/*-------------------------------------------------- body ---------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.videombg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.videombg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; 
    position: relative;
    min-height: 100vh; 
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/*-----------------------------------------------navigation bar----------------------------------------------------*/
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 1s ease forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar i{
    font-size:20px;
    margin-right:10px;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
    margin: 0;
    padding: 0;
    flex-wrap: wrap; 
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/*---------------------------------------------- home file css---------------------------------------------------- */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    flex-wrap: wrap; 
}

.picfront {
    position: relative;
    width: 100%;
    max-width: 500px; 
    height: auto;
    border-radius: 25px;
    overflow: hidden;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    transition: all 0.5s ease;
    animation: slideLeft 1s ease forwards;
}

.picfront img {
    width: 100%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.picfront:hover {
    transform: scale(1.05) rotate(2deg);
}

.picfront:hover img {
    transform: scale(1.1);
}

@keyframes slideLeft {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.text-content {
    flex: 1;
    min-width: 300px;
    text-align: center; 
}

.text-content h1 {
    font-size: clamp(2.5rem, 8vw, 70px);
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    font-family: 'serif'; 
    animation: slide 1s ease forwards;
}

@keyframes slide {
  from {
    transform: translateX(-100%); 
    opacity: 0;
  }
  to {
    transform: translateX(0); 
    opacity: 1;
  }
}

.paragraph {
    max-width: 600px;
    margin: 0 auto;
    color: gray;
    font-size: 1.3rem;
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%); 
  }
  to {
    transform: translateX(0); 
    opacity: 1;
  }
}

.clickto {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    border-radius: 12px;
    background: gray;
    padding: 5px 10px;
    transition: 0.3s;
    animation: slideUp 1s ease forwards;
}

.clickto:hover {
    background: #00eaff;
    color: white;
    box-shadow: 0 0 15px rgba(0,234,255,0.5);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*-----------------------------------------------about section-----------------------------------------------------*/

.about {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

.hero-content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    flex-wrap: wrap; 
}

.text-content2 {
    flex: 1;
    min-width: 280px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-content2 h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: whitesmoke;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    text-align: center;
}

.paragraph2 {
    color:white;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.mere {
    flex: 1;
    max-width: 380px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(-40px);
}

.mere img {
    width: 400px;
    height: auto;
    object-fit: cover;
}

.cta-button {
    display: block;          
    margin: -5px auto 0;    
    padding: 5px 36px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}


@media (max-width: 768px) {
    .hero-content2 {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .text-content2 {
        align-items: center;
    }

    .text-content2 h1 {
        font-size: 2.2rem;
    }

    .mere {
        max-width: 380px;
    }

    .mere {
        transform: translateY(-20px);
    }
}

/*------------------------------------------ Avocation Section --------------------------------------------------- */
.avocation {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.avocation h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    padding: 10px 0;
    font-family: 'levi', sans-serif
}

@font-face {
    font-family: 'levi';
    src: url(Androgy\ Demo.ttf);
}

.band {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    transition: .3s;
    flex-wrap: wrap; 
    margin-bottom: 40px;
}

.band li {
    position: relative;
    overflow: hidden;
    flex: 0 0 120px;
    height: 150px;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter:blur(10px);  
    box-shadow:0 15px 30px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.band li:hover {
    flex: 0 1 300px;
    height: 380px;
    scale:1.05;
    z-index: 20;
    border-color: #00eaff;
    box-shadow:0 30px 60px rgba(0,0,0,0.6);
}

.band li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.band li,
.band li img{
    transition:0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);  
}

.band li:hover img{
    scale:1.15;
}

.band li .me1{
    position:absolute;
    inset:0;
    background:linear-gradient(
    0deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.7) 30%,
    rgba(0,0,0,0.4) 60%,
    transparent 100%);
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:flex-end;
    padding:25px 20px;
    opacity:0;
    transition:0.3s ease;
}

.band li:hover .me1{
    opacity:1;
}

.me1 h2{
    color:white;
    font-size:28px;
    margin:0 0 8px 0;
    font-weight:700;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing:1px;
}

.me1 p{
    color:#00eaff;
    font-size:16px;
    font-weight:600;
    text-shadow:1px 1px 2px rgba(0,0,0,0.8);
    margin:0;
}

.description {
    max-width: 800px;
    color: white;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    text-align: center;
}

/*-------------------------------------------contact---------------------------------------------*/
.card {
    padding: 30px;
    width: 100%;
    max-width: 1100px;
}
.layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; 
}

.email-box, .form-col, .social-grid {
    flex: 1;
    min-width: 280px; 
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.social-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: black;
    text-align: center;
    transition: 0.3s;
}

/*----------------------------------------- MEDIA QUERIES -----------------------------------------*/

@media (max-width: 768px) {
    .text-content2, .text-content {
        text-align: center;
        align-items: center;
    }
    
    .cta-button {
        margin: 0 auto;
    }

    .band li {
        flex: 0 0 45%; 
        height: 200px;
    }
}
 
/*-----------------------------------------css for hyperlinked img files-------------------------------------------*/
.pic-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    align-items: start; 
}

.tae-box img {
    width: 100%;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.oo-box video {
    width: 85%; 
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.tae-box:hover img, .oo-box:hover video {
    transform: scale(1.05);
}

.img-desc, .oo-desc {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 6px;
    margin-top: 12px;
    width: 90%;
    font-size: 12px;
    font-weight: bold;
    color: #222;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tae-box:hover .img-desc, .oo-box:hover .oo-desc {
    opacity: 1;
}

@media (max-width: 768px) {
    .pic-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .pic-container {
        grid-template-columns: 1fr; 
    }
    .img-desc, .oo-desc { opacity: 1; } 
}

@media (max-width: 600px) {
    .pic-container1 {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
        padding: 10px;
    }

    .navbar ul {
        gap: 10px;
    }
    
    .small-images-row {
        grid-template-columns: 1fr;
    }
}

/*-----------------------------------------css for hyperlinked img files-------------------------------------------*/


/*-----------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------css for hyperlinked video files-----------------------------------------*/
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 120px 20px 40px; 
    max-width: 1200px;
    margin: auto;
}

.oo-box {
    width: 100%;
}

.oo-box video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.6),
        0 0 15px rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.oo-box:hover video {
    transform: scale(1.03);
}

.oo-desc {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    color: black;
    line-height: 1.4;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 768px) {
    .video-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .video-container {
        grid-template-columns: 1fr; 
    }
    .img-desc, .oo-desc { opacity: 1; } 
}

@media (max-width: 600px) {
    .video-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
        padding: 10px;
    }

    .navbar ul {
        gap: 10px;
    }
    
    .small-images-row {
        grid-template-columns: 1fr;
    }
}

.mayday{
    position:absolute;
 
}

.mayday video{
    width:260px;          
    border-radius:12px;   
    border:4px solid white;  
    box-shadow:
    0 10px 25px rgba(0,0,0,0.6),   
    0 0 15px rgba(255,255,255,0.5); 
    background:black;
}

.mayday:hover video{
    transform:scale(1.05);
    box-shadow:
    0 15px 30px rgba(0,0,0,0.8),
    0 0 20px rgba(255,255,255,0.7);
}

 .mayday-box{
    width:250px;
    position:absolute; 
}

.mayday-box video{
    width:100%;
    border-radius:12px;
    border:4px solid white;
}

.vid {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.vid img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/*-----------------------------------------css for hyperlinked video files-----------------------------------------*/


 /*-------------------------------------------contact-------------------------------------------------------------*/
 * { margin: 0; padding: 0; box-sizing: border-box; }

.card {
    position:relative;
    padding: 30px ;
    width: 100%;
    max-width: 1100px;
    bottom: -60px;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #f0ece4;
}

.contact-title span { color:  #37d48b; }

.contact-header p {
    font-size: 13px;
    color:white;
    margin-top: 6px;
}

.layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.email-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.email-link {
    display: block;
    padding: 20px;
    border-radius: 12px;
    background: white;
    border: 1px solid #222;
    text-decoration: none;
    color: black;
    font-size: 13px;
    line-height: 1.7;
    transition: 0.3s;
    }

 .email-link:hover {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
 }

.email-link small {
    font-size: 11px;
    color: #555;
    display: block;
}

.vdivider {
    width: 1px;
    background: #1e1e1e;
    flex-shrink: 0;
}

.form-col {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-col label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color:white;
    font-weight: 500;
}

.form-col input,
.form-col textarea {
    width: 100%;
    background: white;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 12px 14px;
    color: black;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.form-col input::placeholder,
.form-col textarea::placeholder { color: #444; }

.form-col input:focus,
.form-col textarea:focus { border-color: #d4af37; }

.form-col textarea { height: 100px; }

.send-btn {
    background: #37d48d;
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}

.send-btn:hover:not(:disabled) {
    background: #37d48d;
    transform: translateY(-1px);
}

.send-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.social-grid {
    flex: 1.4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-content: start;
}

.social-card {
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    background: white;
    border: 1px solid #1e1e1e;
    text-decoration: none;
    color: black;
    font-size: 13px;
    line-height: 1.6;
    transition: 0.3s;
}

.social-card:hover { transform: translateY(-5px); }

.social-card small {
    font-size: 11px;
    color: #555;
    display: block;
}

.social-icon {
    font-size: 26px;
    margin-bottom: 8px;
    display: block;
    transition: 0.3s;
}

.social-card:hover .social-icon { transform: scale(1.2); }

.tiktok    .social-icon { color: #69C9D0; }
.facebook  .social-icon { color: #1877F2; }
.instagram .social-icon { color: #E1306C; }
.youtube   .social-icon { color: #FF0000; }

.tiktok:hover    { border-color: #69C9D0; box-shadow: 0 0 15px #69C9D055; }
.facebook:hover  { border-color: #1877F2; box-shadow: 0 0 15px #1877F255; }
.instagram:hover { border-color: #E1306C; box-shadow: 0 0 15px #E1306C55; }
.youtube:hover   { border-color: #FF0000; box-shadow: 0 0 15px #FF000055; }

   
.contact-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: white;
}

   
@media (max-width: 768px) {
    .card { padding: 30px 20px; }
    .layout { flex-direction: column; }
    .vdivider { display: none; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
}