@import url("https://use.typekit.net/ubk1iuw.css");

@font-face {
    font-family: 'Domaine Text';
    src: url('/static/fonts/TestDomaineText-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Domaine Text';
    src: url('/static/fonts/TestDomaineText-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

* {
    font-family: "Domaine Text";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'alternate-gothic-atf', sans-serif;
}

body {
    line-height: 1.6;
    color: white;
    background-color: #0f0f0f;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.cta-button,
.see-more-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover,
.see-more-button:hover {
    background: white;
    color: #0f0f0f;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
