.grecaptcha-badge {opacity: 0;}


.push-down {
	margin-top: 80px;
}

.big_button {
	width: 240px;
	border: 2px solid #ff5f6f;
	text-align: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;
	border-radius: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	
	
}

.big_button a {
	text-decoration: none;
	color: #ff5f6f;
	
}


.margin-top-eighty {
	margin-top: 180px;
}

.highlight {
  color: #ff5f6f;
}

.circle-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: 20px auto; /* 20px top & bottom, auto left & right for centering */
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Grundläggande stilar */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #070707; 
    color: #f2f2f2; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

/* Rubriker */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400; 
    color: #ffffff; 
    margin-bottom: 10px;
    line-height: 1.3;
}

h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; 
    color: #ffffff; 
    margin-bottom: 10px;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

/* Länkar */
a {
    color: #246493; /* Fräsch blå färg */
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

a:hover, a:focus {
    color: #005bb5; /* Mörkare blå vid hover */
    text-shadow: 0 0 5px rgba(0, 115, 230, 0.3); /* Lätt glow-effekt */
}

/* Stylar stark och kursiv text */
strong {
    font-weight: 700;
   color: #f3f3f3;
}

em {
    font-style: italic;
    color: #444;
}


.center-all {
	height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    -moz-align-items: center;
    -moz-justify-content: center;
    -ms-align-items: center;
    -ms-justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center { text-align: center;}




.scale {width: 100%;height: 100%;}


/* STARTSIDAN START */

.red_div {
	display: block;
	width: 100%;
	height: 0.1rem;
	background:#ff5f6f;
	padding-left: 5%;
	padding-right: 5%;
	margin-top: 40px;
	margin-bottom: 40px;
	opacity: .2;
}


.hero{
     
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80vh;
      margin: 0;
      background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  overflow: hidden;
      
    }
    
@keyframes zoomLoop {
  0% {
    transform: scale(1);
    filter:  grayscale(80%) brightness(35%) blur(2px);
  }
  50% {
    transform: scale(1.05);
    filter: grayscale(40%) brightness(60%) blur(0px);
  }
  100% {
    transform: scale(1);
    filter: grayscale(80%) brightness(35%) blur(2px);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: grayscale(100%) brightness(20%) blur(2px);

  animation: zoomLoop 20s ease-in-out infinite;
}
.hero > * {
  position: relative;
  z-index: 1; /* Så att logotyp och payoff ligger över bilden */
}  
    
    
    .about_puff {margin-bottom: 80px;}
   
.logo-wrapper {
  position: relative;
  width: 400px;
  height: 200px;
  margin: 0;
  padding: 0;
}

.logo-wrapper img.logo {
  width: 100%;
  height: 100%;
  display: block;
}

.vinyl-positioner {
  position: absolute;
  width: 87px;
  height: 87px;
  left: 110px;
  top: 44px; /* exakt pixelbaserad positionering utan translateY */
  pointer-events: none;
}

.vinyl-rotator {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  animation: spin 1.818s linear infinite;
  will-change: transform;
}

.vinyl {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


.payoff  {
       z-index: 2;
    color: white;
    font-size: 3rem;
    text-align: center;
    max-width: 100%;
    position: relative;
}


.puff_text h2 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	
}

/* STARTSIDAN END */


/* ABOUT US START */

/* center the blockquote in the page */
.blockquote-wrapper {
  display: flex;

  padding: 0 20px;
}

/* Blockquote main style */
.blockquote {
  position: relative;
  max-width: 620px;
  margin: 20px auto;
  align-self: center;
}

/* Blockquote header */
.blockquote p {
  font-family: 'Playfair Display', serif;
    font-weight: 400; 
  position: relative; /* for pseudos */
  color: #ff5f6f;
  font-size: 1.6rem;

  line-height: 1;
  margin: 0;
  border: 2px solid #fff;
  border: solid 2px;
  border-radius: 20px;
  padding: 25px;
}

/* Blockquote right double quotes */
.blockquote p:after {
  content: "";
  position: absolute;
  border: 2px solid #ff5f6f;
  border-radius: 0 100% 0 0;
  width: 60px;
  height: 60px;
  bottom: -60px;
  left: 50px;
  border-bottom: none;
  border-left: none;
  z-index: 3;
}

.blockquote p:before {
  content: "";
  position: absolute;
  width: 80px;
  border: 6px solid #070707;
  bottom: -3px;
  left: 50px;
  z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
  .blockquote p {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}

/* Blockquote subheader */
.blockquote h4 {
  position: relative;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding-top: 15px;
  z-index: 1;
  margin-left: 150px;
  padding-left: 12px;
}

.blockquote h4:first-letter {
  margin-left: -12px;
}


/* ABOUT US END */

/* CONTACT START */

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

/* Se till att bildcontainern täcker hela sektionen */
.hero-section picture {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
  
}

/* Se till att bilden fyller hela sektionen utan att lämna whitespace */
.hero-section picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
     filter: brightness(0.6); /* Svagt nedtonad effekt */
}

.hero-section picture {
clip-path: polygon(100% 0%, 0% 0% , 0.00% 84.65%, 2.00% 84.62%, 4.00% 84.50%, 6.00% 84.32%, 8.00% 84.06%, 10.00% 83.74%, 12.00% 83.37%, 14.00% 82.94%, 16.00% 82.47%, 18.00% 81.96%, 20.00% 81.44%, 22.00% 80.89%, 24.00% 80.35%, 26.00% 79.80%, 28.00% 79.28%, 30.00% 78.79%, 32.00% 78.33%, 34.00% 77.91%, 36.00% 77.55%, 38.00% 77.25%, 40.00% 77.01%, 42.00% 76.85%, 44.00% 76.75%, 46.00% 76.74%, 48.00% 76.79%, 50.00% 76.93%, 52.00% 77.13%, 54.00% 77.40%, 56.00% 77.74%, 58.00% 78.13%, 60.00% 78.57%, 62.00% 79.05%, 64.00% 79.56%, 66.00% 80.10%, 68.00% 80.64%, 70.00% 81.19%, 72.00% 81.73%, 74.00% 82.24%, 76.00% 82.73%, 78.00% 83.18%, 80.00% 83.58%, 82.00% 83.93%, 84.00% 84.21%, 86.00% 84.43%, 88.00% 84.57%, 90.00% 84.65%, 92.00% 84.64%, 94.00% 84.56%, 96.00% 84.41%, 98.00% 84.19%, 100.00% 83.90%);
}

.container-info a {color: #fbfbfb;}

img.comu_icon {
	position: relative;
	left: -5px;
	top: 5px;
}

.show_now {
	position: relative;
	z-index: 10:
}


/* CONTACT END */


/* KONTAKT FORMULÄR START */

/* Contact Form 7 – Mörk stil med placeholder istället för labels */
.wpcf7 form {
    font-family: 'Roboto', sans-serif;
    color: #f2f2f2;
    background-color: #070707;
    padding: 20px;
    border-radius: 8px;
}

/* Fält: text, email, textarea, select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    background-color: #1a1a1a;
    color: #f2f2f2;
    border: 1px solid #444;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s;
}

/* Placeholder-stil */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #999;
    font-weight: 400;
}

/* Fokus-effekt */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #f2f2f2;
    background-color: #111;
}

/* Submit-knapp */


.wpcf7 input[type="submit"] {
    background-color: #f2f2f2;
    color: #070707;
    padding: 12px 25px;
    width: 150px;
    margin: auto;
    position: relative;
    display: block;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}



.wpcf7 input[type="submit"]:hover {
    background-color: #ffffff;
}

/* Responsmeddelanden */
.wpcf7-response-output {
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.wpcf7-mail-sent-ok {
    color: #0f0;
    border: 1px solid #0f0;
    background-color: #101d10;
}

.wpcf7-validation-errors {
    color: #ff0;
    border: 1px solid #ff0;
    background-color: #1a1a00;
}

.wpcf7-spam-blocked {
    color: #f00;
    border: 1px solid #f00;
    background-color: #1a0000;
}




/* KONTAKT FORMULÄR END */





.acf-map {
	position: relative;
	height: 50vh;
	
}









#footer_wrapper_top {
	clip-path: polygon(100% 100%, 0% 100% , 0.00% 94.55%, 2.00% 94.52%, 4.00% 94.41%, 6.00% 94.24%, 8.00% 94.00%, 10.00% 93.70%, 12.00% 93.33%, 14.00% 92.91%, 16.00% 92.43%, 18.00% 91.91%, 20.00% 91.34%, 22.00% 90.73%, 24.00% 90.09%, 26.00% 89.43%, 28.00% 88.75%, 30.00% 88.06%, 32.00% 87.36%, 34.00% 86.67%, 36.00% 85.98%, 38.00% 85.32%, 40.00% 84.67%, 42.00% 84.06%, 44.00% 83.48%, 46.00% 82.94%, 48.00% 82.45%, 50.00% 82.02%, 52.00% 81.64%, 54.00% 81.32%, 56.00% 81.06%, 58.00% 80.87%, 60.00% 80.75%, 62.00% 80.70%, 64.00% 80.71%, 66.00% 80.80%, 68.00% 80.96%, 70.00% 81.18%, 72.00% 81.47%, 74.00% 81.82%, 76.00% 82.23%, 78.00% 82.69%, 80.00% 83.21%, 82.00% 83.76%, 84.00% 84.36%, 86.00% 84.99%, 88.00% 85.65%, 90.00% 86.33%, 92.00% 87.01%, 94.00% 87.71%, 96.00% 88.41%, 98.00% 89.09%, 100.00% 89.77%);
	height: 15vh;
	width: 100%;
background: #121212;
position: relative;
top: 5px;
	
}

.footer_wrapper strong {
 
    color: #fff;
    letter-spacing: 0.1rem;
}

.footer_wrapper {
	
	
   background: #121212;
    padding-top: 80px;
    padding-bottom: 40px;
    color:#afafaf;
}
.footer_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.footer_logo img {
    max-width: 250px;
    height: auto;
}
.footer_info p {
    margin: 5px 0;
    font-size: 1rem;
}
.footer_info a {
    color: #fff;
    font-weight: bold;
}
.footer_social {
    margin-top: 10px;
    text-align: center;
}
.footer_social a img {
    transition: transform 0.3s;
}
.footer_social a:hover img {
    transform: scale(1.1);
}
.cta_instagram {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}
.footer_nav {
    text-align: center;
    margin-top: 20px;
}
.footer_nav h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ddd;
}
.footer_menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}
.footer_menu li {
    display: inline;
}
.footer_menu a {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
    padding-bottom: 5px;
    display: inline-block;
}
.footer_menu a::after {
    content: '\2192';
    position: absolute;
    right: -25px;
    opacity: 0;
    top: -4px;
    transform: translateY(20%);
    transition: opacity 0.3sease, right 0.3sease;
}
.footer_menu a:hover {
    color: #ddd;
}
.footer_menu a:hover::after {
    opacity: 1;
    right: -15px;
}

