/* Avontrip - Visual Design System variables.css (Logo Brand Colors Theme) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    /* Logo Brand Colors */
    --brand-blue: #1D5DA5;          /* Exact vibrant royal blue from "Avontrip" logo text */
    --brand-orange: #F7941D;        /* Exact warm golden amber orange from logo swoosh */
    --brand-orange-hover: #E58412;
    
    /* Semantic Colors based on Logo */
    --primary-blue: var(--brand-blue);
    --primary-blue-rgb: 29, 93, 165;
    --accent-orange: var(--brand-orange);
    --accent-orange-hover: var(--brand-orange-hover);
    --accent-orange-rgb: 247, 148, 29;
    
    /* Layout Backgrounds */
    --bg-dark: #0F253C;             /* Deep navy to harmonize with brand blue for footer/hero */
    --bg-light: #F4F7FA;            /* Soft light ice-blue-white for premium clean content sections */
    --bg-card: #FFFFFF;             /* Pure white for cards */
    --bg-card-dark: #163657;        /* Clean darker navy card fill */
    
    /* Typography Colors */
    --text-dark: #0F253C;           /* Deep navy text for superior readability */
    --text-white: #FFFFFF;          /* Pure white text on dark backgrounds */
    --text-muted: #5A6E85;          /* Steel slate gray for secondary info on light bg */
    --text-muted-light: #B4C6D8;    /* Muted text on dark backgrounds */
    --text-gold: #F7941D;           /* Premium gold accent color */
    
    /* Borders & Accents */
    --border-light: rgba(29, 93, 165, 0.1);
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-orange-glow: rgba(247, 148, 29, 0.3);
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Animation Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-luxury: 0 20px 40px rgba(29, 93, 165, 0.08);
    --shadow-orange-glow: 0 8px 25px rgba(247, 148, 29, 0.25);
    --shadow-card: 0 4px 20px rgba(29, 93, 165, 0.04);
}

/* Base resets & theme utility rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(247, 148, 29, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}
