/* AEM Labs Limited - CSS: Landing Page
   ==================================== */


/* Hero */
.hero {
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero>div:not(.container) {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero>div:not(.container) img {
    display: block;
    width: 45%;
    height: auto;
    margin: auto;
    object-fit: contain;
    filter: brightness(0.25);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.75);
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hero h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.hero p {
    font-size: 16px;
    font-weight: 500;
    color: #ddd;
    width: 70%;
    margin: 0 auto;
}

.hero .buttons {
    display: inline-flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.hero .buttons a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero .buttons>a:first-of-type {
    background: linear-gradient(180deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color-2);
}

.hero .buttons>a:first-of-type:hover {
    filter: brightness(1.2);
}

.hero .buttons>a:active {
    transform: scale(0.99);
}

.hero .buttons a:last-of-type {
    background: transparent;
    border: 1px solid var(--accent-color-1);
    color: var(--accent-color-1);
}

.hero .buttons a:last-of-type:hover {
    background: rgba(var(--accent-color-1-rgb), 0.1);
}


/* Enquiry Form & Calendar */
section:not(.hero)>div {
    background: rgba(var(--bg-color-2-rgb), 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    padding: 24px 30px;
}






/* ——— Calendar placeholder ——— */
.landing-calendar-placeholder {
    margin-top: 8px;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.landing-calendar-placeholder i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-bottom: 12px;
}

.landing-calendar-placeholder p {
    margin: 0 0 16px;
    line-height: 1.5;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

.landing-calendar-placeholder a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--accent-color-1);
    border: 1px solid rgba(var(--accent-color-1-rgb), 0.4);
    background: transparent;
    transition: background 0.15s ease;
}

.landing-calendar-placeholder a:hover {
    background: rgba(var(--accent-color-1-rgb), 0.1);
}

.landing-calendar-embed {
    margin-top: 8px;
}

[data-calendar-slot] iframe {
    width: 100%;
    min-height: 640px;
    border: none;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}