/* Custom Font */
@font-face {
    font-family: 'IntoDotMatrix';
    src: url('../fonts/intodotmatrix_Font.ttf') format('truetype');
}

/* Reset and base styles for promo section only */
body {
    margin: 0;
}

.scot-promo {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IntoDotMatrix', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f7;
}

/* Hero section */
.scot-promo__hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.scot-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.scot-promo__content {
    flex: 1;
}

.scot-promo__app-icon {
    width: 80px;    
}

.scot-promo__title {
    font-size: 5rem;
    margin-top: 1rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

.scot-promo__subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    letter-spacing: 0.02em;
}

.scot-promo__app-store-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.scot-promo__app-store-badge {
    width: 140px;
    height: auto;
}

.scot-promo__app-store-link:hover {
    transform: scale(1.05);
}

.scot-promo__hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scot-promo__watch-container {
    position: relative;
    width: 400px;
    animation: scot-promo-float 6s ease-in-out infinite;
}

.scot-promo__watch-screen-container {
    position: absolute;
    top: 21.5%;
    left: 11.5%;
    width: 70%;
    height: 57%;
    z-index: 1;
    overflow: hidden;
    border-radius: 35px;
    background: #000;
}

.scot-promo__watch-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.scot-promo__watch-frame {
    position: relative;
    width: 97%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    z-index: 2;
}

.scot-promo__blink {
    animation: scot-promo-blink 1s cubic-bezier(0, 0, 0.58, 1) infinite;
    display: inline-block;
    color: #1a1a1a;
}

/* Animations */
@keyframes scot-promo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scot-promo-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Footer */
.scot-promo__footer {
    padding: 2rem;
    background: #f5f5f7;
    border-top: 1px solid #e5e5e7;
    text-align: center;
}

.scot-promo__footer .scot-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scot-promo__footer p {
    color: #666;
    font-size: 0.9rem;
}

.scot-promo__footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.scot-promo__footer a:hover {
    color: #333;
}

/* Responsive design */
@media (max-width: 968px) {
    .scot-promo__container {
        flex-direction: column;
        text-align: center;
    }

    .scot-promo__title {
        font-size: 2.5rem;
    }

    .scot-promo__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .scot-promo__hero-image {
        margin-top: 2rem;
    }

    .scot-promo__watch-container {
        width: 320px;
    }
}

@media (max-width: 480px) {
    .scot-promo__hero {
        padding: 1rem;
    }

    .scot-promo__title {
        font-size: 2rem;
    }

    .scot-promo__subtitle {
        font-size: 1.1rem;
    }

    .scot-promo__watch-container {
        width: 280px;
    }

    .scot-promo__footer {
        padding: 1.5rem;
    }

    .scot-promo__footer p {
        font-size: 0.8rem;
    }
} 