/*
Theme Name: Sunnycode
Author: Kate
Description: Custom theme for Sunnycode
Version: 1.0
*/
:root {
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
   height: 200vh;
}

.container {
  
  margin: 0 auto;
  padding: 40px 30px;
}
@media (max-width: 768px) {
   .container {
    padding: 20px;
    text-align: center;
}
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;

}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
     .hero {
  min-height: 85vh;
  display: flex;
  align-items: start;
}
}

.hero-inner {
  width: 100%;
  text-align: center;
}

.sunnycode {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;

  color: #fff;
  text-align: center;

  font-feature-settings: "liga" 1;
  text-rendering: optimizeLegibility;
}

.hero-claim {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #6B6B6B;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}




.sunnycode-c {
    color: #FF7B02;
}
.sunnycode-c-svg {


    display: inline-block;
    line-height: 0;
    transform-origin: top center;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

.sunnycode-c-svg svg {
    height: calc(0.8em /2);
    width: auto;
    display: block;
}
/* @media (max-width: 768px) {
   .sunnycode-c-svg svg {
    height:25px;
} 
} */
.sunnycode-paragraph-gray {
    color: #6B6B6B;
    text-align: center;
    text-transform: uppercase;
    margin:0;
    padding-top: 20px;
}
@media (max-width: 768px) {
    .sunnycode-paragraph-gray {
        font-size: 12px;
    
}
}
/* html {
  background:
    radial-gradient(circle at 50% 20%, #F7F5F2 0%, #fff 60%);
} */

html {
    background: #F7F5F2; 
}



.custom-logo {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
    .custom-logo {
  height: 50px;
  width: auto;
  margin-bottom: 40px;
  margin-top: 40px; 
}
}

.top-container {
    display: flex;
    justify-content: space-between;
}

.lang-switcher {
  display: flex;
  gap: 12px;
  align-items: center;
  
  
}

.lang-link {
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #6B6B6B;
  letter-spacing: 0.02em;
  line-height: 1.6;;
  transition: opacity 0.2s ease;
}

.lang-link:hover {
  color: #FF7B02;
}

.lang-link.is-active {
  color: #FF7B02;
  pointer-events: none;
}




