/* Home and Base styles*/

* { box-sizing: border-box; }
body {
    font-family: Arial, sans-serif;
    margin: 0;
    position: relative;
    background-image: url("./photos/water_61.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    overflow-y: auto;
    padding-bottom: 320px
}

header {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'OCRA';
    font-size: 30px;
    text-shadow: 4px 4px #00CEC8;
    padding: 15px;
    text-align: center;
    cursor: url('https://cur.cursors-4u.net/nature/nat-7/nat614.cur'), auto;
}
header h1 {
  margin: 0;
  font-size: 80px;
  line-height: 1;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    font-family: 'Arial';
    font-weight: bold;
    font-size: 16px;
    color: #111184;
    text-decoration: none;
    cursor: url('https://cur.cursors-4u.net/nature/nat-7/nat614.cur'), auto;
}
p {
    font-size: 16px;
    font-family: 'Pixel';
    color: #333;
    line-height: 1.6;
    text-align: left;
    padding: 20px;
}

.container {
  display: flex; 
  margin-top: -40px; 
}
.section {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}
.left-section {
    position: relative;  
    overflow: hidden; 
    width: 200px; 
    height: 500px; 
    background: #7f9dda;
    padding: 10px;
    margin: 20px;
    margin-left: 40px;
    border-radius: 10px;
    border-style: ridge;
    border-width: 5px;
} 
.right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 40px 20px 20px;
    width: 540px;            
}

.goldie{
  position: relative; 
  width: 540px;
  height: 400px;
  border-radius: 10px;
  border-style: ridge;
  border-width: 5px;
  margin-top: -20px;

  background-image: url('./photos/goldie.JPG');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.rip{
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  color: white;
}
.bottom-right{
  width: 540px;
  height: 300px;
  padding: 10px;
  border-radius: 10px;
  border-style: ridge;
  border-width: 5px;

  background-image: url('./photos/bladee.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.missed{
  margin: 0;
  color: white;
}

.left-section .wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;             
  height: 100px;
  background-image: url('./photos/wave.png');
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 100px;
  pointer-events: none;
  transform: translateZ(0);
}

/* overlay tint that blends with the wave image */
.left-section .wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 179, 170, 0.65); 
  mix-blend-mode: screen;          
  pointer-events: none;
}

.left-section .wave1 {
  bottom: 0;
  opacity: 0.65;
  animation: wave-animation 10s linear infinite;
  z-index: 0;
}

.left-section .wave2 {
  bottom: 12px;
  opacity: 0.45;
  animation: wave-animation 14s linear infinite reverse;
  z-index: 0;
}
.left-section .wave3 {
  bottom: 24px;
  opacity: 0.30;
  animation: wave-animation 18s linear infinite;
  z-index: 0;
}
.left-section .wave4 {
  bottom: 36px;
  opacity: 0.18;
  animation: wave-animation 22s linear infinite reverse;
  z-index: 0;
}

.left-section > *:not(.wave) {
  position: relative;
  z-index: 2;
}

@keyframes wave-animation {
  from { background-position-x: 0; }
  to   { background-position-x: -1000px; }
}


.bubbles {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: nowrap;
}