.fot_ik {
	position: relative;
	top: 8px;
}

/* RESPONSIVE RULES START */



@media (max-width: 768px) {
	
h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

	
	
.block {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 20px;
	
}	

.footer_inner {
	display: block;
}

.footer_nav {
	display: none;
}


.hero-section picture {
clip-path: polygon(100% 0%, 0% 0% , 0.00% 84.16%, 2.00% 84.13%, 4.00% 84.03%, 6.00% 83.86%, 8.00% 83.64%, 10.00% 83.36%, 12.00% 83.03%, 14.00% 82.66%, 16.00% 82.25%, 18.00% 81.81%, 20.00% 81.34%, 22.00% 80.87%, 24.00% 80.39%, 26.00% 79.92%, 28.00% 79.46%, 30.00% 79.02%, 32.00% 78.62%, 34.00% 78.26%, 36.00% 77.94%, 38.00% 77.68%, 40.00% 77.47%, 42.00% 77.33%, 44.00% 77.25%, 46.00% 77.23%, 48.00% 77.28%, 50.00% 77.40%, 52.00% 77.58%, 54.00% 77.81%, 56.00% 78.11%, 58.00% 78.45%, 60.00% 78.84%, 62.00% 79.26%, 64.00% 79.71%, 66.00% 80.17%, 68.00% 80.65%, 70.00% 81.13%, 72.00% 81.60%, 74.00% 82.05%, 76.00% 82.48%, 78.00% 82.87%, 80.00% 83.22%, 82.00% 83.52%, 84.00% 83.77%, 86.00% 83.96%, 88.00% 84.09%, 90.00% 84.15%, 92.00% 84.15%, 94.00% 84.08%, 96.00% 83.95%, 98.00% 83.75%, 100.00% 83.50%);

}

.front-logo {
    margin-bottom: 180px;
}


}

.hero.desktop {
  display: flex;
}

.hero.mobil {
  display: none;
}


}

@media (max-width: 768px) {
.hero.desktop {
    display: none;
  }
  
.hero {height: 50vh;}  

.hero.mobil {
    display: flex;
  }
}




	


/* RESPONSIVE RULES END */
