/* CSS Document */

body {
    margin: 0;
    font-family: "open-sans",sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    text-align: center;
background-color: #ffffff;
background-image: linear-gradient(315deg, #ffffff 0%, #1e90ff 74%);	
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;	

    background: radial-gradient(circle at top left, #ff7f11, #ffb703, #fb8500, #d00000);
    background: linear-gradient(160deg, #606c38, #283618, #dda15e, #bc6c25);
    background: linear-gradient( 135deg, #8b2f1c, #d97706, #f59e0b, #fcd34d, #78350f );
    background-attachment: fixed;
    background-size: cover;

}

h2 {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;	
  font-size:2rem; 
	
}

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

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
	position: relative; 
	z-index:12; 
}

.hero {
background: linear-gradient(159deg, rgba(65,105,225,.8) 0%, rgba(137,207,240,.8) 100%);
    color: #333; /* Adjust text color for readability */
    padding: 50px 20px;
    text-align: center;
	border-radius:14px; 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;	
	position: relative; 
	overflow: hidden; 

}

.hero.autumn {
    background: linear-gradient(120deg, #432818, #99582a, #bb9457, #ffe6a7);    
}

.hero h1 img {
    max-width: 180px; /* Adjust this value to suit your design */
    height: auto; /* Ensures the aspect ratio is preserved */
    margin: 0 auto; /* Optional: Centers the image if needed */
    display: block; /* Keeps it tidy in case of inline issues */
}

.hero h1, .hero h2 {
	z-index: 5; 
}

/* subhead ... span */

h2.slogan {

	font-style: normal; 
	font-weight: bold;
	font-size:1.7rem
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); } /* Slight increase */
  100% { transform: scale(1); }
}

.move {
  display: inline-block;
  font-weight: bold;
  color: #ff8c00; /* Adjust for branding */
  animation: pulse 1.5s ease-in-out infinite; /* Continuous pulsing */
}


/* end of subhead */ 

@media (max-width: 600px) {
    .hero h1 img {
        max-width: 120px;
    }
	
	.cloud {
		width:100px; 
		height:60px; 
	}
}


/* for Summer clouds */ 

@keyframes cloudDrift {
  0% { transform: translateX(-200px); opacity: 0.8; }
  100% { transform: translateX(100vw); opacity: 1; }
}

.cloud {
  position: absolute;
  width: 160px; /* Adjust as needed */
  height:100px; 
    animation: cloudDrift 40s linear infinite;
  background-image:url("images/cloud.png"); 
  background-size:contain; 
	z-index: 3; 
}

.cloud-1 { 
	top: 10%; 
	animation-duration: 35s;
	
}
.cloud-2 { 
	top: 60%; 
	left:35%; 
	opacity:.6;
	animation-duration: 40s; 
}
.cloud-3 { 
	top: 32%; 
	left:65%; 
	animation-duration: 45s; 
}

.sun {
  position: absolute;
  top: -50px; /* Adjust so it peeks from above */
  left: -50px; /* Adjust to place it slightly outside the header */
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #FFD700 30%, #FFA500 80%); /* Warm gradient */
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.5); /* Soft glow */
	z-index: 1; 
/*	animation: sunSweep 2s ease-in-out forwards;*/
	 animation: sunRoll 2s ease-in-out forwards;
	
}

@keyframes sunSweep {
  0% { transform: rotate(-45deg) translateX(100vw); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: rotate(0deg) translateX(-50px); opacity: 1; }
}

@keyframes sunRoll {
  0% { transform: rotate(-15deg) translateX(50px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: rotate(0deg) translateX(-50px); opacity: 1; }
}



/* end of Summer clouds header */




.contact a {
	color:#007BFF; 
	 transition: transform 0.5s ease; 
}

.contact a:hover {
	font-style:italic; 
	transform:scale(1.05); 
}

.portfolio {
    margin: 30px 0;
}

.carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Hides overflowing content */
    width: 100%; /* Responsive width */
}

.card-container {
    display: flex; /* Lays out cards horizontally */
    gap: 20px; /* Space between cards */
    transition: transform 0.5s ease; /* Smooth slide animation */
    /* Adjust for responsive layout */
/*	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    padding: 20px;
    justify-items: center; /* Ensures cards align properly within the grid */
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}




/* https://codepen.io/edeesims/pen/wvpYWW */

.card {

  width: 300px;
  height: 300px;

  perspective: 500px;
}

.card .content {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);

  transition: transform 1s;
  transform-style: preserve-3d;
}

