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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    background-color: rgb(197, 230, 241);
    color: #242424;
}

/* Global text */
li {
    list-style-type: none;
}

h2 {
    color: rgb(6, 141, 13);
    text-align: center;
    margin-bottom: 8px;
}

p {
    line-height: 1.5;
    font-size: 16px;
    text-align: center;
}

.text--green {
    color: rgb(6, 141, 13);
}

/* Layout helpers */
.row {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Nav Bar */
nav {
    background-color: rgb(197, 230, 241);
    height: 100px;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-size: 20px;
}

.nav__link--list {
    display: flex;
}

.nav__link--anchor {
    margin: 0 12px;
    text-decoration: none;
    font-size: 16px;
    color: #242424;
    font-weight: bold;
}

.personal__logo {
    color: rgb(6, 141, 13);
    font-weight: bold;
}

/* Family section */
#family {
    padding: 0 24px 40px;
}

#family .row {
    text-align: center;
}

/* Image grid */
.img__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.tommy__pics {
    flex: 1 1 calc(25% - 16px);  /* 4 per row on larger screens */
    max-width: 220px;
}

/* Individual images */
.tommy-pics {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.tommy-pics:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Lightbox (click to enlarge) */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease;
    z-index: 999;
}

.lightbox--active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #242424;
    padding: 20px 0;

}

.footer__social--list {
   width: 100%;
   max-width: 500px;
   display: flex;
   justify-content: space-around;
    margin-bottom: 28px; 
}

.footer__row {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
}
.footer__logo--img {
    width: 90px;
    height: auto;

}
.footer__social--link,
.footer__copyright,
.footer__logo--popper {
    color: white;
}

.footer__logo--popper {
    position: absolute;
    right: 0;
    top: 30px;
    font-weight: 700;
    opacity: 0;
    transition: all 300ms ease;
}

.footer__anchor {
    position: relative;
    margin-bottom: 0;
}

.footer__anchor:hover .footer__logo--popper {
transform: translateX(50px);
opacity: 1;
}