@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap');

:root {
    --primary-color: #ff7e5f; /* Orange/Pink gradient start */
    --secondary-color: #feb47b; /* Orange/Pink gradient end */
    --accent-color: #6a11cb; /* Blue/Purple gradient start */
    --accent-color-2: #2575fc; /* Blue/Purple gradient end */
    --text-color: #333;
    --bg-color: #fff;
    --font-main: "Hammersmith One", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 0 !important; /* No rounded corners */
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 700;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
