/*-------------------------------------- Body--------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: black;
    color: #ffffff;
}


/* ----------------------------------Header Section ----------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2px 3%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideRight 1s ease forwards;
}

/* --------------------------------------Navbar-------------------------------------- */
.navbar a {
    font-size: 18px;
    color: #00ffd5;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    opacity: 0;
    animation: slideTop .4s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.navbar a:hover,
.navbar a.active {
    color: #0ef;
}


/*--------------------------------------- Home Section------------------------------- */
.home {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Optional */
    overflow: hidden;
}

.couple-contineer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5vw;
    position: relative;
    box-sizing: border-box;
}

.groom,
.bride {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.groom img,
.bride img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.groom img {
    border: 5px solid #00ff37;
    box-shadow: 0 0 8rem rgb(30, 255, 0);
}

.bride img {
    border: 5px solid red;
    box-shadow: 0 0 8rem rgb(255, 0, 0);
}

.groom h2,
.bride h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* Fixing home-content to center between groom & bride */
.home-content {
    text-align: center;
    max-width: 500px;
    z-index: 2;
}

.home-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 10px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content h5 {
    font-weight: 700;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h5 span {
    animation: rainbowText 5s linear infinite;
}

.scroll-down,
.scroll-down1 {
    position: absolute;
    bottom: 30px;
    font-size: 20px;
    padding: 15px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: transform 0.3s;
    animation: bounce 2s infinite, colorChange 5s infinite, borderRotate 5s linear infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-down {   /* Left end */
    left: 20px;
}

.scroll-down1 {  /* Right end */
    right: 20px;
}
.scroll-down:hover,
.scroll-down1:hover {
    transform: scale(1.1);
}



/* -------------------------------------Gallery Section Design----------------------------------  */



.Gallery h2 {
    font-size: 2.5rem;
    color: #ffffff; /* Keep the header white */
}

.Gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    justify-items: center;
    padding: 20px;
}

.Gallery-container .Gallery-box {
    width: auto;
    height: auto;
    flex: 1 1 10px;
}


.Gallery-box a {
    max-width: 500px;
}


.Gallery-box img {
    max-width: 300px;
    border-radius: 10%;
    box-shadow: 0 0 2rem rgb(0, 255, 247); /* Bright green shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.Gallery-box1 img {
    max-width: 300px;
}

.img {
    font-size: 25px;
    color: rgba(255, 140, 0, 0.472);
    margin-left: 6rem;
}

.Gallery-box1 h3 {
    font-size: 30px;
    color: #ffffff;
}

.photos {
    font-size: 30px;
    padding: 10px 25px;
    background: linear-gradient(45deg, rgb(169, 226, 230), #86eb9c);
    border: none;
    height: 40px;
    margin-top: 70%;
    border-radius: 50px;
    color: #ffffff;
    box-shadow: 0 0 15px rgb(255, 0, 0);
    cursor: pointer;
    transition: 0.3s;
}

.photos:hover {
    background: linear-gradient(45deg, #ff00c8, #0ef);
    transform: scale(1.05);
}
.photos h6{
    color: rgb(17, 0, 255);
}



/* ---------------------------------Video Section Design------------------------------------ */

.heading {
    font-size: 60px;
    color: #ffffff;
    text-align: center;
    margin: 20px 0;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    padding: 20px;
    justify-items: center;
}

.video-box {
    background: linear-gradient(45deg, #ff00c8, #0ef);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    padding: 2px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(8, 0, 251, 0.5);


}

.video-box iframe {
    width: 100%;
    height: 230px;
    border-radius: 12px;
}


.video-box:hover {
   
        background: linear-gradient(45deg, #ff00c8, #0ef);
        transform: scale(1.05);
    
}

/* ---------------------------------------------Contact Section----------------------------------------------- */

.contact h2 {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.8rem;
    color: #0ef;
    position: relative;
}

.contact form {
    max-width: 800px;
    margin: 0 auto;
   
    background: rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 238, 255, 0.1);
}

.contact form .input-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
    background: var(--second-bg-color);
    border: 2px solid rgba(0, 238, 255, 0.3);
    border-radius: 45px;
    outline: none;
    transition: all 0.3s ease;
}

.contact form .input-box input {
    width: 48%;
}

.contact form .input-box input:focus,
.contact form textarea:focus {
    box-shadow: 0 0 10px rgba(0, 238, 255, 0.4);
    border-color: #0ef;
}

.contact form textarea {
    resize: none;
    height: 100px;
    margin-top: 1rem;
}

.send-btn {
   margin-left: 33rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: white;
    color: black;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
    
}

.send-btn:hover {
    
    color: rgb(0, 255, 170);
    box-shadow: 0 0 10x #ff0000, 0 0 15px #00ff0d;
}

.social-media {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.social-media a {
    display: inline-flex;
    justify-content:center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: rgb(15, 219, 233);
    text-decoration:dashed;
    margin: 30px 15px 30px 0;
    transition: 1s ease;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;

}

.social-media a:hover {
    background: rgb(0, 255, 26);
    color: #1f242d;
    box-shadow: 0 0 20px #0ef;

}



/* ---------------------------------------Footer Section----------------------------------------------- */

.footer{
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-wrap: wrap;
    padding: 1px 5%;
    border-radius: 2rem;
    background: #141e20

}
.footer-text p{
    font-size: 1rem;


}.footer-iconTop a{
     display: inline-flex;
     justify-content: center;
     align-items:center;
     padding:.8rem;
     background: #0ef;
     border-radius: .8rem;
     transition: .5s ease;
}.footer-iconTop a i{
    font-size: 2.4rem;
    color:rgb(0, 0, 0)
}



/* ============================  About.html Contents Style =========================================*/


.about-section {
    padding: 50px 20px;
    background-color: #111;
    color: white;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    color: #0ef;
    margin-bottom: 20px;
}

.section-heading span {
    color: #fff;
}

.about-content {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.about-info p {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.about-info strong{
    color: #ff0000;
}
.about-info h3{
    font-size: 15px;
    color: rgb(246, 255, 0);
}

.about-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-outline {
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
   
    border: 2px solid #0ef;
    color: #00fffb;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #0ef;
    color: #0ef;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #0ef;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    
}

.social-icons a {
    display: inline-flex;
    justify-content:center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: rgb(15, 219, 233);
    text-decoration:dashed;
    margin: 30px 15px 30px 0;
    transition: 1s ease;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.social-icons a:hover {
    
        background: rgb(0, 255, 26);
        color: #1f242d;
        box-shadow: 0 0 20px #0ef;
    

}

/* ============================================================================================================================================================================ */




/*-------------------------------------- KEYFRAMES -------------------------------------- */

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* Font Color Changing Animation */
@keyframes colorChange {
    0% {
        color: rgb(255, 0, 0);
    }

    25% {
        color: rgb(0, 255, 0);
    }

    50% {
        color: rgb(0, 255, 251);
    }

    75% {
        color: rgb(255, 255, 0);
    }

    100% {
        color: rgb(255, 0, 255);
    }
}

/* Border Color Rotating Animation */
@keyframes borderRotate {
    0% {
        border-color: rgb(255, 0, 0);
    }

    25% {
        border-color: rgb(0, 255, 0);
    }

    50% {
        border-color: rgb(0, 255, 255);
    }

    75% {
        border-color: rgb(255, 255, 0);
    }

    100% {
        border-color: rgb(255, 0, 255);
    }
}

/* Animations */
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-24px);
    }
}

/* Rainbow Color Animation */
@keyframes rainbowText {
    0% {
        color: red;
    }

    16% {
        color: orange;
    }

    32% {
        color: yellow;
    }

    48% {
        color: green;
    }

    80% {
        color: rgb(0, 124, 130);
    }

    100% {
        color: violet;
    }
}






/* -------------------------BREAKPOINTS ------------------------RESPONSIVE-------------------------*/

@media (max-width:700px){
    .home {
     
        width: 100%;
        height: 90vh;
        
    }

    .header a {
        display:inline-flex; 
        gap: 1px;
        font-size: 11px;
        align-items: center;
        align-content: center;
    }
    
        .couple-contineer {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 20px;
        }
    
        .groom img,
        .bride img {
            width: 250px;
            height: 250px;
           
            box-shadow: 0 0 2rem rgba(0, 255, 0, 0.5);
        }

        .groom img {
            border: 5px solid #00ff37;
            box-shadow: 0 0 6rem rgb(30, 255, 0);
            margin-top: 4.5rem;
        }
        
        .bride img {
            border: 5px solid red;
            box-shadow: 0 0 6rem rgb(255, 0, 0);
        }
    
        .home-content {
            order: 0; 
            text-align: center;
            max-width: 90%;
            padding: 10px;
        }
         .photos {
       
            margin-top: 1%;
       
    
         }


    
        .home-content h1 {
            font-size: 26px;
        }
    
        .home-content h5 {
            font-size: 16px;
        }
    
        .groom h2,
        .bride h2 {
            font-size: 0px;
        }
    
        .scroll-down,
        .scroll-down1 {
            font-size: 16px;
            padding: 10px;
            bottom: 10px;
        }
    
        .scroll-down {
            left: 10px;
        }
    
        .scroll-down1 {
            right: 10px;
        }
    }
 @media (max-width:700px){
    html {
        font-size: 55%;

    }
    
    .video-container {
        display: grid;
        grid-template-columns: 1fr; /* One column that takes full width */
        gap: 20px; /* Optional: adds space between videos */
        justify-items: center; /* Centers items horizontally */
    }
    
    .video-box iframe {

        width: 100%;
        height: 230px;
        border-radius: 12px; /* Adjust as needed */
    }
    .video h2{
        font-size: 25px;
    }


    .send-btn {
        margin-left: 16rem;
         margin-top: 1rem;
         padding: 0.75rem 1.5rem;
         font-size: 1rem;
         background-color: white;
         color: black;
         border-radius: 30px;
         font-weight: bold;
         cursor: pointer;
         border: none;
         transition: 0.3s ease;
         
     }
     
     .send-btn:hover {
         
         color: rgb(0, 255, 170);
         box-shadow: 0 0 10x #ff0000, 0 0 15px #00ff0d;
     }
     
     .social-media a {
         display: inline-flex;
         justify-content:center;
         align-items: center;
         width: 40px;
         height: 40px;
         background: transparent;
         border: 2px solid #0ef;
         border-radius: 50%;
         font-size: 20px;
         color: rgb(15, 219, 233);
         text-decoration:dashed;
         margin: 30px 15px 30px 0;
         transition: 1s ease;
         opacity: 0;
         animation: slideBottom 1s ease forwards;
         animation-delay: .7s;
     
     }
     
     .social-media a:hover {
         background: rgb(0, 255, 26);
         color: #1f242d;
         box-shadow: 0 0 20px #0ef;
     
     }

    .section {
        padding: 1rem 3% 2rem;
    }
}

   
   
    

/* ==================================== About.Html Page ========================================== */

/* ✅ RESPONSIVE DESIGN */

@media (max-width: 700px) {
    .section-heading {
        font-size: 2rem;
    }

    .about-info p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin: 15px 8px;
    }
}


    .section-heading {
        font-size: 1.6rem;
    }

    .about-info p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .social-icons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin: 10px 5px;
    }
/* ============================================================================================================================= */