/**
 * Rectangles All Day - Product Design Studio
 * Main Stylesheet
 *
 * Typography: Outfit, Inter (Google Fonts)
 * Colors: #090909 (text), #FFFFFF (background), #FFCC00 (accent)
 */

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #FFFFFF;
    color: #090909;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Layout Container
   ============================================ */
.page-container {
    width: 100%;
    max-width: 1440px;
    min-height: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   Top Banner / Booking Notice
   ============================================ */
.booking-notice {
    margin-top: 54px;
    padding: 16px 32px;
    background-color: #FFFCF2;
    border-radius: 28px;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;

    /* Typography */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7142857142857142em;
    letter-spacing: -0.01em;
    text-align: center;
    text-decoration: none;
    color: #090909;

    /* Quick transition for hover */
    transition: border-color 0.1s ease, box-shadow 0.1s ease;
}

.booking-notice:hover {
    border-color: #FFCC00;
    box-shadow:
        0px 1px 2px 0px rgba(0, 0, 0, 0.05),
        0px 3px 3px 0px rgba(0, 0, 0, 0.09),
        0px 7px 4px 0px rgba(0, 0, 0, 0.03),
        0px 12px 5px 0px rgba(0, 0, 0, 0.01);
}

.booking-notice strong {
    font-weight: 600;
}

/* ============================================
   Toast Notification
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #090909;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   Main Content Section
   ============================================ */
.main-content {
    margin-top: 98px;
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* ============================================
   Logo
   ============================================ */
.logo {
    width: 128px;
    height: 128px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Title: Outfit 400, 24px */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3333333333333333em;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
}

.hero-title strong {
    font-weight: 600;
}

/* Subtitle: Outfit 400, 24px */
.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3333333333333333em;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
}

/* ============================================
   Separator
   ============================================ */
.separator {
    width: 100%;
    height: 1px;
    background-color: #EBEDF0;
    border: none;
}

/* ============================================
   Details Section
   ============================================ */
.details {
    width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Detail text: Inter 400, 16px */
.details-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
    width: 100%;
}

.details-text strong {
    font-weight: 600;
}

.details-list {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
    width: 100%;
    list-style: disc;
    padding-left: 1.2em;
    margin: 0;
}

.details-list li {
    margin-bottom: 1em;
}

.details-list li:last-child {
    margin-bottom: 0;
}

.details-list strong {
    font-weight: 600;
}

.details-list a {
    text-decoration: underline;
}

/* ============================================
   Company Logos Section
   ============================================ */
.company-logos {
    margin-top: 64px;
    padding-bottom: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.company-logos a {
    display: block;
    transition: opacity 0.2s ease;
}

.company-logos a:hover {
    opacity: 0.7;
}

/* Individual logo sizes (displayed at 1x, images are 2x retina) */
.company-logos .logo-sierra img {
    width: 111px;
    height: 35px;
}

.company-logos .logo-stripe img {
    width: 80px;
    height: 33px;
}

.company-logos .logo-retool img {
    width: 104px;
    height: 21px;
}

.company-logos .logo-airtable img {
    width: 105px;
    height: 23px;
}

.company-logos .logo-dropbox img {
    width: 110px;
    height: 22px;
}

/* ============================================
   Responsive Styles - Mobile
   ============================================ */
@media (max-width: 768px) {
    .page-container {
        padding: 0 48px;
        min-height: auto;
    }

    .booking-notice {
        margin-top: 32px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .main-content {
        width: 100%;
        margin-top: 48px;
    }

    .hero {
        width: 100%;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 20px;
    }

    .details {
        width: 100%;
    }

    .company-logos {
        margin-top: 32px;
        padding-bottom: 48px;
        flex-wrap: wrap;
        gap: 24px;
    }

    .company-logos .logo-sierra img,
    .company-logos .logo-stripe img,
    .company-logos .logo-retool img,
    .company-logos .logo-airtable img,
    .company-logos .logo-dropbox img {
        width: auto;
        height: 24px;
    }
}

/* ============================================
   Rectangle Easter Egg Canvas
   ============================================ */
#rectangleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ============================================
   Responsive Styles - Tablet
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .page-container {
        padding: 0 48px;
    }

    .main-content {
        width: 100%;
        max-width: 600px;
    }

    .hero {
        width: 100%;
        max-width: 420px;
    }

    .details {
        width: 100%;
        max-width: 520px;
    }
}
