@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('./variable.css');

@font-face {
    font-family: 'AlbertSansBold';
    src: url('../fonts/albert-sans/AlbertSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Scoped heading styles - only apply within .site container */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6, 
.jumbotron {
    font-family: 'AlbertSansBold';
    font-weight: 700 !important;
    color: var(--primary-color-100);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.jumbotron {
    font-size: calc(40px + (72 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 1.5rem;
}
h1, .h1 {
    font-size: calc(32px + (56 - 32) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 1.5rem;
}
h2, .h2 {
    font-size: calc(24px + (48 - 24) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 1.25rem;
}
h3, .h3 {
    font-size: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 1rem;
}

h4, .h4 {
    font-size: calc(18px + (32 - 18) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 0.75rem;
}

h5, .h5 {
    font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 0.5rem;
}

h6, .h6 {
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-bottom: 0.5rem;
}

/* Paragraph Styles - scoped to .site */
.p-large {
    font-family: 'RobotoMedium';
    font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    line-height: 1.6;
    font-weight: 500;
}

.p-medium {
    font-family: 'RobotoRegular';
    font-size: 18px !important;
    line-height: 1.6;
    font-weight: 400;
}

.p-small {
    font-family: 'RobotoRegular';
    font-size: 16px !important;
    line-height: 1.6;
    font-weight: 400;
}

a {
    display: inline-block;
}

/* Button Styles */
.primary-button {
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 16px;
    color: var(--primary-color-100);
    position: relative;
    font-weight: 600;
    width: fit-content;
    display: inline-block;
    border: 1px solid var(--primary-color-100);
}

.primary-button::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color-100);
    background-image: url('../images/icons/arrow-icon.png');
    background-size: 15px 15px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    position: absolute;
    top: 2px;
    transition: all 0.3s ease;
} 

.primary-button:hover::after{
    transform: rotate(45deg);
    background-color: #8C6629;
}

/* Primary Button on White Background - Alternative Style */
.primary-button--light {
    background-color: #fff;
    color: var(--primary-color-100);
    border: 2px solid var(--primary-color-100);
}

.primary-button--light:hover {
    background-color: var(--primary-color-100);
    color: #fff;
    border-color: var(--primary-color-100);
}

.primary-button--light::after {
    background-color: var(--primary-color-100);
}

.primary-button--light:hover::after {
    background-color: var(--secondary-color-100);
}

.secondary-button__menu--item a {
    background-color: #fff;
    padding: 10px 30px !important;
    border-radius: 20px !important;
    font-size: 16px !important;
    color: var(--primary-color-100) !important;
    position: relative;
    font-weight: 600 !important;
    border: 1px solid  #B3B3B3 !important;
    display: inline !important;
} 

.secondary-button__menu--item a::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color-100);
    background-image: url('../images/icons/arrow-icon.png');
    background-size: 15px 15px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    position: absolute;
    top: 2px;
    transition: all 0.3s ease;
} 

.secondary-button__menu--item a:hover::after {
    transform: rotate(45deg);
    background-color: #8C6629;
}

.ternary-button {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    position: relative;
}

.ternary-button::after{
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--secondary-color-100);
    background-image: url('../images/icons/arrow-icon.png');
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    position: absolute;
    top: 0px;
    transition: all 0.3s ease;
} 

.ternary-button:hover::after{
    transform: rotate(45deg);
    background-color: #8C6629;
}

/* Background Colors */
.brown-white-bg-overlay {
    background: linear-gradient(184.89deg, rgba(64, 50, 38, 0) 60.54%, var(--primary-color-100) 105.7%);
}

.special-text{
    color: var(--secondary-color-100);
    font-family: "RobotoRegular";
    position: relative;
    border-radius: 7px;
    display: inline-block;
    margin-left: 6px;
    text-transform: uppercase;
}

.special-text::after {
    content: "";
    border-right: 2px solid var(--secondary-color-100);
    position: absolute;
    height: 17px;
    top: 3px;
    right: -6px;
    border-radius: 0 14px 14px 0;
    width: 5px;
}

.special-text::before{
    content: "";
    border-left: 2px solid var(--secondary-color-100);
    position: absolute;
    height: 17px;
    top: 3px;
    left: -6px;
    border-radius: 14px 0 0 14px;
    width: 5px;
}

.full-image{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hide-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;

	&::-webkit-scrollbar {
		display: none;
	}
}

.width-80{
    width: 80%;
}

@media (max-width: 768px) {
    .width-80{
        width: 100%;
    }
}

/* ==========================================================================
   Accessibility - Focus States
   ========================================================================== */

/* Default focus visible styles for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--secondary-color-100);
    outline-offset: 2px;
}

/* Remove default outline on focus (use focus-visible instead) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color-100);
    color: #fff;
    padding: 1rem 2rem;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Accessibility - Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   Accessibility - High Contrast Mode
   ========================================================================== */

@media (prefers-contrast: high) {
    .primary-button,
    .secondary-button__menu--item a,
    .ternary-button {
        border: 2px solid currentColor;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ==========================================================================
   Screen Reader Only
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* ==========================================================================
   Global Badge Styles
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(187, 154, 101, 0.15);
    border: 1px solid rgba(187, 154, 101, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--secondary-color-100);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.badge--dark {
    background: rgba(64, 50, 38, 0.1);
    border-color: rgba(64, 50, 38, 0.2);
    color: var(--primary-color-100);
}

/* ==========================================================================
   Global Stat/Counter Styles
   ========================================================================== */

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color-100);
    font-family: 'AlbertSansBold', sans-serif;
    line-height: 1;
}

.stat__label {
    color: var(--ternary-color-100);
    font-size: 14px;
    margin-top: 5px;
}

.stat--light .stat__number {
    color: var(--secondary-color-100);
}

.stat--light .stat__label {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Global Ghost/Outline Button
   ========================================================================== */

.ghost-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ghost-button:hover,
.ghost-button:focus {
    border-color: var(--secondary-color-100);
    background: rgba(187, 154, 101, 0.1);
}

.ghost-button--dark {
    border-color: rgba(64, 50, 38, 0.3);
    color: var(--primary-color-100);
}

.ghost-button--dark:hover,
.ghost-button--dark:focus {
    border-color: var(--primary-color-100);
    background: rgba(64, 50, 38, 0.05);
}

.image-full-width{
    width: 60%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-full-width{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ==========================================================================
   List with Checkmarks/Tick Marks
   ========================================================================== */

.list-checkmark ul,
.list-checkmark ol {
    list-style: none;
    padding-left: 0;
}

.list-checkmark li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.list-checkmark li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--secondary-color-100, #BB9A65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-checkmark li::after {
    content: '';
    position: absolute;
    left: 0.375rem;
    top: 0.65rem;
    width: 0.5rem;
    height: 0.25rem;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    z-index: 1;
}

/* Alternative style with square checkmark */
.list-checkmark--square li::before {
    border-radius: 4px;
}

/* Alternative style with outline only */
.list-checkmark--outline li::before {
    background-color: transparent;
    border: 2px solid var(--secondary-color-100, #BB9A65);
}

.list-checkmark--outline li::after {
    border-color: var(--secondary-color-100, #BB9A65);
}

/* Size variants */
.list-checkmark--small li {
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

.list-checkmark--small li::before {
    width: 1rem;
    height: 1rem;
    top: 0.2rem;
}

.list-checkmark--small li::after {
    left: 0.25rem;
    top: 0.35rem;
    width: 0.4rem;
    height: 0.2rem;
}

.list-checkmark--large li {
    padding-left: 2.5rem;
    font-size: 1.125rem;
}

.list-checkmark--large li::before {
    width: 1.5rem;
    height: 1.5rem;
    top: 0.3rem;
}

.list-checkmark--large li::after {
    left: 0.5rem;
    top: 0.65rem;
    width: 0.6rem;
    height: 0.3rem;
}