/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5f;
    --secondary: #2c6a9a;
    --accent: #f47a20;
    --light: #f0f4f8;
    --dark: #0d1c2e;
    --gray: #5c6d7e;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--primary);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

p {
    margin-bottom: 1rem;
}

.section {
    padding: 30px 0;
    font-size: 25px;
    /* scroll-margin-top: 118px; */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Heading */
.Heading {
    text-align: center;
    padding: 15px;
    letter-spacing: 1px;
    font-weight: bolder;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: var(--accent);
}

/* Images */
/* Section background (optional) */
#image {
    background: var(--secondary);
    padding: 40px 0;
}

/* Grid: 2 columns */
.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    max-width: 900px;
    margin: auto;
}

/* Wrapper with overflow to hide zoom edges */
.images {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-out;
}

/* Image style */
.images img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease-out;
    border-radius: 8px;
}

/* Zoom effect */
.images:hover img {
  transform: scale(1.1);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px); /* More movement = more noticeable */
  transition: opacity 0.3s ease-in, transform 0.1s ease-in;
  transition-delay: 0.2s; /* Optional: small pause before starting */
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

address a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

address a:hover {
    color: var(--accent);
}

.extra-labels {
    display: block;
    transition: var(--transition);
}