/* ===================================== */
/* 🎨 SNIFFER CARDS STYLES (MOBILE FIRST) */
/* ===================================== */

.sniffer-cards-section {
    padding: 20px 15px;
    /* Mobil cihazlar için uygun padding */

    /* Arka plan rengi */
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #333;
}

/* Mobil Varsayılan: Kartlar alt alta */
.cards-container {
    display: flex;
    flex-direction: column;
    /* Mobil (varsayılan) alt alta */
    gap: 20px;
    /* Kartlar arası boşluk */
    align-items: center;
    /* Kartları ortalamak için */
}

.sniffer-card-link {
    width: 100%;
    /* Mobil genişlik */
    max-width: 400px;
    /* Maksimum kart genişliği */
    text-decoration: none;
    /* Link alt çizgisini kaldır */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sniffer-card-link:hover {
    transform: translateY(-5px);
    /* Hover efekti */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sniffer-card {
    height: 180px;
    /* Kart yüksekliği */
    width: 100%;
    background-size: cover;
    /* Resmi tüm alanı kapla */
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* İçeriği aşağıya hizala */
    padding: 15px;
}

/* Overlay efekti (resimlerin koyu görünmesini sağlar) */
.sniffer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    /* Overlay'in üstünde kalmasını sağlar */
    color: white;
}

.culture-name {
    font-family: Arial, sans-serif;
    /* Görseldeki özel fontu taklit eder */
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.culture-definition {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ===================================== */
/* 💻 MASAÜSTÜ (YAN YANA 2 KART) */
/* ===================================== */
@media (min-width: 768px) {
    .cards-container {
        flex-direction: row;
        /* Masaüstünde yan yana */
        justify-content: center;
        /* Ortala */
        gap: 30px;
    }

    .sniffer-card-link {
        width: 50%;
        /* Esnek genişlik */
        max-width: 480px;
        /* Daha geniş kartlar */
    }
}

/* The @font-face rule is used to define a custom font that you want to use on your webpage. Here 'TheFont' is a name we give to reference the font later in CSS. The 'src' property specifies the path to the font file, and 'format' specifies the font format. */
@font-face {
    font-family: 'TheFont';

    /* Variable fonts like the one linked below allow for fine-tuned control over various font properties dynamically via CSS, such as weight ('wght'), width ('wdth'), etc. This link is where your web browser will download the font from. */
    /* Insert the link to your custom variable font */
    src: url("https://garet.typeforward.com/assets/fonts/shared/TFMixVF.woff2") format('woff2');
}


body.breathe-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Change the Background color of the entire screen */
    background-color: white;
    /* 'vw' is a viewport-width unit, 'vh' is a viewport-height unit. 1vw equals 1% of the width of the viewport, and 1vh equals 1% of the height of the viewport. This allows the font size to scale dynamically with the window size. */
    height: 10vh;
}

.breathe-animation span {
    font-family: 'TheFont';

    /* The 'clamp()' function sets a flexible font size that will never go below a minimum value and never above a maximum value. The middle value is preferred, but it will shrink or grow based on the viewport dimensions. */
    /* Adjusts font size based on content width and viewport height */
    font-size: clamp(2vw, 4vw, 10vh);

    /* Change this to set the text color */
    color: black;

    /* Center text horizontally */
    text-align: center;

    /* The 'animation' property applies the 'letter-breathe' keyframes to the element, making it animate over 3 seconds.'ease-in-out' makes the movement start and end slowly, and 'infinite' makes it repeat forever. */
    /* Controls the animation (3s is the duration) */
    animation: letter-breathe 3s ease-in-out infinite;
}

/* Keyframes define the sequence of styles that an element will go through during an animation. */
@keyframes letter-breathe {

    /* The 'from' and 'to' keyframes establish the initial and final states of the animation, respectively, using 'font-variation-settings'. This CSS property is used with variable fonts to adjust their weight ('wght'), width ('wdth'), etc., during the animation. */
    from,
    to {
        /* Starting weight; adjust the numbers according to your specific font */
        font-variation-settings: 'wght' 100;
    }

    /* At the midpoint (50%) of the animation, the font weight changes to 900. */
    50% {
        /* Ending weight; adjust the numbers according to your specific font */
        font-variation-settings: 'wght' 900;
    }
}

/* The @font-face rule is used to define a custom font that you want to use on your webpage. Here 'TheFont' is a name we give to reference the font later in CSS. The 'src' property specifies the path to the font file, and 'format' specifies the font format. */
@font-face {
    font-family: 'TheFont';

    /* Variable fonts like the one linked below allow for fine-tuned control over various font properties dynamically via CSS, such as weight ('wght'), width ('wdth'), etc. This link is where your web browser will download the font from. */
    /* Insert the link to your custom variable font */
    src: url("https://garet.typeforward.com/assets/fonts/shared/TFMixVF.woff2") format('woff2');
}


body.breathe-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Change the Background color of the entire screen */
    background-color: black;
    /* 'vw' is a viewport-width unit, 'vh' is a viewport-height unit. 1vw equals 1% of the width of the viewport, and 1vh equals 1% of the height of the viewport. This allows the font size to scale dynamically with the window size. */
    height: 10vh;
}

.breathe-animation span {
    font-family: 'TheFont';

    /* The 'clamp()' function sets a flexible font size that will never go below a minimum value and never above a maximum value. The middle value is preferred, but it will shrink or grow based on the viewport dimensions. */
    /* Adjusts font size based on content width and viewport height */
    font-size: clamp(2vw, 4vw, 10vh);

    /* Change this to set the text color */
    color: black;

    /* Center text horizontally */
    text-align: center;

    /* The 'animation' property applies the 'letter-breathe' keyframes to the element, making it animate over 3 seconds.'ease-in-out' makes the movement start and end slowly, and 'infinite' makes it repeat forever. */
    /* Controls the animation (3s is the duration) */
    animation: letter-breathe 3s ease-in-out infinite;
}

/* Keyframes define the sequence of styles that an element will go through during an animation. */
@keyframes letter-breathe {

    /* The 'from' and 'to' keyframes establish the initial and final states of the animation, respectively, using 'font-variation-settings'. This CSS property is used with variable fonts to adjust their weight ('wght'), width ('wdth'), etc., during the animation. */
    from,
    to {
        /* Starting weight; adjust the numbers according to your specific font */
        font-variation-settings: 'wght' 100;
    }

    /* At the midpoint (50%) of the animation, the font weight changes to 900. */
    50% {
        /* Ending weight; adjust the numbers according to your specific font */
        font-variation-settings: 'wght' 900;
    }
}