/* 
        CSS Styles
    */

:root {
    /* Color Palette */
    --col-dusty-pink: #EDDED6;
    --col-deep-turquoise: #244557;
    --col-tan: #BA9C8C;
    --col-salt: #F7F2F0;
    --col-forest: #1F574D;
    --col-night: #283342;



    --col-deep-turquoise-t: #24455788;
    --col-night-t: #283342bb;
    --col-dusty-pink-t: #EDDED688;

    /* Typography */
    --font-heading: 'Julius Sans One', sans-serif;
    --font-body: 'Crimson Pro', serif;

    /* Spacing */
    --spacing-section: 12rem;
    /* Increased spacing */
    --spacing-container: 2rem;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--col-dusty-pink);
}

body {
    font-family: var(--font-body);
    background-color: var(--col-dusty-pink);
    color: var(--col-deep-turquoise);
    line-height: 1.8;
    font-size: 21px;
    /* Increased base font size */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

h2 {
    font-size: 3.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-heading);
}

.container {
    max-width: 1300px;
    /* Slightly wider container */
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--col-forest);
    color: var(--col-salt);
}

.btn-primary:hover {
    background-color: var(--col-deep-turquoise);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 69, 87, 0.2);
}

.btn-outline {
    border-color: var(--col-deep-turquoise);
    color: var(--col-deep-turquoise);
}

.btn-outline:hover {
    border-color: var(--col-deep-turquoise);
    color: var(--col-deep-turquoise);
    background-color: rgba(237, 222, 214, 0.05);
}

.btn-outline-sm {
    border: 1px solid var(--col-forest);
    color: var(--col-forest);
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
}

.btn-outline-sm:hover {
    background-color: var(--col-forest);
    color: var(--col-salt);
    border-color: var(--col-forest);
}

.w-full {
    width: 100%;
}





/* General Section Styles */
.section-padding {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 4rem;
    color: var(--col-deep-turquoise);
    margin-bottom: 1.5rem;
}

.section-header .divider {
    height: 2px;
    width: 100px;
    background-color: var(--col-tan);
    margin: 0 auto 2.5rem;
}

.section-header .divider.divider-alt {
    background-color: var(--col-forest);
}

.section-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 3rem;
    }
}
