body::-webkit-scrollbar {   width: 5px;  height: 8px;  background-color: #AAA348; }
body::-webkit-scrollbar-thumb {background:#44465E;}
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

body {
    display: flex;
    flex-direction: column; 
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

body {
    width: 100%;
    min-width: 400px;
    position: relative;
    overflow-x: clip; 
}

        body {
            font-family: 'Afacad', sans-serif;
            background-color: #EEEEEE;
            color: #1c1c1c;
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: underline;
        }

        a:hover {
            color: #A;
        }

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #44465E;
    padding: 10px 48px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;

}

    .gradient-bar {
		position:absolute;
        width: 100%;
		left:0 ;
		right:0;
        height: 5px;
        background: linear-gradient(90deg, #eee 0%, #44465E 50%, #eee 100%);
        background-size: 200% 100%;
        animation: moveGradientSeamless 33s linear infinite;
		z-index: 10;

    }

.gradient-top {
    top: 0;
}

.gradient-bottom {
    bottom: 0;
}

    @keyframes moveGradientSeamless {
        0% { background-position: 200% 0%; }
        100% { background-position: 0% 0%; }
    }

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 40px;
    display: block;
}

main {
    flex: 1;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

        section {
            padding: 20px 20px;
            display: flex;


            flex-direction: column;
            text-align: center;
            position: relative;
            background-size: cover;
            background-position: center;
        }

		/* typeout*/

        .hero-section {
            background-image: url('images/marble.jpg'); 
            background-color: #44465e;
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 75% center;
            height: 80px;
        }

        .typewriter-container {
            text-align: center;
            width: 100%;
			margin-top: 5px ;
        }

        #typewriter-text {
            display: inline-block;
            font-size: 33px;
            color: #FFEC64;
            white-space: nowrap;
            overflow: hidden;
            min-height: 38px;
            line-height: 38px;
        }

        #typewriter-text::before {
            content: '\200b';
        }

        .cursor {
            display: inline-block;
            width: 0.51em;
            text-align: center;
            animation: blink-insert 1.0s step-end infinite;
        }

        #typewriter-text.is-active .cursor {
            animation: none;
            background-color: #AAA348;
            color: #44465E;
        }

        @keyframes blink-insert {
            0%, 100% { background-color: transparent; color: #FFEC64; }
            50% { background-color: #AAA348; color: #44465E; }
        }

.info-section {
    background-color: #eeeeee; 
    color: #44465e;
    width: 100%;
    
    flex-grow: 1; 
    justify-content: flex-start;
    
    padding-top: 40px; 
    padding-bottom: 10px; 
}

.info-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.info-section h2 {
    font-size: 24pt;
    font-weight: 400;
    margin-bottom: 30px;
}

.info-section h2 a {
    text-decoration: underline;
}

.info-section h3 {
    font-size: 16pt;
    font-weight: 400;
    margin-bottom: 15px;
}

.info-section p {
    font-size: 13pt;
    line-height: 1.6;
    margin-top: 30px;
    margin-bottom: 30px;
}

.info-section small {
    font-size: 11pt;
    display: block;
    margin-top: 30px;
    margin-bottom: 10px; 
    line-height: 1.6;
}

        .video-section {
            padding: 0;
            background-color: #000;
            width: 100%;
            overflow: hidden;
        }

        #main_vid {
            width: 100%;
            height: auto;
            display: block;
        }

		
.dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #AAA348;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.menu-toggle:hover {
    color: #FFEC64;
}

.dropdown-container.open .menu-icon { display: none; }
.dropdown-container.open .up-arrow { display: block !important; }

.dropdown-menu {
	visibility: hidden;
    position: absolute;
    top: calc(100% + 15px); 
    left: 0;
    width: 222px; 
    max-width: 90vw; 
    background-color: #44465EFA;
    box-shadow: 0px 0px 22px rgba(68,70,94,0.55);
    z-index: 99;
	opacity: 0;	
	clip-path: inset(0 100% 100% 0);
	transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0.2s;
}

.dropdown-container.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    clip-path: inset(0 -50px -50px 0); 
    transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0s; 
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* menu and effects */

/*
.dropdown-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200,200,200,0.35), transparent);
    transition: left 0.3s ease;
}
*/


.dropdown-menu li a {
    font-size: 14pt;
    font-weight: 400;
    color: #EEEEEE;
    padding: 4px 8px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent; 
	border-top: 0px solid #eee;
    text-decoration: none;
	position: relative;
    z-index: 1;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: radial-gradient(
        500px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), 
        rgba(238, 238, 238, 0.25), 
        transparent 95%
    );
    opacity: 0;
    z-index: -1; 
    pointer-events: none; 
    transition: opacity 0s;
}


.dropdown-menu:hover li a::before {
    opacity: 1;
}

.dropdown-menu li a:hover {
    color: #FFEC64;
    border-left-color: #EEEEEE; 
    background-color: rgba(68, 70, 94, 0.5);
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transition: opacity 0.3s ease; 
}

.dropdown-menu li a:hover::after {
    left: 100%;
}    

