/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

/* Set base font size */
html {
    font-size: 62.5%;
}

/* Body styles */
body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #BAD8B6;
    color: white;
}

/* Header styles */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 9%;
    background-color: #E1EACD;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: Sans-serif;
    box-shadow: 0px 4px 10px #aaa9a9;
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Paragraph styles */
.p1 {
    font-size: 16px;
    font-weight: bold;
}

/* Logo styles */
.logo {
    font-size: 80px;
    color: #8D77AB;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Navigation link styles */
nav a {
    font-size: 20px;
    color: #8D77AB;
    margin-left: 45px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #8D77AB;
    border-bottom: 3px solid #8D77AB;
}

/* Section styles */
section {
    flex: 1;
    min-height: 100vh;
    padding: 160px 108px 80px;
}

/* Home section styles */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 128px;
    background-color: #BAD8B6;
    font-family: monospace;
    margin-top: 20px;
}

.home .home-content h1 {
    font-size: 96px;
    font-weight: 700;
    line-height: 1.3;
}

.home-content h3 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

/* Profile picture styles */
.home-pic {
    border-radius: 50%;
    margin-top: 100px;
}

.home-pic img {
    width: 250px;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.home-pic img:hover {
    transform: translateX(-50px);
}

/* Highlighted name styles */
.headName {
    color: #8D77AB;
}

/* Home section layout */
.home > div {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Left column styles */
.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Right column styles */
.right-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-column video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    margin-bottom: 150px;
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F9F6E6;
    padding: 40px;
    border: 2px solid #8D77AB;
    border-radius: 10px;
    z-index: 1001;
    color: black;
    font-size: 24px;
}

/* Responsive styles for medium screens */
@media (max-width: 1024px) {
    header {
        margin-bottom: 20px;
    }

    .home {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 50px;
        margin-top: 20px;
    }

    .home-content h1 {
        font-size: 48px;
    }

    .home-content h3 {
        font-size: 24px;
    }

    .home-pic {
        margin-top: 50px;
    }

    .home-pic img {
        width: 250px;
        margin: 0 auto;
    }

    .right-column video {
        width: 90%;
        max-width: 400px;
        border-radius: 10px;
    }

    .footerContainer {
        text-align: center;
        margin-top: 20px;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

/* Responsive styles for small screens */
@media (max-width: 768px) {
    header {
        padding: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .logo {
        font-size: 50px;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: #E1EACD;
        border-top: 2px solid #8D77AB;
        flex-direction: column;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    nav a {
        display: block;
        font-size: 18px;
        margin: 10px 0;
        padding: 10px;
    }

    .home {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 50px;
        margin-top: 20px;
        flex: 1;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .home-pic {
        margin-top: 200px;
    }

    .home-pic img {
        width: 250px;
        margin: 0 auto;
    }

    .right-column video {
        width: 100%;
        max-width: 300px;
        border-radius: 10px;
    }

    .footerContainer {
        text-align: center;
        margin-top: 20px;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

/* Footer styles */
footer {
    background-color: #F9F6E6;
    margin-top: 20px;
    flex-shrink: 0;
}

.footerContainer {
    width: 100%;
    padding: 70px 30px 20px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a,
.social-icons button {
    text-decoration: none;
    padding: 10px;
    background-color: #F9F6E6;
    margin: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.social-icons a img,
.social-icons button img {
    width: 25px;
    height: 25px;
    margin: 0;
}

/* Social icons hover effect */
.social-icons a:hover {
    background-color: #8D77AB;
    border-radius: 50%;
    transition: 0.2s;
}

.social-icons :hover {
    background-color: #8D77AB;
    border-radius: 50%;
    transition: 0.2s;
}

/* Copyright section styles */
.copyR {
    background-color: #8D77AB;
    text-align: center;
    padding: 25px;
    font: helvetica;
    font-size: 12px;
    color: white;
    text-align: center;
    font-family: Helvetica;
}

/* Designer text styles */
.designer {
    opacity: 0.8;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}










