@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

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

:root {
    --primary-color: #0f172a;
    --accent-color: #38bdf8;
    --text-color: #334155;
    --bg-light: #f8fafc;
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    color: var(--text-color);
    background-color: var(--bg-light);
	font-family:'Poppins', Arial, sans-serif; font-size:16px; }

/* Modern Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
}

.logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4A99C5;
    letter-spacing: -0.5px;
	text-decoration:none;
}

.logo a:hover { color:#f76f3b; }

/* Responsive Navigation Links */
.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

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

/* Underline Hover Animation */
.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu Toggle (Hidden by default on desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
    }

    /* Active state toggled via JS */
    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.25rem;
    }

    /* Animate Hamburger into an 'X' when active */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


.intro { background:url(../images/geo-bg.png) no-repeat center center; background-size:cover; padding:8vw; }
.intro .intro-container { width:50%; }
.intro .intro-container.sub { width:100%; }
.intro .intro-container > div { border:19px solid #f76f3b; background-color:rgba(255,255,255,.5); color:#353535; padding: 20px 40px;text-align: left; }
.intro .intro-container.sub > div {  border-color: #4A99C5; }
.grid { display:grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.grid > div { font-size:.8em;padding-right: 1rem; }
.grid > div > strong { display:inline-block; margin-bottom:1rem; }
.grid ul { margin-left:1rem; }
@media (max-width: 768px) {
	.intro .intro-container { width:auto; }
	.intro .intro-container > div { padding:20px; }
	.grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.sticky-statement{
  min-height: 100vh;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
	text-transform:uppercase;
}

.wrapper {
  transition: background .7s ease;
}
.section {
    color:#ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10vh 10vw;
/*    text-align: center;*/
}

.section p { text-align:left; }
.section img { width:100%; height:auto; }
.section.portfolio div { width:84vw; margin:auto;position:relative; }
@media (max-width: 768px) {
	.section {min-height: 100vh; padding: 10vw; }
}
.short {
  height: var(100vh/3);
}

.title {
  font-weight: 100;
/*  font-size: 4vw;*/
  color: #ffffff;
  text-align:center;
}

.placeholder { display:flex; background-color:#E9E9E9; margin:10px; color:#000; justify-content: center; align-items:center; }
.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 10px;
}
.grid-container span { width:100%;height:200px; }
