* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, beige, beige);
}

#minicircle {
    width: 10px;
    height: 10px;
    background-color: black;
    z-index: 99999;
    border-radius: 50%;
    position: absolute;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.bounding {
    width: fit-content;
    overflow: hidden;
}

.bounding .boundingelem {
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

#main {
    width: 100%;
    background-color: beige;
    border-top: 1px solid #ddd;
}

#hero {
    width: 100%;
    height: 100vh;
    background-color: beige;
    color: black;
    position: relative;
}

#nav {
    width: 100%;
    padding: 20px 40px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

#heading {
    margin-top: 90px;
}

#heading h1 {
    font-size: 10vw;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0.6;
    font-weight: 900;
    margin-left: 30px;
    letter-spacing: 2px;
}

#heading #sec {
    margin-left: 230px;
}

.blocktext {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.blocktext h5 {
    text-transform: uppercase;
    font-size: 15px;
    text-align: right;
    opacity: 0.6;
}

#chotiheading {
    margin-top: 100px;
    padding-right: 30px;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: end;
}

#chotiheading h5 {
    text-align: right;
    text-transform: uppercase;
    margin-top: 0.5vw;
    font-size: 1vw;
}

#herofooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 3%;
    width: 100%;
    padding: 0 4vw;
}

#herofooter a {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

#herofooter a:hover {
    color: #555;
}

#herofooter #iconset {
    display: flex;
    gap: 5px;
}

#herofooter .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#herofooter .circle:hover {
    transform: scale(1.1);
}

#second {
    width: 100%;
    height: 100vh;
    background-color:beige;
    padding-top: 100px;
    padding-right: 10vw;
    color: black;
    opacity: 0.8;
}

.elem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3.5vw 3vw;
    padding-right: 0;
    border-top: 1px solid #888;
    transition: transform 0.3s ease;
}

.elem:hover {
    transform: scale(1.02);
}

.elem h1 {
    text-transform: uppercase;
    font-size: 7.6vw;
    opacity: 0.7;
    letter-spacing: 1px;
}

.elemlast {
    border-bottom: 1px solid #888;
}

.elem img {
    opacity: 0;
    pointer-events: none;
    height: 140%;
    z-index: 999;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.elem:hover img {
    transform: scale(1.05);
    opacity: 1;
}

#about {
    width: 100%;
    padding: 20vw 5vw;
    background-color: beige;
    color: black;
    display: flex;
    align-items: center;
    gap: 50px;
    padding-left: 40vw;
}

#textabout {
    width: 25rem;
}

#textabout h5 {
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
}

#textabout p {
    line-height: 1.7;
    margin-bottom: 30px;
}

#about img {
    width: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#textabout a {
    padding: 12px 22px;
    border: 1px solid black;
    border-radius: 100px;
    color: black;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#textabout a:hover {
    background-color: black;
    color: white;
}

#subscribe {
    background-color: beige;
    color: black;
    padding: 20px 30px;
    padding-bottom: 7vw;
    border-top: 1px solid #ddd;
}

#subscribe h5 {
    text-transform: uppercase;
    opacity: 0.6;
}

#subscribe h3 {
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}

#footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    background-color: beige;
    color: black;
    border-top: 1px solid #ddd;
}

#footerleft {
    display: flex;
    gap: 20px;
}

#footerright {
    display: flex;
    gap: 20px;
}

#footer a {
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #555;
}

@media (max-width: 768px) {
    #heading h1 {
        font-size: 12vw;
        margin-left: 10px;
    }

    #nav {
        padding: 10px 20px;
    }

    #about {
        flex-direction: column;
        align-items: center;
        padding: 10vw 5vw;
    }

    #textabout {
        width: 100%;
        padding: 20px;
    }
}
