/* ================================
   OWNER LOGIN PAGE - C&Y ROMA
================================ */

.owner-page,
.owner-page * {
    box-sizing: border-box;
}

.owner-page {
    margin-left: 250px;
    width: calc(100% - 250px);

    font-family: 'AvenirLight', sans-serif;
    background: #f7f3ec;
    color: #2f2a24;

    overflow: hidden;
    min-height: 100vh;
}

.owner-page a {
    text-decoration: none;
    color: inherit;
}

.owner-page h1,
.owner-page h2,
.owner-page h3,
.owner-page h4 {
    font-family: 'CinzelCustom', serif;
    font-weight: 400;
}

/* ================================
   HERO
================================ */

.owner-hero {
    position: relative;
    min-height: 640px;
    padding: 70px 24px;

    background-image: url("https://www.ceyapt.com/wp-content/uploads/2026/06/home_background.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;
}

.owner-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.68) 0%,
            rgba(0,0,0,0.45) 48%,
            rgba(0,0,0,0.18) 100%
        ),
        radial-gradient(
            circle at 25% 32%,
            rgba(255,255,255,0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 74% 72%,
            rgba(176,158,128,0.20),
            transparent 32%
        );
}

.owner-hero-content {
    position: relative;
    z-index: 2;

    max-width: 920px;
    margin: 0 auto;
    padding: 38px 42px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 28px 90px rgba(0,0,0,0.32);

    animation: ownerHeroFade 1.2s ease forwards;
}

.owner-hero h1 {
    margin: 0 0 22px;

    font-family: 'CinzelCustom', serif;
    font-size: 6rem;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 400;

    color: rgba(233,233,233,0.62);
}

.owner-hero p {
    max-width: 780px;
    margin: 0 auto;

    font-family: 'AvenirLight', sans-serif;
    font-size: 1rem;
    line-height: 1.75;

    color: rgba(255,255,255,0.76);
}

/* ================================
   KICKER
================================ */

.owner-kicker {
    display: inline-block;
    margin-bottom: 14px;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: rgba(255,255,255,0.78);
}

.owner-kicker.dark {
    color: #B09E80;
}

/* ================================
   SOFT SEPARATOR
================================ */

.owner-soft-separator {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #F6F4EF 100%);
    padding: 46px 20px;
    text-align: center;
    overflow: hidden;
}

.owner-soft-separator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(176,158,128,0),
        rgba(176,158,128,0.75),
        rgba(176,158,128,0)
    );
}

.owner-soft-separator-inner {
    position: relative;
    z-index: 2;
}

.owner-soft-separator span {
    display: inline-block;

    padding: 0 22px;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #B09E80;
    background: linear-gradient(135deg, #ffffff 0%, #F6F4EF 100%);
}

/* ================================
   INTRO IMAGE SECTION
================================ */

.owner-intro-section {
    position: relative;
    min-height: 600px;
    padding: 90px 24px;

    background-image: url("https://www.ceyapt.com/wp-content/uploads/2026/06/home_background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.owner-intro-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 25% 35%, rgba(255,255,255,0.12), transparent 30%),
        radial-gradient(circle at 80% 75%, rgba(176,158,128,0.18), transparent 32%);

    pointer-events: none;
}

.owner-intro-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.68) 0%,
        rgba(0,0,0,0.45) 44%,
        rgba(0,0,0,0.12) 100%
    );
}

.owner-glass-box {
    position: relative;
    z-index: 2;

    max-width: 570px;
    margin-left: 8%;
    padding: 38px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 25px 80px rgba(0,0,0,0.30);
}

.owner-glass-box h2 {
    margin: 0 0 20px;

    font-family: 'CinzelCustom', serif;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 400;

    color: rgba(233,233,233,0.88);
}

.owner-glass-box p {
    margin: 0;

    font-family: 'AvenirLight', sans-serif;
    font-size: 1rem;
    line-height: 1.75;

    color: rgba(255,255,255,0.76);
}

/* ================================
   COMMON LAYOUT
================================ */

.owner-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.owner-access-section {
    padding: 95px 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f7f5f0 100%);
}

.owner-container > h2 {
    margin: 0 0 18px;

    font-family: 'CinzelCustom', serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 400;

    color: #716551;
}

.owner-lead {
    max-width: 760px;
    margin: 0 0 42px;

    font-family: 'AvenirLight', sans-serif;
    font-size: 1rem;
    line-height: 1.85;

    color: rgba(113,101,81,0.82);
}

/* ================================
   FORM STATUS MESSAGES
================================ */

.owner-success,
.owner-error {
    max-width: 900px;
    margin: 0 auto 28px;
    padding: 16px 18px;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;

    border: 1px solid rgba(176,158,128,0.32);
    background: rgba(255,255,255,0.82);
    color: rgba(47,42,36,0.72);

    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}

.owner-success {
    border-color: rgba(113,101,81,0.42);
}

.owner-error {
    border-color: rgba(120,40,40,0.32);
    color: rgba(120,40,40,0.82);
}

/* ================================
   LOGIN / REGISTER CARD
================================ */

.owner-access-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px;

    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(176,158,128,0.28);
    border-radius: 0;

    box-shadow: 0 24px 70px rgba(47,42,36,0.08);
}

