
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* soft gradient */
  color: #333;
}

header {
  background: linear-gradient(90deg, #ff69b4, #ff85c1);
  color: black;
  padding: 2rem;
  text-align: center;
  border-bottom: 5px solid #32cd32;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}


nav {
  background: #32cd32;
  padding: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff69b4;
}


section {
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}




.examples-section h2 {
  color: #32cd32;
  font-size: 2rem;
}


.gallery-section {
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
}

.gallery-section h2 {
  color: #32cd32;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}




section {
    padding: 20px;
    margin: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}

button {
    background-color: #ff69b4; /* yo,pink */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #32cd32; /* green !!*/
}


body 


::before,
::after {
    
}


@keyframes pawPrintAnimation {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) !important;
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) rotate(0deg) !important; 
    }
    100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) !important; 
    }
}


.paw-animation {
    position: absolute;
    width: 30px; 
    height: 30px; 
    background-image: url('images/paw-print3.png'); 
    background-size: contain;
    animation: pawPrintAnimation 1s forwards; 
    opacity: 0; /* To start invisible */
    transition: transform 0.5s; 
}

#toggleLang {
    position: absolute;
    top: 10px;         
    right: 20px;       
    padding: 10px 15px;
    background-color: #ff69b4; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;    
}

#toggleLang:hover {
    background-color: #32cd32; 
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: url('raccoon-bg.jpg') no-repeat center center fixed; /* Add your raccoon image */
  background-size: cover;
  color: #333;
}

/* Overlay to soften background */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}



.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 15px; /* smooth angles */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6c63ff;
  outline: none;
}

.contact-form button {
  background: #6c63ff;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #5146d9;
}


.confirmation {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #2e7d32;
  display: none; 
}


nav {
  background-color: #32cd32; 
  padding: 10px;
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}


nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav a:hover {
  color: #ff69b4; /* pink hover accent */
}

nav a.active {
  border-bottom: 2px solid #ff69b4; 
  padding-bottom: 0.2rem;
}


.mission-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mission-image {
  width: 40%;
  border-radius: 10px;
  object-fit: cover;
}

.mission-text {
  width: 60%;
}


.axes-section {
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
}

.axes-grid {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.axis-card {
  flex: 1;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.axis-card:hover {
  transform: translateY(-5px);
}

.axis-card h3 {
  color: #32cd32; 
  margin-bottom: 1rem;
}

.axis-card p {
  color: #555;
  line-height: 1.6;
}
/* Challenges section */
#challenges {
  display: flex;
  align-items: center;
  margin: 3rem auto;
  max-width: 1000px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.feature-image {
  max-width: 500px;   
  height: auto;       
  border-radius: 10px;
  object-fit: cover;  
  margin-right: 1.5rem;
}

/* Feature row layout */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-description {
  flex: 1; 
}


.challenge-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.challenge-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.5;
}




.bandeau {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #32cd32; 
  color: white;
  padding: 10px 15px;
  overflow: hidden;
  z-index: 2000;
  border-top: 3px solid #ff69b4; /* pink accent */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.bandeau p {
  flex: 1;
  white-space: nowrap;
  animation: ticker 15s linear infinite;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0;
}

@keyframes ticker {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Close button */
.close-bandeau {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 1rem;
}

.close-bandeau:hover {
  color: #ff69b4; /* pink hover */
}


.fade-out {
  animation: fadeOut 0.8s forwards;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}


.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.feature-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.5;
}



.feature-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;   /* perpective==flip */
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;         
}


.axis-card {
  perspective: 1000px; 
}

.card-inner {
  position: relative;
  width: 100%;
  height: 250px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.axis-card:hover .card-inner,
.axis-card:active .card-inner {
  transform: rotateY(180deg); /* probably a lot of dumb things in my styles */
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front {
  background: #f9f9f9;
}

.card-back {
  background: #fff;
  transform: rotateY(180deg);
  padding: 1rem;
  text-align: center;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-top: 1rem;
}


.education-card .card-front { background: #e0f7fa; }   
.alternatives-card .card-front { background: #e8f5e9; } 
.remediation-card .card-front { background: #fff3e0; }  


.examples-section {
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
}

.examples-grid {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.example-card {
  flex: 1;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.example-card:hover {
  transform: translateY(-5px);
}

.example-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.example-card h3 {
  color: #32cd32;
  margin-bottom: 1rem;
}

.example-card ul {
  list-style: none;
  padding: 0;
}

.example-card li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: #555;
}

.example-card li::before {
  
  position: absolute;
  left: 0;
}

.about {
    position:center;
}

.paw {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.fact-box {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: #ff69b4;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  display: none;
  max-width: 250px;
cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-5px);}
}


#nickname {
  display: none; 
}

.captcha {
  margin: 1rem 0;
}

#pawCaptcha {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.2s ease;
}

#pawCaptcha.clicked {
  transform: scale(1.3);
  color: #32cd32; /* I hate css */
}

