/* =========================
   IMPORT GOOGLE FONT
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif&display=swap');

/* =========================
   RESET DEFAULT STYLES
   ========================= */
body {
    margin: 0;
    font-family: "Inria Serif", serif;
}

/* =========================
   WRAPPER
   ========================= */
#wrapper {
    width: 100%;
}

/* =========================
   HEADER (TOP BAR)
   ========================= */
header {
    background-color: #d48ac2;
    padding: 45px;
    color: #FFF;
}

header h1 {
    display: inline-block;
    margin: 0;
    font-size: 40px;
}

nav {
    float: right;
}

nav a {
    text-decoration: none;
    margin-left: 20px;
    color: #FFFAFA;
    font-size: 25px;
}

nav a:hover {
    text-decoration: underline;
}

/* =========================
   MAIN (FIXED LAYOUT)
   ========================= */
/* =========================
   MAIN AREA
   ========================= */
main {
    background-color: #8fb6cf;
    padding: 60px;
    min-height: 649px;
}

main h2 {
    color: #FFFAFA;
    font-family: "Inria Serif";
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}



/* =========================
   TITLE (TOP LEFT)
   ========================= */
.about-title {
    color: #000;
    font-size: 50px;
    margin-bottom: 30px;
    text-align: left;
}

/* =========================
   ROW (3 COLUMN LAYOUT)
   ========================= */
.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   IMAGES
   ========================= */
.left-img img,
.right-img img {
    width: 200px; /* adjust based on your image quality */
    height: auto; /* prevents distortion */
    border-radius: 10px;
}

/* =========================
   CENTER TEXT
   ========================= */
.about-text {
    max-width: 900px;
}

body {
    color: #000;
    font-family: "Inria Serif";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-text p {
    color: green;
    font-family: "Inria Serif";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gallery-item p {
      color: #000;
    font-family: "Inria Serif";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/* =========================
   GALLERY LAYOUT
   ========================= */
.gallery-container {
    display: flex;
    flex-wrap: wrap;        /* allows multiple rows if needed */
    gap: 20px;              /* space between items */
    justify-content: center;
}

.gallery-item {
    width: 220px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =========================
   FOOTER
   ========================= */
footer {
    background-color: #caa3d8;
    height: 40px;
}

#beachpic {
position: absolute;
left:1100px;
top:200px;
}

