/* ============================================================
   GLOBAL RESET + FONTS
============================================================ */

* {
    box-sizing: border-box;
}

@font-face {
    font-family: arsenal;
    src: url(fonts/Arsenal-Regular.ttf);
}

@font-face {
    font-family: arsenalBold;
    src: url(fonts/Arsenal-Bold.ttf);
}

@font-face {
    font-family: engry;
    src: url(fonts/engry.otf) format("opentype");
}

/* ============================================================
   GLOBAL ELEMENTS
============================================================ */

html {
    font-size: calc(15px + 0.390625vw);
    margin: 0;
    font-family: engry;
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #D4E6EB;
    width: 100%;
    overflow-x: hidden;
}

img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p {
    font-family: arsenalBold;
    font-size: 1.2rem;
}

ul {
    list-style: none;
}

/* ============================================================
   HEADER + NAVIGATION
============================================================ */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0A1128;
    color: #F0F5F6;
    position: fixed;
    width: 100%;
    padding-top: 1vw;
    padding-bottom: 1vw;
    z-index: 999;
}

.headerText {
    padding-left: 1.5em;
    white-space: nowrap;
}

.headerLink {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    padding-right: 40px;
}

li > a {
    text-decoration: none;
    color: #F0F5F6;
    white-space: nowrap;
    font-family: arsenalBold;
}

li > a:hover {
    color: #A9D0DA;
}

/* Hamburger Menu */

.pageSelectContainer {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 998;
    background-color: #4da1b9c4;
    transition: all 1.4s ease;
    padding-top: 20vh;
}

.hamburgerList {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10vw;
}

#hamburgerContainer {
    display: none;
    margin-right: 6%;
    cursor: pointer;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    position: absolute;
    height: 40px;
    width: 50px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger > div {
    position: relative;
    background: #F0EFE5;
    height: 3px;
    width: 80%;
    transition: all 0.4s ease;
}

.hamburger > div::before,
.hamburger > div::after {
    content: '';
    position: absolute;
    top: -10px;
    background: #F0EFE5;
    width: 100%;
    height: 3px;
    transition: all 0.4s ease;
}

.hamburger > div::after {
    top: 10px;
}

#toggler {
    display: none;
}

.toggled + .hamburger > div {
    background: rgba(0,0,0,0);
}

.toggled + .hamburger > div::before {
    top: 0;
    transform: rotate(45deg);
}

.toggled + .hamburger > div::after {
    top: 0;
    transform: rotate(135deg);
}

#burgerLink {
    font-size: 2em;
    text-align: center;
    font-family: engry;
}

#burgerLink:hover {
    color: #0A1128;
}

@media screen and (max-width: 767px) {
    .headerLink {
        display: none !important;
    }
    #hamburgerContainer {
        display: flex !important;
    }
}

/* ============================================================
   HERO SECTION
============================================================ */

.mainImgDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: calc(40px + 4vw);
    width: 100%;
}

.mainImg {
    width: 100%;
}

.mainImgText {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 40%;
    left: 72%;
    transform: translate(-40%, -72%);
    gap: .8em;
    white-space: nowrap;
}

.hero {
    color: #F0F5F6;
    font-size: 4vw;
    margin: -30px;
}

@media screen and (max-width: 540px) {
    .hero {
        margin: -20px !important;
    }
}

.heroSub {
    color: #F0F5F6;
    font-size: 2vw;
}

/* ============================================================
   ABOUT SECTION
============================================================ */

.indexMain {
    display: flex;
    width: 100%;
    background-color: #1283a28f;
    padding: 1.5rem;
    margin-top: 4rem;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
}

.textHolder {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 1.5rem;
    color: #F0F5F6;
}

.indexAbout {
    font-size: 3vw;
    margin-top: 0;
    margin-bottom: .5rem;
}

