@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

h1 {
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    color: #ffffff;
}

h2 {
    font-family: "Great Vibes", sans-serif;
    font-size: 3rem;
    color: #F2F3F1;
}

h3 {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
}

main {
    padding-top: 0;
}

.top-bar {
    width: 100%;
    position: fixed;
    background-color: transparent;
    transition: all 300ms ease-in-out;
    z-index: 1000;

    a {
        font-family: "Oswald", sans-serif;
        text-decoration: none;
        color: #ffffff;
        text-transform: uppercase;
        font-weight: 300;
    }
}

.menu-container{
    max-width: 1184px;
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
}

.top-bar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 158px;
    height: 220px;
}

.menu-left {
    display: flex;
    gap: 56px;
}

.menu-logo {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-right {
    display: flex;
    gap: 36px;
}

.menu-right-links{
    display: flex;
    gap: 56px;
}

.menu-right-social{
    display: flex;
    gap: 12px;
}

.front-page-hero{
    padding-top: 200px;
    padding-bottom: 140px;
    padding-left: 440px;
    padding-right: 440px;
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;

    .hero-image{
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        top:0;
        z-index: -1;
    }

    .hero-title{
        display: flex;
        font-size: 2.5rem;
        color: #ffffff;
        text-align: center;
        line-height: 1.2;

    }
}

.intro-container{
    padding-top: 128px;
    padding-bottom: 80px;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 680px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.intro-title{
    text-align: center;
}

.intro-text{
    text-align: center;
    padding-top: 8px;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0D0203;
    padding-bottom: 128px;
}

.content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px; /* Keeps content well-aligned */
}

.content-item.reverse {
    flex-direction: row-reverse;
}

.image-box {
    position: relative;
    flex: 1;
    max-width: 440px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.section-number {
    position: absolute;
    top: -68px;
    left: 30px;
    font-size: 9rem;
    font-family: "Great Vibes", sans-serif;
    font-weight: 50;
    color: #F2F2F3;
}

.image-title {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%);
    text-align: center;
    white-space: nowrap;
}

.text-container {
    flex: 1;
    max-width: 440px;
    color: white;
    padding-left: 40px;
    padding-right: 40px;
}

.text-container p {
   margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: #380A0D;
    color: white;
    padding: 12px 24px;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px #ffffff solid;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #383C34;
}

.feedback-container{
    background-image: url(assets/feedback_background.jpg);
    padding-bottom: 128px;
}


.text-slider {
    position: relative;
    max-width: 800px;

    .swiper-button-prev,
    .swiper-button-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px;
      height: 40px;
      cursor: pointer;
    }
    
    .swiper-button-prev {
      left: -10px; 
    }
    
    .swiper-button-next {
      right: -10px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none;
    }

    .swiper-nav-buttons {
        position: relative;
        display: flex;
        justify-content: flex-end;
        gap: 24px;
        height: 46px;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%; /* ← peab olema! */
      }
      
      .feedback-slide {
        max-width: 600px; /* ← piirab sisu laius */
        padding: 20px;
        text-align: center;
      }

      .feedback-text {
        font-size: 1.05rem;
      }

      .feedback-author {
        text-align: right;
        padding-top: 24px;
        padding-bottom: 24px;
      }

      .swiper-pagination-bullet{
        background: #d8d8d8;
        opacity: 1;
      }

      .swiper-pagination-bullet-active {
        background: white;
        width: 12px;
        height: 12px;
      }

      .swiper-pagination{
        display: flex;
        align-items: center;
        justify-content: center;
      }
}

.inspiration-container{
    background-color: #0D0203;
}

.inspo-menu-container{
    padding-left: 232px;
    padding-right: 232px;
    padding-bottom: 128px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.text-image-container {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-image {
    display: block;
}

.text-box {
    position: absolute;
    bottom: -32px;
    left: 80%;
    transform: translateX(-50%);
    width: 44px;
    height: 232px;
    background-color: #380A0D;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.vertical-text{
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.numbers-container{
    background-image: url(assets/stats_background.jpg);
    padding: 128px 180px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 96px;
    
}

.stats-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stats-icon{
    height: 64px;
    width: 64px;
}

.counter{
    width: 160px;
    height: 120px;
    font-family: "Oswald", sans-serif;
    font-size: 5rem;
    padding: 24px 12px;
    text-align: center;
    border: 1px #ffffff solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-title{
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.social-container{
    background-color: #0D0203;
    padding-bottom: 128px;
}

.smash-balloon{
    padding: 0 160px;
}

.sbi_load_btn {
    border-radius: 0 !important;
    margin-top: 24px !important;
}

footer {
    background-color: #1A0506;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-nav {
    flex: 2;
    border-right: white 1px solid;
}

.nav-heading {
    font-size: 2.5rem;
    font-family: 'Great Vibes', sans-serif;
    padding-bottom: 40px;
    text-align: center;
}

.nav-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

.nav-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: bold;
}

.nav-column h3 a {
    color: #ffffff;
    text-decoration: none;
}

.nav-column h3 a:hover {
    color: #888F7F;
    transition: color 0.3s;
}

.nav-column ul li {
    margin-bottom: 16px;
}

.nav-column ul li a {
    color: white;
    text-decoration: none;
}

.nav-column ul li a:hover {
    color: #888F7F;
    transition: color 0.3s;
}

.nav-bottom-links {
    margin-top: 32px;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.nav-bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.nav-bottom-links a:hover {
    color: #888F7F;
    transition: color 0.3s;
}

.footer-contact {
    flex: 1;
    text-align: left;
    max-width: 300px;
    padding-top: 88px;
}

.footer-contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: bold;
}

.footer-contact p {
    font-size: 1rem;
    margin: 16px 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-logos {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    margin-top: 32px;
}

.footer-logos img {
    height: 96px;
    width: 96px;
}

.scrolled .top-bar {
    background-color: #1A0506;
}

.scrolled .top-bar-content {
    height: 80px;
    gap: 80px; 
}

.scrolled .menu-logo img {
    max-height: 60px;
    transition: all 100ms ease-in-out;
}

.top-bar-content,
.menu-container,
.menu-logo img {
    transition: all 100ms ease-in-out;
}

@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .front-page-hero {
      padding: 160px 16px 160px 16px; 
      min-height: 400px;
    }
  
    .front-page-hero .hero-title {
      font-size: 1.5rem;
      padding: 0 16px;
    }

    .front-page-hero .hero-image {
        object-position: center center;
        height: 100%;
    }

    .content-item {
        flex-direction: column !important;
        align-items: center;
        padding: 40px 24px;
        text-align: center;
    }
    
    .image-box {
        max-width: 360px;
        margin-bottom: 24px;
    }
    
   
    
    .section-number {
        font-size: 6.5rem;
        top: -48px;
        left: 16px;
    }
    
    .text-container {
        padding: 0;
        max-width: 100%;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
  }