@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', serif;
}

body {
    height: 100vh;
    width: 100vw;
}

#top {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#top::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 1000;
}

#man {
    top: inherit;
    bottom: 0;
}

section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#text {
    position: relative;
    color: slategrey;
    font-size: 6rem;
}

#sec {
    padding: 100px;
    padding-bottom: 20px;
}

#sec h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: #20496a;
}

#sec p {
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 300;
    color: #20496a;
}

footer {
    margin-top: 30px;
    display: flex;
    padding: 20px;
    justify-content: space-evenly;
    align-items: center;
    background-color: #B0DFEA;
}

footer a {
    color: #20496a;
}

footer a i {
    transition: 0.2s;
}

footer a:nth-of-type(3), footer a:nth-of-type(4), footer a:nth-of-type(5) {
    font-size: 1.3rem;
}

footer a i:hover {
    transform: translateY(-10px);
}

.container {
    max-width: 80vw;
    margin: 80px auto;
    position: relative;
}

header .container {
    padding: 20px;
    border-radius: 5px;
    background-image: linear-gradient(to bottom right, #3d3d3d, #000);
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.25),
    0 5px 10px 5px rgba(0, 0, 0, 0.25);
}

header .container div {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3d3d3d;
    background-image: linear-gradient(to bottom right, #000, #bfbfbf, #000);
    box-shadow: 0 0 0 1px #bfbfbf, 1px 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.top-left {
    top: 15px;
    left: 15px;
}

.top-right {
    top: 15px;
    right: 15px;
}

.bottom-right {
    bottom: 15px;
    right: 15px;
}

.bottom-left {
    bottom: 15px;
    left: 15px;
}

header h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    background-image: linear-gradient(to bottom right, #f8d88f, #c6a647);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

#gallery {
    max-width: 100%;
    line-height: 0;
    -webkit-column-count: 4;
    -webkit-column-gap: 60px;
    -moz-column-count: 4;
    -moz-column-gap: 60px;
    column-count: 4;
    column-gap: 60px;
}

#gallery .frame {
    margin-bottom: 40px;
    border-radius: 4px;
    border: solid 10px;
    border-image: linear-gradient(to bottom right, #56575a, #000) 1;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 25%) inset, 0 5px 10px 5px rgb(0 0 0 / 25%);
    position: relative;
    display: inline-block;
}

#gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1px;
    cursor: pointer;
    border: groove 4px;
    border-bottom-color: #56575a;
    border-left-color: #2b2b2d;
    border-right-color: #2b2b2d;
    border-top-color: #000;
    position: relative;
}

.overlay {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.overlay::before {
    content: "";
    background: rgba(255, 255, 255, 0.1);
    width: 40%;
    height: 100%;
    top: 0%;
    left: -125%;
    transform: skew(-25deg);
    position: absolute;
    transition: left 1.5s ease-out;
}

.overlay:hover::before {
    left: 200%;
}

@media (max-width: 1200px) {
    #gallery {
        column-count: 3;
    }
}

@media (max-width: 980px) {
    #gallery {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    #gallery {
        column-count: 1;
    }
}

.btn-container {
    text-align: center; /* centers inline-block elements like your button */
    margin-top: 40px; /* optional spacing above */
}

.get-started-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0070f3, #0051a8);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #0051a8, #003d80);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.site-footer {
    background-color: #111827; /* dark background */
    color: #d1d5db; /* light gray text */
    padding: 30px 20px;
    text-align: center;
    font-size: 0.95rem;
}

.site-footer a {
    color: #60a5fa; /* blue link */
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

.svg-wrapper {
    display: flex;
    justify-content: center; /* centers SVG horizontally */
}

svg {
    height: 200px;
    stroke-width: 4;
}

.pig {
    stroke-dasharray: 319 319;
    stroke-dashoffset: 0px;
}

.calculator {
    stroke-dasharray: 0 252;
    stroke-dashoffset: 0px;
}

.wallet {
    stroke-dasharray: 0 240;
    stroke-dashoffset: 0px;
}

.loading {
    margin-bottom: 30px;
    text-align: center;
    width: 200px;
}