.card:hover .content {
  transform: rotateY( 180deg ) ;
  transition: transform 0.5s;
}

.front,
.back {
  position: absolute;
  height: 100%;
  width: 100%;
  background: white;

  color: #03446A;
  text-align: center;
  font-size: 60px;
  border-radius: 5px;
  backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
	
}

.front {

    background-size: cover;
    background-position: center;	
	
}

#card1 .front {
	    background-image: url('screens/ejukes-spin-sm.gif'); 
}

#card2 .front {
	    background-image: url('screens/screen-sliceislands.jpg'); 
}

#card3 .front {
	    background-image: url('screens/screen-twoway-demo.gif'); 
}

#card4 .front {
	    background-image: url('screens/screen-cableGauge.jpg'); 
}

#card5 .front {
	    background-image: url('screens/nytimes-logo.jpg'); 
}

#card6 .front {
	    background-image: url('screens/screen-boisetaprooms.png'); 
}

.front h3 {
	    position: relative;

    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 26px;
}

.back {
  background: #03446A;
  color: white;
  transform: rotateY( 180deg );
  width: 300px;
  height: 300px;	
	
}

.back h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.back p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4; /* Improves readability */
}

/* Button Link */
.button-link {
    display: inline-block;
    background-color: #007BFF; /* Button color */
    color: white;
    text-decoration: none;
    font-weight: bold;
	font-size: 14px; 
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds depth */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-link:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}




/* end of cards */ 


