/* GENERAL STYLING */
/* BODY */
body {
    margin: 0;
}
 /* HEADING 1 ELEMENTS */
 h1 {
    text-transform: uppercase;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: rgb(5, 0, 8);
    font-size: 25px;
 }

/* HEADING 1 ELEMENT HOVER */
h1:hover {
    filter: grayscale(10%);
    transform: scale(1.1);
    transition: transform 2s;
}

/* STYLING OF PORTFOLIO TITLE TEXT */
.white-text {
    color: #fff;
}
 
/* PARAGRAPH ELEMENTS */
p {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    letter-spacing: 1px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}

/* PARAGRAPH ELEMENTS HOVER */
p:hover {
    transition: transform 1s;
    transform: scale(1.01);
}

/* CLASS CENTER, CENTERS ALL ELEMENTS */
.center {
    text-align: center;
}

.center:hover {
    transition: transform 2s;
    transform: scale(1.1);
}

/* ANCHOR ELEMENTS */
a {
    color: blue;
}

/* QUOTATION ELEMENTS */
q {
    font-style: italic;
}

/* IMAGE ELEMENTS */
img {
    filter: grayscale(50%);
    border-radius: 10px;
    max-width: 100%;
    height: 340px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* IMAGE ELEMENTS HOVER */
img:hover {
    filter: grayscale(5%);
    transition: transform 1s;
    transform: scale(1.1);
}

/* MEDIA RULE */
@media screen and (max-width: 576px) {
    img {
        height: 100px;
        margin-top: 150px;
    }
}

/* STYLING FOOTER */
footer {
    padding: 3%;
    background-color: rgb(212, 173, 249);
}

/* END OF GENERAL STYLING */

/* NAVBAR STYLING */
.navbar {
    overflow: hidden;
    background-color:rgb(212, 173, 249);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-animation: moveNav 5s;
    animation: moveNav 5s;
}

@keyframes moveNav {
    from {left: -100vw;}
    to {left: 0vw;}
}

/* NAVBAR LINKS */
.navbar a {
    float: right;
    display: block;
    color:black;
    padding: 12px 16px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
    position: relative;
    -webkit-animation: moveNavText 5.75s;
    animation: moveNavText 5.75s;
}
/* MOVENAVTEXT ANIMATION */
@keyframes moveNavText {
    from {top: -100vw;}
    to {top: 0vw;}
}

/* MEDIA ELEMENTS */
@media screen and (max-width:576px) {
    .navbar a {
        width: 25%;
        font-size: 14px;
    }
}
/* NAVBAR HOVER EFFECTS */
.navbar a:hover {
    background-color: #fff;
    color: rgb(173, 229, 244);
    font-weight: bold;
}
/* NAVBAR HOME BUTTON */
.navbar a.active {
    background-color: blueviolet;
}
/* END NAVBAR STYLING */

/* VIDEO STYLING SECTION */
#Eye_video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    z-index: -1;
}
/* MEDIA VIDEO STYLING */
@media screen and (max-width: 576px) {
    #Eye_video {
        display: none;
    }
}

/* TEXT OVER THE VIDEO */
.Video_Text {
    background: rgba(155, 153, 155, 0.75);
    color: #fff;
    width: 100%;
    padding: 8% 10%;
    position: relative;
    -webkit-animation: moveVideoText 5.75s;
    animation: moveVideoText 5.75s;
}

@keyframes moveVideoText {
    from {top: -100vw;}
    to {top: 0vw;}
}

/* PORTFOLIO TITLE STYLING */
.portfolio-title {
    color: #a40291;
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* PORTFOLIO SUBTITLE STYLING */
.portfolio-subtitle {
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-subtitle p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.portfolio-subtitle q {
    font-style: italic;
    font-size: 17px;
    color: #f9f6f8;
}

.welcome-text {
    font-weight: bold;
    font-size: 18px !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* END OF VIDEO STYLING */

/* SLIDESHOW CONTAINER */
.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    background-color: rgb(228, 178, 241);
    padding: 20px;
    border-radius: 10px;
}

/* SLIDESHOW IMAGES */
.mySlides {
    display: none;
    text-align: center;
}

.mySlides.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mySlides img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

/* SLIDESHOW ARROWS */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* SLIDESHOW DOTS */
.dot-container {
    text-align: center;
    padding: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

/* SLIDESHOW CAPTION */
.slide-caption {
    color: rgb(5, 0, 8);
    font-size: 18px;
    padding: 15px;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* END SLIDESHOW STYLING */

/* POPUP CONTACT FORM STYLING */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.popup-content {
    background-color: #f9f6f8;
    margin: 5% auto;
    padding: 30px;
    border: 2px solid rgb(212, 173, 249);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.4s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-popup {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.close-popup:hover,
.close-popup:focus {
    color: #000;
}

.popup-content h1 {
    margin-top: 0;
    color: #a40291;
}

/* CONTACT BUTTON STYLING */
.contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgb(212, 173, 249);
    color: black;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1500;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-btn:hover {
    background-color: blueviolet;
    color: white;
    transform: scale(1.1);
}

/* END POPUP STYLING */

/* TABLE STYLING */
* {
    box-sizing: border-box;
}

.Column_1 {
    float: left;
    width: 50%;
    padding: 10%;
    padding-top: 3%;
    height: 400px;
    background-color: rgb(228, 178, 241);
}

/* MEDIA STYLING */
@media screen and (max-width: 576px) {
    .Column_1 {
        overflow: auto;
    }
}

.Column_2 {
    float: left;
    width: 50%;
    padding: 10px;
    padding-top: 1.9%;
    height: 400px;
    background-color: rgb(59, 29, 59);
}

.Column_Tall {
    padding-top: 3.5%;
    height: 450px;
}

.Row:after {
    content: "";
    display: table;
    clear: both;
}
/* END OF TABLE STYLING */

/* CONTACT FORM STYLING */
input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #f9b8f2;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 2px;
    margin-bottom: 10px;
    resize: vertical;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* INPUT BOXES HOVER EFFECT */
input[type=text]:hover, input[type=email]:hover, textarea:hover {
    background-color: #fdfafd;
    color: black;
    transform: scale(1.02);
    transition: transform 1.5s;
}

/* SUBMIT BUTTON */
input[type=submit] {
    background-color: rgb(212, 173, 249);
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

input[type=submit]:hover {
    background-color: blueviolet;
    color: white;
    transform: scale(1.05);
}

/* FORM ELEMENT */
form {
    border-radius: 5px;
    background-color: #f9f6f8;
    padding: 5px;
    font-family: 'Times New Roman', Times, serif;
}

/* RESPONSIVE ADJUSTMENTS */
@media screen and (max-width: 576px) {
    .slideshow-container {
        margin: 20px 10px;
    }
    
    .mySlides img {
        height: 300px;
    }
    
    .portfolio-title {
        font-size: 1.8rem;
    }
    
    .portfolio-subtitle p {
        font-size: 14px;
    }
    
    .Video_Text {
        padding: 15% 5%;
    }
    
    .contact-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .popup-content {
        width: 95%;
        margin: 10% auto;
    }
}