.header-text {
    font-size: 18pt;
    font-weight: 400;
    color: #FFEC64;
    text-decoration: none;
    white-space: nowrap; 
    transition: color 0.3s;
}

.header-text:hover {
    color: #FFEC64; 
}

.header-phone {
font-size: 18pt;
    font-weight: 400;
    color: #AAA348;
    text-decoration: none;
    white-space: nowrap; 
    display: inline-block;
    min-width: 135px;
margin-left: auto; 
    text-align: right; 
transition: color 0.3s ease, opacity 0.2s ease;
    opacity: 1;
}

.header-phone:hover {
    color: #FFEC64;
}

.header-phone.hidden {
    opacity: 0;
}





@media (max-width: 800px) {
    body {
        min-width: 0;
    }
    
    header {
        padding: 10px 20px;
        justify-content: center;
    }
    
    .dropdown-container {
        position: absolute;
        left: 20px;
    }
    
    .header-phone {
        font-size: 14pt;
        position: absolute;
        right: 20px;
        min-width: auto;
        margin-left: 0;
    }
    
    .placard-content {
        padding: 30px 15px;
    }
    .placard h3 {
        font-size: 14pt;
    }
}



.menu-typed {
    color: #FFEC64;
}

.menu-base {
    color: #EEEEEE;
}

.menu-cursor::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.51em;
    height: 1.1em;
    z-index: -1;
    
    animation: menu-blink-bg 1.0s step-end infinite;
}

.menu-cursor {
    position: relative;
    z-index: 1;
	animation: menu-blink-text 1.0s step-end infinite;
}



.menu-cursor.is-active::before {
    animation: none;
    background-color: #EEEEEE;
}

.menu-cursor.is-active {
    animation: none;
    color: #44465E;
}

@keyframes menu-blink-insert {
    0%, 100% { background-color: transparent; color: #FFEC64; }
    50% { background-color: #EEEEEE; color: #EEEEEE; }
}

@keyframes menu-blink-text {
    0%, 100% { color: #444A48; }
    50% { color: #FFEC64; }
}

@keyframes menu-blink-bg {
    0%, 100% { background-color: #EEEEEE; }
    50% { background-color: transparent; }
}

        footer {
            background-image: url('images/marble2.jpg');
			background-size: cover;
			background-repeat: no-repeat;			
			background-position: 75% center;
            background-color: #44465e;
            color: #FFEC64;
            text-align: left;
            padding: 200px 20px;
        }

        footer small {
            font-size: 10pt;
        }

        @media (max-width: 800px) {
            #typewriter-text {
                font-size: 16px;
                min-height: 20px;
                line-height: 20px;
				-webkit-box-reflect: below 2px linear-gradient(to bottom, transparent 30%, rgba(238, 238, 238, 0.4));
            }
            #typewriter-text::after {
                top: 1px;
                width: 0.51em;
                height: 0.8em;
            }
            .info-section h2 {
                font-size: 18pt;
            }
        }

footer {
    background-color: #44465e;
    color: #EEEEEE;
    padding: 60px 48px 30px 48px;
    font-family: 'Afacad', sans-serif;
    width: 100%;
}

.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238, 238, 238, 0.15);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.footer-logo-area {
    display: flex;
    align-items: center;
}

.footer-logo-area .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-area img {
    height: 40px;
    margin-right: 15px;
    display: block;
}

.footer-logo-area .header-text {
    font-size: 18pt;
    font-weight: 400;
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone {
    font-size: 18pt;
    font-weight: 400;
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-logo-area .header-text:hover,
.footer-phone:hover {
    color: #FFEC64;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 13pt;
    font-weight: 400;
    color: #EEEEEE;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col li a {
    font-size: 13pt;
    font-weight: 400;
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col li a:hover {
    color: #FFEC64;
		background-color: #44465E;
		border-radius: 5px ;
		transition background-color: .3s ease; 

}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(238, 238, 238, 0.15);
    margin: 0 0 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 11pt;
}

.footer-legal .copyright {
    color: rgba(238, 238, 238, 0.6);
}

.footer-legal a {
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #FFEC64;
}

.privacy-toggle-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.privacy-toggle-link svg {
    transition: color 0.2s ease;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-socials a:hover {
    color: #FFEC64;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    footer {
        padding: 40px 20px 20px 20px;
background-image: 
            url('images/marble3.jpg');			
			background-position: right top;
			background-size: 100% auto;
    }
    .footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
			
			.footer-logo-area .header-text {
        white-space: normal; 
        font-size: 16pt; 
        line-height: 1.2;
    }
		
}

.footer-chevron {
    display: none; 
    transition: transform 0.3s ease;
}


@media (max-width: 600px) {
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col {
        border-bottom: 1px solid rgba(238, 238, 238, 0.15);
    }

    .footer-col h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 20px 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-chevron {
        display: block;
    }

    .footer-col-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .footer-col-content ul {
        overflow: hidden;
        margin: 0;
    }

    .footer-col.open .footer-col-content {
        grid-template-rows: 1fr;
    }

    .footer-col.open .footer-col-content ul {
        padding-bottom: 20px;
    }

    .footer-col.open .footer-chevron {
        transform: rotate(-180deg);
    }
}



.phone-text {
    display: inline-block; 
}

.phone-icon {
    display: none; 
}

@media (max-width: 600px) {
    .phone-text {
        display: none !important; 
    }
    
    .phone-icon {
        display: block !important; 
    }
}


.pricing-section {
    background-color: #EEEEEE;
    padding: 60px 0;
    width: 100%;
    overflow: hidden;

}

.pricing-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2vw, 30px);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px clamp(10px, 4vw, 48px);
}

.placard {
    background-color: #44465E;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(68, 70, 94, 0.15);
}

.placard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        700px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), 
        rgba(238, 238, 238, 0.10), 
        transparent 50%
    );
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.placard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600%;
    height: 100%;
    background: linear-gradient(
        50deg,
        transparent 20%,
        transparent 60%,
        rgba(238, 238, 238, 0.3),
        transparent 80%,
        transparent 100%
    );
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 10;
}