.sect, .news, .portfolio, .about, .what-i-offer, .contact,.blog-lab, .recommended,.matt-elsewhere, .clients {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sect.letsister {
	background-color: #cdc1ff;
background-image: linear-gradient(316deg, #cdc1ff 0%, #e5d9f2 74%);
}

.news {
	
background: radial-gradient(circle at top left, #ff7f11, #ffb703, #fb8500, #d00000);

}

.news h2 {
	color:#fff; 
}

.news .newsMod {
	
	padding:20px; 
	border-radius: 9px; 
	border:1px solid #000; 
	margin:24px 0; 
	display: flex;
	flex-flow: row nowrap; 
	justify-content: space-between; 
	
}

.connie {
	margin:10px auto; 
	display:flex; 
	flex-flow:column; 
	justify-content: center; 
	align-items: center;
	max-width:70%; 
}

.newsMod img, .holdem img {
	width:30%; 
	max-width:270px; 
}

.newsMod:nth-child(odd) {
background-color: #f2f0ef;
background-image: linear-gradient(315deg, #f2f0ef 0%, #fbceb1 74%);

}

.newsMod:nth-child(even) {
background-color: #fec84e;
background-image: linear-gradient(315deg, #fec84e 0%, #ffdea8 74%);
}

.newsMod .connie a.blue-link {
	max-width:260px; 
}


.section-autumn-green {
  background: linear-gradient(
    135deg,
    #2f5233,   /* deep forest green */
    #52734d,   /* mossy green */
    #a68a64,   /* warm earthy tan */
    #d9ae5f,   /* golden harvest */
    #f1dca7    /* soft autumn sunlight */
  );
  background-attachment: fixed;
  background-size: cover;
  color: #fff; /* ensures text pops */
  padding: 2rem;
}




.holdem {
		display: flex;
	flex-flow: row nowrap; 
	justify-content: space-between; 
}

/* re. BOUNCE OF NEWS MODS */ 
@keyframes bounceLeft {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    20% { transform: translateX(-50px) translateY(-30px); opacity: 1; }
    40% { transform: translateX(60px) translateY(20px); }
    60% { transform: translateX(-30px) translateY(-50px); }
    80% { transform: translateX(20px) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes bounceRight {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    20% { transform: translateX(50px) translateY(-30px); opacity: 1; }
    40% { transform: translateX(-60px) translateY(20px); }
    60% { transform: translateX(30px) translateY(-50px); }
    80% { transform: translateX(-20px) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}


.newsMod.bounceIn:nth-child(odd) {
    animation: bounceLeft 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.newsMod.bounceIn:nth-child(even) {
    animation: bounceRight 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* END BOUNCE OF NEWS MODS */ 




@media (max-width: 450px) {
	div.newsMod.dropit {
		flex-flow:column; 
		align-items: center; 
	}
	
	div.newsMod.dropit img {
		width:74%; 
	}

}


.about {
background-color: #f9ff60;
background-image: linear-gradient(315deg, #f9ff60 0%, #ffef77 74%);	

	
}

.what-i-offer {
background-color: #fff293;
background-image: linear-gradient(315deg, #fff293 0%, #ffe884 74%);	
	
}


.about-content {
    display: flex;
    flex-wrap: wrap; /* Allows content to wrap on smaller screens */
    gap: 15px; /* Adds space between photo and text */
    padding: 20px;
    align-items: center; /* Aligns photo and text vertically */
}

.about-photo {
    width: 36%; /* Side-by-side width */
    border-radius: 8px; /* Rounds edges for a polished look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle depth */
}

.about-text {
    width: 60%; /* Side-by-side width */
    font-size: 18px;
    line-height: 1.6;
    color: #03446A;
}

@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Stacks the content vertically */
        text-align: center; /* Centers text */
    }

    .about-photo {
        width: 80%; /* Full width for smaller screens */
		margin:20px auto;
		max-width:300px; 
    }

    .about-text {
        width: 100%; /* Full width for smaller screens */
        padding-top: 15px; /* Adds spacing between photo and text */
    }
}

.what-i-offer .feature {
    border: 1px solid #03446A;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f7f7f7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle depth */
}

.what-i-offer .feature h3 {
    color: #03446A;
    font-size: 20px;
    margin-bottom: 8px;
}

.what-i-offer .feature p {
    color: #555;
    font-size: 16px;
}

/* may 2025 new module within what i offer: stuff i know */

.stuff-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 300px; /* Adjust as needed */
  overflow: hidden; /* Prevents any flyaway elements from lingering */
}


.stuff {
  position: absolute;
  font-size: 24px;
  opacity: 0; /* Hidden initially */
  transform: scale(0.2) translateZ(-500px);
}

.tellMe {
  display: none; /* Hidden until triggered */
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  padding: 15px 30px;
  background: linear-gradient(to right, #ff8c00, #ffd700); /* Warm, inviting gradient */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle depth */

  transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;
}


/* end of stuff i know */ 


.blog-lab {
    padding: 20px;
    
}

.blog-lab-content {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    gap: 20px; /* Space between columns */
    align-items: center;
}

.blog-text {
    width: 60%; /* Left column width */
    font-size: 18px;
    line-height: 1.6;
    color: #03446A;
}

.blog-image {
    width: 37%; /* Right column width */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle depth */
}

.blog-link, .blue-link  {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease, transform 0.2s ease;
    font-size: 16px;
    margin-top: 10px;
}

.blog-link:hover, .blue-link:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

@media (max-width: 768px) {
    .blog-lab-content {
        flex-direction: column; /* Stacks columns vertically */
        text-align: center; /* Centers text */
    }

    .blog-text,
    .blog-image {
        width: 100%; /* Full width for smaller screens */
		max-width: 320px; 
    }
}

.recommended-carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.recommended-card-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.recommended-card {
    min-width: 300px;
    max-width: 300px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text neatly within the card */
    font-size: 16px;
    line-height: 1.6;
    color: #03446A;
}

.recommended-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.recommended-arrow-left {
    left: 10px;
}

.recommended-arrow-right {
    right: 10px;
}

.recommended-arrow:hover {
    background-color: #0056b3;
}


.recommended-linkedin-button {
    /* Button styles */
    display: inline-block;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;	
	
}

.recommended-linkedin-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.matt-elsewhere {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #f0f8ff); /* Example gradient */
    color: #333; /* Adjust text color for readability */
	
  --s: 57px; /* control the size*/
  --c1: rgba(51, 102, 102, 0.5); /* 50% opacity */
  --c2: #ffffff;
  
  --_g: #0000 90deg,var(--c1) 0;
  background: 
    conic-gradient(from 90deg at 2px 2px,var(--_g)),
    conic-gradient(from 90deg at 1px 1px,var(--_g)),
    var(--c2);
  background-size: var(--s) var(--s), calc(var(--s)/5) calc(var(--s)/5);	
	
	
}

.matt-elsewhere h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2cba5f;
    text-shadow: 2px 2px white;
}

.elsewhere-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
    justify-content: center;
}

.elsewhere-card {
    width: 300px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255,255,255,.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle depth */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elsewhere-card h3 {
    font-size: 20px;
    color: #4A4A4A;
    margin-bottom: 10px;
}

.elsewhere-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.elsewhere-card a {
    color: white;
    background-color: #32cd32;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease, transform 0.2s ease;
}

.elsewhere-card a:hover {
    background-color: #2cba5f;
    transform: scale(1.05);
}

.elsewhere-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}


/* CLIENT WORD BUBBLE MOVING */ 

        .bubble-container {
            position: relative;

            min-height: 300px;
        }

        .bubble {
            position: absolute;
            font-size: calc(1rem + 1vw);
			font-size:16px; 
            font-weight: bold;
            color: #333;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

/* END OF WORD BUBBLE */ 

/* TEAM PLAYER PHOTO GALLERY */ 
.team-player {
  text-align: center;
  padding: 50px 0;
  position: relative;
  padding: 50px 0;
  overflow: hidden; /* Prevent images from rising up */	
	
background-color: #f4c430;
background-image: linear-gradient(315deg, #f4c430 0%, #fdd017 74%);
	
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  margin: auto;
  overflow: hidden; /* Prevents images from spilling outside */
}

.slideshow-container .slide-track {
  display: flex;
  justify-content: center;
  align-items: center;
	position: relative; 
}

.slideshow-container .slide {
  display: none; /* Hide all slides by default */
  width: 100%;
  width: 100%; /* Stretches to container */
  max-width: 500px; /* Keeps size consistent */
  height: 300px; /* Forces same height */
  object-fit: cover; /* Crops excess instead of stretching */
  border-radius: 10px;		
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
}


@keyframes peelAway {
  0% { transform: rotateY(0deg) translateX(0); opacity: 1; }
  40% { transform: rotateY(-15deg) translateX(-50px); opacity: 0.8; }
  100% { transform: rotateY(-90deg) translateX(-300px); opacity: 0; }
}

.slideshow-container .slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);

}

.slide.outgoing {
  animation: peelAway 1.2s ease-in-out;
}


/* END OF PHOTO GALLERY */ 


.footer {
    text-align: center;
    padding: 15px;
    background-color: #f7f7f7; /* Neutral to complement the site */
    color: #fff; /* Subtle, professional text color */
    font-size: 14px; /* Slightly smaller font to minimize focus */
    border-top: 1px solid #e0e0e0; /* A light separator for visual clarity */
background: rgba(65,105,225,.8);
background: linear-gradient(159deg, rgba(65,105,225,.8) 0%, rgba(137,207,240,.8) 100%);
		border-radius:14px; 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;	

}

.footer p {
    margin: 0; /* Removes default margin for clean alignment */
}






