/* SNT Travel & Tourism - Unique Custom Typography System */

/* Custom SVG Font Icons */
@font-face {
    font-family: 'SNT-Icons';
    src: url('data:font/svg;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJMMTMuMDkgOC4yNkwyMCA5TDEzLjA5IDE1Ljc0TDEyIDIyTDEwLjkxIDE1Ljc0TDQgOUwxMC45MSA4LjI2TDEyIDJaIiBmaWxsPSIjZGM2MjY2Ii8+Cjwvc3ZnPgo=') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Custom Typography Variables */
:root {
    /* Unique Font Stack */
    --font-unique: 'SNT-Unique', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'SNT-Display', 'Poppins', sans-serif;
    --font-body: 'SNT-Body', 'Inter', sans-serif;
    
    /* Custom Typography Scale */
    --text-micro: 0.625rem;   /* 10px */
    --text-tiny: 0.75rem;      /* 12px */
    --text-small: 0.875rem;    /* 14px */
    --text-base: 1rem;         /* 16px */
    --text-large: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;        /* 20px */
    --text-2xl: 1.5rem;        /* 24px */
    --text-3xl: 1.875rem;      /* 30px */
    --text-4xl: 2.25rem;       /* 36px */
    --text-5xl: 3rem;          /* 48px */
    --text-6xl: 3.75rem;       /* 60px */
    --text-7xl: 4.5rem;        /* 72px */
    --text-8xl: 6rem;          /* 96px */
    --text-9xl: 8rem;          /* 128px */
}

/* Unique Typography Classes */
.unique-heading {
    font-family: var(--font-unique);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
}

.unique-heading::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    z-index: -1;
    border-radius: 4px;
}

/* Custom Logo Typography with Unique Styling */
.logo-text-unique {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-text-unique::after {
    content: '✈';
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 0.8em;
    color: var(--primary-red);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Unique Hero Typography */
.hero-title-unique {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-title-unique .highlight {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title-unique .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    border-radius: 2px;
    animation: underline-grow 2s ease-out;
}

@keyframes underline-grow {
    from { width: 0; }
    to { width: 100%; }
}

/* Unique Service Card Typography */
.service-title-unique {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.service-title-unique::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #dc2626, #b91c1c);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.service-title-unique::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 1.5rem;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, transparent);
    border-radius: 1px;
}

/* Unique Button Typography */
.btn-unique {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-unique:hover::before {
    left: 100%;
}

/* Unique Navigation Typography */
.nav-link-unique {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-unique::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    transition: width 0.3s ease;
}

.nav-link-unique:hover::after {
    width: 100%;
}

/* Unique Section Typography */
.section-title-unique {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff !important;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.section-title-unique::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    border-radius: 2px;
}

.section-title-unique::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    border-radius: 1px;
}

/* Unique Typography Effects */
.text-glow {
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.text-3d {
    text-shadow: 
        1px 1px 0 #dc2626,
        2px 2px 0 #b91c1c,
        3px 3px 0 #991b1b,
        4px 4px 0 #7f1d1d;
}

.text-gradient-red {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-outline {
    -webkit-text-stroke: 2px #dc2626;
    -webkit-text-fill-color: transparent;
}

/* Unique Quote Typography */
.quote-unique {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    position: relative;
    text-align: center;
    padding: 2rem;
}

.quote-unique::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-red);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.8;
}

.quote-unique::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-red);
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-family: serif;
    opacity: 0.8;
}

/* Unique Form Typography */
.form-label-unique {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
}

.form-label-unique::after {
    content: '*';
    color: var(--primary-red);
    margin-left: 2px;
}

/* Unique Footer Typography */
.footer-title-unique {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title-unique::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}

/* Unique Animation Typography */
.typing-animation {
    overflow: hidden;
    border-right: 2px solid var(--primary-red);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-red); }
}

/* Unique Responsive Typography */
@media (max-width: 768px) {
    .hero-title-unique {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .section-title-unique {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .service-title-unique {
        font-size: 1.25rem;
    }
    
    .quote-unique {
        font-size: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-unique {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }
    
    .section-title-unique {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .logo-text-unique {
        font-size: 1.5rem;
    }
}

/* Unique Typography Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Unique Brand Typography */
.brand-text-unique {
    font-family: var(--font-display);
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-accent-unique {
    font-family: var(--font-display);
    color: var(--primary-red);
    font-weight: 700;
    position: relative;
}

.brand-accent-unique::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #dc2626, transparent);
}