.indexUnderline {
    width: 80%;
    background-color: #D4E6EB;
    height: 5px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.aboutImg {
    width: 50%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width: 900px) {
    .indexMain {
        flex-direction: column;
        padding: 1.5rem;
        gap: 2rem;
    }
    .textHolder,
    .aboutImg {
        width: 100%;
    }
}

/* ============================================================
   HOMEPAGE SLIDESHOW
============================================================ */

.bigFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.slideshowBackground {
    background-color: #A9D0DA;
    padding: 3.5em;
    margin-top: 5em;
    width: 100%;
    display: flex;
    justify-content: center;
}

.slideshowBorder {
    padding: 3%;
    background-color: #4DA1B9;
    border-radius: 10px;
    width: 90%;
}

.slideshowBlock {
    background-color: #2d869e75;
    width: 100%;
    height: 700px;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .slideshowBlock {
        display: none !important;
    }
    .slideshowBorder {
        width: 100% !important;
    }
}

@media screen and (max-width: 680px) {
    .slideshowBackground {
        padding: 0 !important;
        background-color: #D4E6EB !important;
    }
    .slideshowBorder {
        padding: 0 !important;
        background-color: #D4E6EB !important;
    }
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.Containers {
    display: none;
    width: 100%;
}

.carouselPic {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.Back, .Forward {
    cursor: pointer;
    position: absolute;
    top: 48%;
    padding: 17px;
    color: #F0F5F6;
    font-weight: bold;
    font-size: 19px;
    background-color: #a9d0da5d;
    border-radius: 5px;
}

.Forward {
    right: 0;
}

.Back:hover, .Forward:hover {
    font-size: 25px;
}

.Info {
    color: #F0F5F6;
    font-size: 60px;
    padding: 10px 14px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.dotContainer {
    background-color: #a9d0da5d;
    position: absolute;
    border-radius: 5px;
    display: flex;
    padding: 4px;
    gap: 2px;
    top: 95%;
    left: 45%;
}

.dots {
    cursor: pointer;
    height: 8px;
    width: 8px;
    background-color: #F0F5F6;
    border-radius: 50%;
}

.enable, .dots:hover {
    background-color: #0A1128;
}

.fade {
    animation: fade 1.4s;
}

@keyframes fade {
    from { opacity: .5; }
    to { opacity: 2; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */

.contactContent {
    display: flex;
    width: 80%;
    align-items: flex-start;
    justify-content: center;
    margin-top: 8.5%;
    gap: 3em;
}

.contactCard {
    padding: 3%;
    width: 45%;
    background-color: #1283a2d0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.parallaxWrapper {
    overflow: hidden;
}

.parallaxImage {
    width: 45%;
}

.parallaxImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
}

.contactHeader {
    color: #F0F5F6;
    font-size: 3rem;
    text-align: center;
}

.contactForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 5%;
    align-items: center;
    padding: 0 2%;
}

.infoContainer {
    display: flex;
    gap: 1em;
    width: 100%;
    justify-content: center;
}

.infoContainer > input {
    height: 2rem;
    width: 50%;
}

.contactForm > button {
    height: 2.5rem;
    width: 50%;
}

.contactForm > textarea {
    height: 10rem;
    width: 100%;
}

.contactImg {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* ============================================================
   RESUME PAGE
============================================================ */

.resumeContainer {
    max-width: 1100px;
	margin: 2.5rem auto 4rem;
/*	
    margin: 6rem auto 4rem;
*/	
    padding: 0 1rem;
    text-align: center;
}

.resumeImage {
	width: 100%;
	max-width: 420px;	/* sweet spot */
	height: auto;
	border-radius: 4px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25); 
}
.resumeTitle {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

/* Side-by-side layout */
.resumeFlex {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
}

/* Headshot sizing */
.resumeHeadshot img {
    width: 260px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


/* PDF viewer */
.resumeViewer iframe {
	width: 100%;
	max-width: 700px;
	height: 75vh;	/* was 95vh — now much cleaner */
	border: none; 
}


/* Two-button layout */

.resumeButtons {
	display: flex;
	justify-content: center;
	gap: 2.2rem; /* was 1.5rem */
	margin-top: 2rem; /* adds a little space above the buttons */ 
}

.downloadBtn {
    padding: 0.75rem 1.5rem;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.downloadBtn:hover {
    background: #162d6b;
}

/* Mobile */
@media (max-width: 900px) {
    .resumeFlex {
        flex-direction: column;
        align-items: center;
    }

    .resumeViewer iframe {
        height: 60vh;   /* ← updated from 70vh */
        max-width: 100%;
    }



    .downloadBtn {
        width: 80%;
        margin: 0 auto;
    }
}

/* Mobile stacking */
@media (max-width: 900px) {
    .resumeFlex {
        flex-direction: column;
        align-items: center;
    }

    .resumeViewer iframe {
        height: 70vh;
        max-width: 100%;
    }

    .resumeButtons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .downloadBtn {
        width: 80%;
        margin: 0 auto;
    }
}

.downloadBtn:hover {
    background: #162d6b;
}

/* ============================================================
   CONTACT PAGE — MOBILE FIXES
============================================================ */

@media screen and (max-width: 900px) {

    .contactContent {
        flex-direction: column;
        margin-top: 2rem;
        width: 100%;
        gap: 1.5rem;
        align-items: center;
    }

    .parallaxImage,
    .contactImg {
        width: 100%;
        height: 26vh;
        object-fit: cover;
        position: relative;
        border-radius: 0;
    }

    .parallaxImage::after,
    .contactImg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.15)
        );
        pointer-events: none;
    }

    .contactHeader {
        font-size: 2.4rem;
        color: #ffffff;
        text-shadow: 0 3px 8px rgba(0,0,0,0.6);
        margin-top: -2.2rem;
        margin-bottom: 1rem;
        z-index: 2;
        position: relative;
        text-align: center;
    }

    .contactCard {
        width: 92%;
        padding: 1.8rem;
        background: linear-gradient(
            to bottom right,
            rgba(18, 131, 162, 0.95),
            rgba(10, 17, 40, 0.85)
        );
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

    .contactForm {
        width: 100%;
        gap: 1rem;
        padding: 0;
    }

    .contactForm input,
    .contactForm textarea {
        background: #ffffff;
        border: 1px solid #c7dce2;
        border-radius: 6px;
        padding: 0.8rem;
        font-size: 16px;
        color: #0A1128;
    }

    .contactForm input::placeholder,
    .contactForm textarea::placeholder {
        color: #6a7a85;
        opacity: 1;
    }

    .contactForm textarea {
        min-height: 8rem;
    }

    input, textarea {
        font-size: 16px;
    }

    /* Resume mobile */
    .resumeViewer iframe {
        height: 70vh;
        max-width: 100%;
    }
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
    display: flex;
    justify-content: center;
    background-color: #0A1128;
    align-items: center;
    width: 100%;
}

.footer img {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.footer img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.footerText {
    color: #F0F5F6;
    font-family: arsenal;
    font-size: .7em;
}

.insta,
.youtube {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

@media screen and (max-width: 600px) {
    .insta,
    .youtube {
        height: 24px;
        width: 24px;
    }
}

/* ============================================================
   FULLSCREEN MEDIA SLIDESHOW
============================================================ */

.fullscreen-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.header {
    position: relative;
    z-index: 10;
}

.mediaSlideImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@media screen and (orientation: landscape) {
    .mediaSlideImg {
        object-fit: contain;
        background: black;
    }
}

@media screen and (max-width: 900px) {
    .mediaSlideImg {
        object-fit: contain;
        background: black;
    }
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 12px;
    color: white;
    font-size: 2rem;
    user-select: none;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: 0.3s;
}

.prev:hover, .next:hover {
    opacity: 1;
}

.prev { left: 20px; }
.next { right: 20px; }

.dot-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text