/**
* Template Name: SJH Base
* Version: v0.3
* Author: Julian Holzenthal
* File: section.css
*/

/*--------------------------------------------------------------
#0000 - Directory
--------------------------------------------------------------*/
/* #1000 - Sections */
  /* #1001 - Home */
  /* #1002 - Design & Media */
  /* #1003 - Webdesign */
  /* #1004 - About */
  /* #1005 - References */
  /* #1006 - Contact */
  /* #1007 - Impressum & Datenschutz */

/*--------------------------------------------------------------
#1000 - Sections
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#1001 - Hero
--------------------------------------------------------------*/
.hero 
{
  height: 100vh;
  background: linear-gradient(135deg, var(--primary), var(--transparency-color));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image 
{
  margin-top: 3rem;
}

.moving 
{
  animation: float 6s ease-in-out infinite;
}

@keyframes float 
{
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/*--------------------------------------------------------------
#1002 - Design & Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#1003 - Webdesign
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#1004 - About
--------------------------------------------------------------*/
.about 
{
  padding: 80px 0;
  min-height: 100vh;
}

.about .about-content h1 
{
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) 
{
  .about .about-content h1 
  {
    font-size: 2.5rem;
  }
}

.about .about-content h2 
{
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--secondary-color), transparent 20%);
}

.about .about-content h2 .typed 
{
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 768px) 
{
  .about .about-content h2 
  {
    font-size: 1.25rem;
  }
}

.about .about-content p 
{
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--secondary-color), transparent 30%);
}

.about .about-actions 
{
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) 
{
  .about .about-actions 
  {
    flex-direction: column;
  }

  .about .about-actions .btn 
  {
    text-align: center;
  }
}

.about .social-links 
{
  display: flex;
  gap: 1rem;
}

.about .social-links a 
{
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.about .social-links a:hover 
{
  box-shadow: 0 12px 40px var(--liquid-shadow-hover);
  transform: translateY(-3px);
  background: rgba(0, 123, 255, 0.35);
}

.about .about-image 
{
  position: relative;
}

.about .about-image .image-wrapper 
{
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.about .about-image .image-wrapper img 
{
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--liquid-shadow);
  transition: all 0.6s ease;
}

.about .about-image .image-wrapper img:hover 
{
  transform: scale(1.02);
  box-shadow: 0 12px 40px var(--liquid-shadow-hover);
  background: rgba(0, 123, 255, 0.35);
}

.about .about-image .moving-elements 
{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.about .about-image .moving-elements .moving-card 
{
  position: absolute;
  background: var(--primary-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 32px var(--liquid-shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.about .about-image .moving-elements .moving-card i 
{
  font-size: 1.5rem;
  color: var(--accent-color);
  text-shadow: 
    0 0 4px var(--liquid-shadow), 
    0 0 8px var(--liquid-shadow-hover);
}

.about .about-image .moving-elements .moving-card.designmedia
{
  top: 15%;
  right: -15%;
  animation-delay: 0s;
}

.about .about-image .moving-elements .moving-card.webdesign
{
  bottom: 40%;
  left: -5%;
  animation-delay: 1s;
}

.about .about-image .moving-elements .moving-card.socialmedia 
{
  top: 65%;
  right: -5%;
  animation-delay: 2s;
}

@media (max-width: 992px) 
{
  .about .about-image .moving-elements .moving-card 
  {
    display: none;
  }
}

@keyframes float 
{

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) 
{
  .about .about-content 
  {
    text-align: center;
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
#1005 - References
--------------------------------------------------------------*/
.references .references-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.references .references-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-color);
  background: var(--liquid-bg);
  border: 1px solid var(--liquid-border);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--liquid-shadow);
  position: relative;
}

.references .references-filters li:hover {
  box-shadow: 0 12px 40px var(--liquid-shadow-hover);
  transform: translateY(-3px);
  background: rgba(0, 123, 255, 0.35);
}

.references .references-filters li.filter-active 
{
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.references .references-card 
{
  background-color: var(--primary-color);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  border: 1px solid var(--liquid-border);
  box-shadow: 0 8px 32px var(--liquid-shadow);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.references .references-card:hover 
{
  box-shadow: 0 12px 40px var(--liquid-shadow-hover);
  transform: translateY(-3px);
  background: rgba(0, 123, 255, 0.35);
}

.references .references-card:hover .references-img .references-overlay 
{
  opacity: 1;
}

.references .references-card:hover .references-img img 
{
  transform: scale(1.1);
}

.references .references-card .references-img 
{
  position: relative;
  overflow: hidden;
}

.references .references-card .references-img img 
{
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.references .references-card .references-img .references-overlay 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.references .references-card .references-img .references-overlay a 
{
  width: 45px;
  height: 45px;
  color: var(--secondary-color);
  background: var(--liquid-bg);
  border: 1px solid var(--liquid-border);
  border-radius: 25px;
  box-shadow: 0 8px 32px var(--liquid-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.references .references-card .references-img .references-overlay a:hover 
{
  box-shadow: 0 12px 40px var(--liquid-shadow-hover);
  transform: translateY(-3px);
  background: var(--secondary-color);
  transform: translateY(-5px);
  color: var(--accent-color)
}

.references .references-card .references-info 
{
  padding: 20px;
}

.references .references-card .references-info h4 
{
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.references .references-card .references-info p 
{
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.references .references-card .references-info .references-tags 
{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.references .references-card .references-info .references-tags span 
{
  font-size: 0.8rem;
  padding: 4px 12px;
  color: var(--secondary-color);
  background: var(--liquid-bg);
  border: 1px solid var(--liquid-border);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--liquid-shadow);
}

/*--------------------------------------------------------------
#1006 - Contact
--------------------------------------------------------------*/
.contact .contact-form 
{
  background-color: var(--primary-color);
  border: 1px solid var(--liquid-border);
  border-radius: 25px;
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--liquid-shadow);
  transition: all 0.3s ease;
}

@media (max-width: 992px) 
{
  .contact .contact-form 
  {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) 
{
  .contact .contact-form h3 
  {
    font-size: 1.75rem;
  }
}

.contact .contact-form p 
{
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.contact .checkbox-title 
{
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

.contact .checkbox-container
{
  display: flex;             
  justify-content: center;   
  gap: 60px;             
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact .form-check
{
  border: 1px solid var(--liquid-border);
  border-radius: 25px;
  padding-left: 0;
  padding: 7px 7px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-check:hover 
{
    background: rgba(0, 123, 255, 0.35);
}

.form-check:has(.form-check-input:checked) 
{
    background-color: var(--liquid-bg);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact .form-check-input
{
    display: none;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select 
{
  padding: 0.875rem 1.25rem;
  border: 0.5px solid var(--liquid-border);
  border-radius: 25px;
  background-color: transparent;
  color: var(--secondary-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus 
{
  border-color: var(--secondary-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder 
{
  color: var(--secondary-color);
}

.contact .loading,
.error-message,
.sent-message 
{
    display: none;
}

.contact .privacy-box 
{
    color: var(--secondary-color);
    background: var(--primary-color);
    border: 1px solid var(--liquid-border);
    border-radius: 25px;
    display: inline-block;
    margin: 15px 0;
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 30px;
}

.contact .privacy-box label 
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact .privacy-box input[type="checkbox"] 
{
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

/*--------------------------------------------------------------
#1007 - Impressum & Datenschutz
--------------------------------------------------------------*/
.impressum 
{
    padding-top: 150px;
}