@keyframes shineSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placard-content {
    padding: clamp(15px, 3vw, 40px) clamp(10px, 2vw, 30px);
    color: #EEEEEE;
    flex-grow: 1;
}

.placard h3 {
    font-size: clamp(12px, 1.8vw, 16pt);
    color: #AAA348;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.placard .price {
    font-size: clamp(24px, 4vw, 36pt);
    font-weight: 400;
    margin-bottom: clamp(15px, 3vw, 0px);
}

.placard .price span {
    font-size: clamp(10px, 1.2vw, 14pt);
    color: rgba(238, 238, 238, 0.6);
}

.placard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placard li {
    font-size: clamp(13px, 1.2vw, 14pt);
    padding: clamp(6px, 1vw, 12px) 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.placard li:last-child {
    border-bottom: none;
}

.tier-btn {
    display: block;
    text-align: center;
    background-image: url('images/clouds.jpg'); 
    background-size: cover; 
    background-position: left bottom; 
    color: #EEEEEE;
    text-decoration: none;
    font-size: clamp(10px, 1.5vw, 14pt);
    padding: clamp(10px, 2vw, 20px);
    border-top: 0px solid rgba(238, 238, 238, .5);
	box-shadow: inset 0 0 0 1000px rgba(30, 32, 44, 0); 
    transition: background-color 0.3s, color 0.3s, box-shadow 0.4s ease;}

@media (hover: hover) {
    .placard:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 20px 40px rgba(68, 70, 94, 0.4);
    }
    .placard:hover h3 {
        color: #FFEC64;
    }
    .placard:hover .tier-btn {
        color: #FFEC64;
		box-shadow: inset 0 0 0 1000px rgba(30, 32, 44, 0.7);
    }
    .placard:hover::before {
        opacity: 1; 
    }
    .placard:hover::after {
        animation: shineSweep 1.0s ease-out forwards;
    }    
}





@media (max-width: 800px) and (pointer: coarse) {
    .pricing-section {
        overflow: visible !important;
    }

    .pricing-track {
        display: flex;
        overflow-x: auto;
        padding: 15px 0 40px 0 !important; 
        gap: 15px; 
        scroll-snap-type: x mandatory; 
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        align-items: center !important;
        height: auto !important;
    }

    .pricing-track::-webkit-scrollbar {
        display: none; 
    }

    .placard {
        flex: 0 0 80%; 
        margin-bottom: 20px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        height: max-content !important; 
    }
    
    .pricing-track::before,
    .pricing-track::after {
        content: '';
        flex: 0 0 calc(10% - 15px); 
    }

    .placard-content { 
        padding: 20px 20px;
    }
    
    .placard h3 { 
        font-size: 14pt;
        margin-bottom: 5px; 
    }
    
    .placard .price { 
        font-size: 32pt; 
        margin-bottom: 15px;
    }
    
    .placard .price span { 
        font-size: 12pt; 
    }
    
    .placard li { 
        font-size: 13pt;
        padding: 8px 0;
    }
    
    .tier-btn { 
        font-size: 14pt; 
        padding: 15px; 
}

.placard:hover, 
    .placard:active {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(68, 70, 94, 0.15) !important;
    }
    
    .placard:hover::after {
        display: none !important;
    }

}


.placard-fine-print {
	margin-bottom: 20px;
    font-size: clamp(11px, 0.9vw, 12px);
    color: #eeeeee;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.3px;
    opacity: 0.85; 
}

.placard-fine-print p {
    margin: 2px 0;
}

.placard-fine-print strong {
    color: #FFEC64; 
    font-weight: 500;
}

.placard-content {
    display: flex;
    flex-direction: column;
}

/* dev-overlay */

#dev-overlay {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(200, 60, 70, 0.95);
    color: #EEEEEE;
    padding: 12px 24px;
    border-radius: 0px;
    font-size: 16pt;
    font-weight: 500;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    white-space: nowrap;
}

#dev-overlay.show {
    opacity: 1;
    visibility: visible;
}