.about, .blog, .medias, .contact, .fish1 {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.about {
    background-image: url(./photos/bubbles.png);
    height: 125px;
    width: 125px;
    align-self: flex-start;
    margin-right: 40px;
    margin-bottom: 18px;
}

.about:hover {
    height: 135px;
    width: 135px;
}

.blog {
    background-image: url(./photos/bubbles.png);
    height: 150px;
    width: 150px;
    margin-right: 30px;
}

.blog:hover {
    height: 115px;
    width: 115px;
    
}

.medias {
    background-image: url(./photos/bubbles.png);
    height: 125px;
    width: 125px;
    margin-bottom: -5px;
}

.medias:hover {
    height: 155px;
    width: 155px;
}

.contact {
    background-image: url(./photos/bubbles.png);
    height: 130px;
    width: 130px;
    margin-bottom: 30px;
}

.contact:hover {
    height: 140px;
    width: 140px;
}

.about a, .blog a, .contact a, .medias a, .fish1 a{
    text-decoration: none;
    color: #fff;
    filter: drop-shadow(1px 1px 0 #00CEC8);
    transition: 0.3s;
    font-family: Inconsolata;
    text-align: center;
}

.about a {
    font-size: 28px;
    transform: rotate(-14deg);
}

.blog a {
    font-size: 23px;
    transform: rotate(-14deg);
}

.medias a {
    font-size: 26px;
    transform: rotate(-14deg);
}

.contact a {
    font-size: 26px;
    transform: rotate(-14deg);
}

.about a:hover, .blog a:hover, .medias a:hover, .contact a:hover, .fish1 a:hover {
    filter: drop-shadow(1px 1px 0 #ffffff00);
    text-decoration: underline;
}

.fish1 {
  background-image: url(./photos/sealife_7.png);
  position: absolute;
  align-self: flex-start;
  right: 40px;
  top: 30px;
  font-size: 26px;
  transform: rotate(14deg);
  height: 170px;
  width: 170px;
}
.fish1:hover {
    height: 160px;
}

.small-bubble1,
.small-bubble2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;          /* IMPORTANT in flex rows */
  width: 60px;             /* give it a predictable box */
  height: 60px;
  position: relative;
}
.small-bubble1 img,
.small-bubble2 img {
  height: 50px;
  width: auto;
  display: block;
}

.small-bubble1 { transform: translate(5px, -10px); }
.small-bubble2 { transform: translate(-15px, -30px); }

.footer-scene {
    position: fixed;
    bottom: 0;
    left: 0;
    
    width: 100%;
    height: 300px; 
    pointer-events: none;
    z-index: 0;
}

.footer-rocks {
    position: absolute;
    bottom: 10px;
    left: 150px;
    transform: translateX(-50%) scaleX(-1);
    height: 280px;
    z-index: 0;
}


.footer-text{
  height: 50px;
  font-family: 'Pixel';
  color: white;
  text-align: center;
  bottom: 0;
  position: absolute;

}


/*footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;  
    height: 75px;
    background-image: url('./photos/wave.png');
    background-repeat: repeat-x;
    background-size: auto 100px;
    animation: wave-animation 10s linear infinite;
    z-index: 1;
}*/

footer {
  bottom: 0;
  text-align: center;
}

@font-face {
  font-family: 'OCRA';
  src: url('fonts/OCR-a___.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconsolata';
  src: url('fonts/Inconsolata-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pixel';
  src: url("fonts/pixel_times/Pixel Times.ttf");
}

@font-face {
  font-family: 'Data70';
  src: url("fonts/Data70.ttf");
}
@media (pointer: fine) {
  header {
    cursor: url('https://cur.cursors-4u.net/nature/nat-7/nat614.cur'), auto;
  }
    body {
    cursor: url('https://cur.cursors-4u.net/nature/nat-7/nat614.cur'), auto;
  }
  nav ul li a {
    cursor: url('https://cur.cursors-4u.net/nature/nat-7/nat614.cur'), auto;
  }
}

/* About styles*/

main {
  display: flex;
  justify-content: center;
  padding: 24px;
}

.sidebar {
  position: relative;
  margin: 50px;
  width: 250px;
  height: 600px;
  border-radius: 10px;
  border-style: ridge;
  border-width: 5px;
  border-color: #FFFF00;
  margin-top: -20px;

  background-color: rgba(150, 236, 80, 0.611);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  text-align: center;
  color: #FF69B4;
}

.quick-jump {
  background-color: #FF69B4;
  margin: 10px;
  height: 60px;
  border-radius: 10px;
  border-style: ridge;
  border-width: 5px;
}

.post-dropdown{
  margin-top: 5px;
}

.index-toggle {
  background-color: #FF69B4;
  margin-top:20px;
}

.post-title, .post-date {
  font-family: 'Inconsolata';
  color: #FF69B4;
  margin: 10px;
  text-shadow: 1px 1px black;

}

.post-content {
  font-family: 'Inconsolata';
  margin: 15px;
}

.media-library {
  height:700px;
  width:1100px;
  overflow:auto;
  border-color: #333333;
  border-style: solid;
  border-width: 1px;
  background-color:yellowgreen;
  color:white;
  background-color: rgba(154, 205, 50, 0.5);
  scrollbar-color: rgba(179, 0, 255, 0.5);
  font-family:sans-serif;
  padding:10px;
  margin: 0 auto;
}

img {
  opacity: 1;
}

.contact-pets {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-pet {
  position: relative;
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.contact-pet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-pet a {
  position: absolute;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  font-family: Inconsolata;
  filter: drop-shadow(1px 1px 0 #00CEC8);
  transition: 0.3s;
  text-align: center;
  text-decoration: underline;
    
}

.linkedin a {
  color: #0A66C2; /* LinkedIn blue */
  text-decoration: underline;
}

.contact-pet:hover {
  transform: translateY(-10px) scale(1.05);
}

.blogcontent {
  background-color: rgba(255, 148, 112, 0.5);
  border-style: ridge;
  border-width: 5px;
  border-color: #FFFF00;
  position: relative;
  margin: 50px;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-pics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 200px; /* control size */
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}
