/* Base Styles */
@font-face {
    font-family: 'Merriweather';
    src: url('../assets/fonts/Merriweather-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../assets/fonts/Merriweather-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../assets/fonts/SourceSansPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../assets/fonts/SourceSansPro-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Main Theme Colors */
    --coral-red: #FF6F61;
    --teal-sea: #007C91;
    --white-marble: #F4F4F4;
    --gold-leaf: #E3C16F;
    
    /* Extended Color Palette */
    --dark-teal: #005A68;
    --light-teal: #5AABB9;
    --dark-coral: #D84C3F;
    --light-coral: #FF9389;
    --dark-gold: #C9A650;
    --light-gold: #F4DEA9;
    
    /* Neutral Colors */
    --charcoal: #2C3E50;
    --slate: #7F8C8D;
    --silver: #BDC3C7;
    --off-white: #ECF0F1;
    --pure-white: #FFFFFF;
    --pure-black: #000000;
    
    /* Functional Colors */
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    --info: #3498DB;
    
    /* Typography */
    --heading-font: 'Merriweather', serif;
    --body-font: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;  /* 8px */
    --spacing-sm: 1rem;    /* 16px */
    --spacing-md: 1.5rem;  /* 24px */
    --spacing-lg: 2rem;    /* 32px */
    --spacing-xl: 3rem;    /* 48px */
    --spacing-xxl: 4rem;   /* 64px */
    
    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.5;
    color: var(--charcoal);
    background-color: var(--white-marble);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold-leaf);
}

h2.centered {
    text-align: center;
}

h2.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

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

a:hover {
    color: var(--dark-teal);
}

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

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

button {
    cursor: pointer;
    font-family: var(--body-font);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* Typography utility classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-light {
    color: var(--pure-white);
}

.text-dark {
    color: var(--charcoal);
}

.text-accent {
    color: var(--gold-leaf);
}

.text-primary {
    color: var(--teal-sea);
}

.text-secondary {
    color: var(--coral-red);
}

/* Spacing utility classes */
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* Hidden by default (for JS toggling) */
.hidden {
    display: none;
}
 i {
    font-size: 2rem; /* You can increase this size if needed */
    color: #007c91;   /* Gold-like tone to match a luxury theme; change as desired */
}