/* =========================================================
   SNAPYOURTRIP - GLOBAL STYLE SYSTEM
   Prefix: syt_
========================================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary */
    --syt-primary: #004080;
    --syt-primary-light: #1a5ca8;

    /* Accent */
    /* --syt-accent: #D5573B;
    --syt-accent-hover: #c24a30; */
    --syt-accent: #cc2e3f;
    --syt-accent-hover: #b32938;

    /* Secondary */
    --syt-secondary: #258EA6;

    /* Neutral */
    --syt-white: #FFFFFF;
    --syt-bg: #F8FAFC;
    --syt-border: #E5E7EB;

    /* Text */
    --syt-text-dark: #1F2937;
    --syt-text-light: #6B7280;

    /* Fonts */
    --syt-font-primary: 'Source Sans 3', sans-serif;
    --syt-font-secondary: 'Outfit', sans-serif;
    --syt-font-price: 'Outfit', sans-serif;
}


/* ===== RESET ===== */
* {
    box-sizing: border-box;
}


/* ===== FONT SYSTEM (FORCED CLEAN WAY) ===== */
html, body {
    font-family: 'Source Sans 3', sans-serif;
}

/* Override Bootstrap elements */
body,
button,
input,
select,
textarea {
    font-family: 'Source Sans 3', sans-serif;
}


/* ===== BODY ===== */
body {
    margin:0;
    font-size: 14px;
    background-color: var(--syt-bg);
    color: var(--syt-text-dark);
    line-height: 1.5;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--syt-text-dark);
    margin-bottom: 8px;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

/* ===== FONT WEIGHT UTILITIES ===== */
.syt_fw_300 { font-weight: 300; }
.syt_fw_400 { font-weight: 400; }
.syt_fw_500 { font-weight: 500; }
.syt_fw_600 { font-weight: 600; }
.syt_fw_700 { font-weight: 700; }
.syt_fw_800 { font-weight: 800; }

p {
    color: var(--syt-text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}


/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: var(--syt-primary);
    transition: 0.2s ease;
}

a:hover {
    color: var(--syt-primary-light);
}


.section_spacing {
  padding: 50px 0;
}

.section_spacing_sm {
  padding: 30px 0;
}

.section_spacing_lg {
  padding: 70px 0;
}

.section_spacing_top {
  padding-top: 50px;
  padding-bottom: 0;
}

.section_spacing_bottom {
  padding-bottom: 50px;
  padding-top: 0;
}



/* ===== BUTTON SYSTEM ===== */
.syt_btn {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}

/* Primary */
.syt_btn_primary {
    background-color: var(--syt-primary);
    color: #fff;
}

.syt_btn_primary:hover {
    background-color: var(--syt-primary-light);
}

/* Accent */
.syt_btn_accent {
    background-color: var(--syt-accent);
    color: #fff;
}

.syt_btn_accent:hover {
    background-color: var(--syt-accent-hover);
}


/* ===== INPUT SYSTEM ===== */
.syt_input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--syt-border);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    background-color: #fff;
}

.syt_input:focus {
    border-color: var(--syt-primary);
    box-shadow: 0 0 0 2px rgba(0, 64, 128, 0.08);
}


/* ===== CARD SYSTEM ===== */
.syt_card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--syt-border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}


/* ===== SPACING UTILITIES ===== */
.syt_mt_10 { margin-top: 10px; }
.syt_mt_20 { margin-top: 20px; }
.syt_mt_30 { margin-top: 30px; }

.syt_mb_10 { margin-bottom: 10px; }
.syt_mb_20 { margin-bottom: 20px; }
.syt_mb_30 { margin-bottom: 30px; }

.syt_p_10 { padding: 10px; }
.syt_p_20 { padding: 20px; }
.syt_p_30 { padding: 30px; }


/* ===== FLEX UTILITIES ===== */
.syt_flex {
    display: flex;
}

.syt_flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.syt_flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===== BORDER RADIUS ===== */
.syt_radius_sm { border-radius: 6px; }
.syt_radius_md { border-radius: 10px; }
.syt_radius_lg { border-radius: 14px; }


/* ===== SHADOW ===== */
.syt_shadow_sm {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.syt_shadow_md {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


/* ========= MOBILE RESPONSIVE ======== */
/* Tablet */
@media (max-width: 992px) {

  .section_spacing {
    padding: 40px 0;
  }

  .section_spacing_sm {
    padding: 25px 0;
  }

  .section_spacing_lg {
    padding: 55px 0;
  }

  .section_spacing_top {
    padding-top: 40px;
  }

  .section_spacing_bottom {
    padding-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .section_spacing {
    padding: 30px 0;
  }

  .section_spacing_sm {
    padding: 20px 0;
  }

  .section_spacing_lg {
    padding: 45px 0;
  }

  .section_spacing_top {
    padding-top: 30px;
  }

  .section_spacing_bottom {
    padding-bottom: 30px;
  }
}