/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base font size */
}
@media (max-width: 600px) { /* Adjust for smaller screens */
    html {
        font-size: 15px;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Keep your existing padding */
    box-sizing: border-box; /* Ensure this is included */
}
/* Add general container adjustments for smaller screens */
@media (max-width: 1200px) {
    .container { max-width: 98vw; }
}
@media (max-width: 768px) {
    .container { padding: 0 15px; }
}
@media (max-width: 600px) {
    .container { padding: 0 10px; }
}
:root {
    --primary-color: #522C81;
    --secondary-color: #D3C2FF;
    --bg-color: #FFEBF4;
    --text-dark: #2D1B3D;
    --text-light: #6B5B73;
    --white: #FFFFFF;
    --accent-gradient: linear-gradient(135deg, #522C81 0%, #D3C2FF 100%);
    --shadow: 0 10px 30px rgba(82, 44, 129, 0.15);
    --shadow-lg: 0 20px 40px rgba(82, 44, 129, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;

}

// JavaScript for the timer
function startTimer(duration, display) {
    var timer = duration, hours, minutes, seconds;
    setInterval(function () {
        hours = parseInt(timer / 3600, 10);
        minutes = parseInt((timer % 3600) / 60, 10);
        seconds = parseInt(timer % 60, 10);

        hours = hours < 10 ? "0" + hours : hours;
        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;

        display.textContent = hours + ":" + minutes + ":" + seconds;

        if (--timer < 0) {
            timer = duration; // Reset the timer
        }
    }, 1000);
}

window.onload = function () {
    var oneDay = 24 * 60 * 60; // 24 hours in seconds
    var display = document.querySelector('#pro-timer');
    startTimer(oneDay, display);
};


