/* ------------------------------ */
/* GLOBAL PAGE SETTINGS */
/* ------------------------------ */

/* Reset default spacing */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8; /* light background for whole site */
}


/* Wrapper keeps everything centered */
#wrapper {
    width: 100%;
    height: 100%;
}


/* ------------------------------ */
/* HEADER */
/* ------------------------------ */

header {

    /* Teal background */
    background-color: #14a3a6;

    /* Space inside header */
    padding: 25px;

    /* Flex layout for title + nav */
    display: flex;

    justify-content: space-between;

    align-items: center;
}


/* Website title */
.site-title {
    color: white;
    margin: 0;
    font-size: 40px;
}


/* ------------------------------ */
/* NAVIGATION MENU */
/* ------------------------------ */

nav a {

    text-decoration: none;

    color: #0a0a0a;

    margin-left: 25px;

    letter-spacing: 1px;
}


/* Hover effect */
nav a:hover {
    text-decoration: underline;
}


/* ------------------------------ */
/* MAIN SECTION */
/* ------------------------------ */

main {

    background-color: #2f3b52;

    padding: 60px;

    color: white;
}


/* ------------------------------ */
/* PAGE TITLE */
/* ------------------------------ */

.page-title h1 {

    font-size: 70px;

    margin-top: 0;

    margin-bottom: 30px;
}


/* ------------------------------ */
/* ABOUT / HOME LAYOUT CONTAINERS */
/* ------------------------------ */

.about-container,
.home-container {

    display: flex;
    height: 100%;
    gap: 60px;

    align-items: flex-start;
}


/* ------------------------------ */
/* ABOUT TEXT */
/* ------------------------------ */

.about-text {

    width: 60%;

    font-size: 20px;

    line-height: 1.6;
}


/* ------------------------------ */
/* ABOUT IMAGE COLUMN */
/* ------------------------------ */

.about-image {

    width: 40%;
}


/* Image styling */
.about-image img {

    width: 100%;

    height: auto;
}


/* ------------------------------ */
/* HOME TEXT AREA */
/* ------------------------------ */

.home-text {

    width: 60%;

    font-size: 20px;

    line-height: 1.6;
}


/* ------------------------------ */
/* HOME SIDEBAR */
/* ------------------------------ */

.home-sidebar {

    width: 40%;
}


/* Sidebar links */
.home-sidebar a {

    color: white;

    text-decoration: none;
}

.home-sidebar a:hover {
    text-decoration: underline;
}


/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */

footer {

    background-color: #14a3a6;

    color: white;

    text-align: center;

    padding: 20px;
}


/* ------------------------------ */
/* CONTACT CARD STYLE (FIXED SECTION) */
/* ------------------------------ */

.contact-card {

    background-color: #ffffff;

    color: #000;

    width: 500px;

    padding: 30px;

    margin: 0 auto;

    border-radius: 10px;

    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}


/* Contact card title */
.contact-card h3 {

    text-align: center;

    margin-bottom: 20px;
}


/* Contact lines */
.contact-card p {

    font-size: 20px;

    margin: 15px 0;

    display: flex;

    align-items: center;
}

/* ------------------------------
   GALLERY PAGE STYLING
------------------------------ */

/* Dark blue background */
main {
    background-color: #3b465c;
    padding: 60px;
    color: white;
}


/* Title */
.gallery-title h1 {
    font-size: 70px;
    margin-bottom: 40px;
}


/* Rows */
.gallery-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}


/* Top row (2 images) */
.top-row .gallery-card {
    width: 300px;
}


/* Bottom row (3 images) */
.bottom-row .gallery-card {
    width: 300px;
}


/* Card styling */
.gallery-card {
    text-align: center;
}


/* Images */
.gallery-card img {
    width: 100%;
    height: auto;
}


/* Captions */
.gallery-card p {
    font-size: 14px;
    margin-top: 10px;
    color: #dcdcdc;
}