/* Global Styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FC7ACD;
    color: #000000;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 140px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #ffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}
#header {
    width: 100%;
    padding: 20px 0; 
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
}


.container {
    padding: 10px 10%;
}



#interative-design-title {
    font-size: 60px;
    text-align: center;
    margin-top: 20px; 
    font-weight: bold;
    font-family: 'Times New Roman', serif;
    color: #DB48A5;
    text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.7);
    margin-bottom: 0; 

}

.paragraph {
    text-align: center;
    font-size: 15px;
    color: white;
}

/* section styles */
h2 {
    font-size: 36px;
    color: #DB48A5;
    margin-top: 10px; 
    text-align: center;
    font-family: 'Times New Roman', serif;
}



section {
    margin: 60px 0; /* Adds vertical space above and below each section */
    padding: 10px 10%; /* Keeps the current padding */
}


.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content p {
    width: 60%;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.section-image {
    width: 30%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
}

/* stylescapes section */
.stylescapes-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;

}

.stylescape-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px; 
}

.stylescape-item h3 {
    font-size: 28px; 
    color: #DB48A5;
    margin-right: 15px;
}

.stylescape-image {
    width: 180px;  
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stylescape-image:hover {
    transform: scale(1.1);
}

.stylescape-item p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    max-width: 700px;
    text-align: justify;
}

/* Instagram design */
.instagram-image {
    width: 16%; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
}
.nasmakweb-image {
    margin-top: 3%;
    margin-bottom: 3%;
    width: 28%; 
    margin-left: 15%;
    border-radius: 2%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nasmakweb-paragraph {
    text-align: justify;
    margin-left: 20%;
}

/* modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;  
    max-width: 1200px;
    object-fit: contain;
}

#caption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 18px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-content {
    animation: zoom 0.6s;
}

@keyframes zoom {
    from { transform: scale(0) }
    to { transform: scale(1) }
}

/* Footer Styles */
.footer {
    background-color: #DB48A5;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
}

/* poster section */
.poster-images {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.poster-item {
    width: 30%;
    text-align: center;
}

.poster-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.poster-item p {
    font-size: 17px;
    color: #333;
    margin-top: 10px;
    text-align: justify;
}

.content p {
    text-align: justify;
    font-size: 18px;
}


#bunny-ballon {
    position: absolute;
    top: -100px;  /* Start  above the screen */
    right: 20px;  
    width: 200px;  
    height: auto;  
    animation: fly 15s linear infinite;  
    transform: scaleX(-1);  
}

@keyframes fly {
    0% {
        top: -100px;  /* Start off-screen at the top */
        right: 20px; 
        transform: scaleX(-1) rotate(0deg); 
    }
    50% {
        top: 50%; 
        right: 20px; 
        transform: scaleX(-1) rotate(5deg);  
    }
    100% {
        top: 300%;  /* Move to the bottom */
        right: 20px;  
        transform: scaleX(-1) rotate(0deg);  
    }
}