.owner-tabs {
    display: flex;
    gap: 12px;

    margin-bottom: 30px;
    border-bottom: 1px solid rgba(176,158,128,0.25);
}

.owner-tab {
    appearance: none;
    border: 0;
    background: transparent;

    padding: 0 0 14px;
    margin-right: 18px;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(113,101,81,0.52);
    cursor: pointer;
}

.owner-tab.active {
    color: #716551;
    border-bottom: 1px solid #716551;
}

.owner-tab-panel {
    display: none;
}

.owner-tab-panel.active {
    display: block;
}

.owner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.owner-field {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-bottom: 22px;
}

.owner-field-full {
    grid-column: 1 / -1;
}

.owner-field label {
    font-family: 'AvenirLight', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(113,101,81,0.68);
}

.owner-field input {
    width: 100%;
    height: 48px;
    padding: 0 16px;

    border: 1px solid rgba(176,158,128,0.36);
    background: rgba(255,255,255,0.74);

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.95rem;
    color: #716551;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.owner-field input::placeholder {
    color: rgba(113,101,81,0.42);
}

.owner-field input:focus {
    border-color: rgba(113,101,81,0.8);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(176,158,128,0.14);
}

.owner-submit {
    width: 100%;
    min-height: 52px;

    border: 1px solid #716551;
    background: #716551;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #ffffff;
    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.owner-submit:hover {
    background: #5f5545;
    border-color: #5f5545;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(47,42,36,0.14);
}

.owner-form-note {
    margin: 18px 0 0;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.86rem;
    line-height: 1.65;

    color: rgba(113,101,81,0.62);
}

/* ================================
   FINAL CTA
================================ */

.owner-final-cta {
    background: #ffffff;
    padding: 88px 26px;
}

.owner-final-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 44px;

    text-align: center;

    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.95), rgba(255,255,255,0.58) 38%, transparent 62%),
        linear-gradient(135deg, #F6F4EF 0%, #ffffff 100%);

    border: 1px solid rgba(176,158,128,0.28);
    box-shadow:
        0 28px 80px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.owner-final-card h2 {
    margin: 0 0 18px;

    font-family: 'CinzelCustom', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 400;

    color: #716551;
}

.owner-final-card p {
    max-width: 720px;
    margin: 0 auto;

    font-family: 'AvenirLight', sans-serif;
    font-size: 1rem;
    line-height: 1.75;

    color: rgba(113,101,81,0.82);
}

/* ================================
   REVEAL ANIMATIONS
================================ */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ownerHeroFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1180px) {
    .owner-hero h1 {
        font-size: 5rem;
    }
}

@media (max-width: 1024px) {
    .owner-intro-section {
        background-attachment: scroll;
    }

    .owner-hero h1 {
        font-size: 4.8rem;
    }
}

@media (max-width: 900px) {
    .owner-page {
        margin-left: 0;
        width: 100%;
    }

    .owner-hero {
        min-height: 540px;
    }

    .owner-hero-content {
        padding: 32px 28px;
    }

    .owner-hero h1 {
        font-size: 3.6rem;
    }

    .owner-intro-section {
        min-height: 540px;
        padding: 72px 22px;
        align-items: flex-end;
    }

    .owner-glass-box {
        margin: 0;
        max-width: 100%;
        padding: 30px 26px;
    }

    .owner-glass-box h2 {
        font-size: 2.2rem;
    }

    .owner-access-section {
        padding: 70px 0;
    }

    .owner-container {
        padding: 0 24px;
    }

    .owner-container > h2,
    .owner-final-card h2 {
        font-size: 2.25rem;
    }

    .owner-final-cta {
        padding: 68px 24px;
    }

    .owner-final-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .owner-soft-separator {
        padding: 40px 20px;
    }

    .owner-hero {
        min-height: 500px;
        padding: 50px 22px;
    }

    .owner-hero h1 {
        font-size: 3rem;
    }

    .owner-hero p,
    .owner-lead,
    .owner-glass-box p,
    .owner-final-card p {
        font-size: 0.95rem;
    }

    .owner-access-card {
        padding: 28px 22px;
    }

    .owner-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .owner-field-full {
        grid-column: auto;
    }

    .owner-tabs {
        gap: 0;
    }

    .owner-tab {
        margin-right: 22px;
        font-size: 0.78rem;
    }
}

@media (max-width: 600px) {
    .owner-container {
        padding: 0 20px;
    }

    .owner-hero-content {
        padding: 28px 22px;
    }

    .owner-glass-box h2 {
        font-size: 2rem;
    }

    .owner-access-card {
        padding: 26px 20px;
    }

    .owner-final-card {
        padding: 34px 22px;
    }

    .owner-submit {
        min-height: 50px;
        padding: 0 18px;
        font-size: 0.76rem;
        letter-spacing: 1.6px;
    }
}

@media (max-width: 480px) {
    .owner-hero h1 {
        font-size: 2.65rem;
    }

    .owner-soft-separator span {
        letter-spacing: 2px;
        font-size: 0.72rem;
    }

    .owner-tab,
    .owner-field label,
    .owner-submit {
        letter-spacing: 1.6px;
    }
}