:root {
    --brand-orange: 250, 172, 104;   /* CANLI TURUNCU */
    --glass-low: 0.14;
    --glass-mid: 0.18;
    --glass-high: 0.30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* VIDEO */
.video-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* KARARTMA */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: -2;
}

/* ALT GRADIENT */
body::after {
    content: "";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0)
    );
    z-index: -1;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* PROFIL */
.profile {
    text-align: center;
    margin-bottom: 25px;
}

.profile img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid rgba(255,255,255,0.8);
}

.profile h1 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.profile p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* SWITCH */
.switch {
    display: flex;
    background: rgba(var(--brand-orange), var(--glass-mid));
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 1px rgba(var(--brand-orange), 0.45);
}

.switch-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
}

.switch-btn.active {
    background: #fff;
    color: #111;
}

/* SWITCH CONTENT */
.switch-content {
    display: none;
}
.switch-content.active {
    display: block;
}

/* LINKS */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* LINK BUTTON */
.link-btn {
    background: rgba(var(--brand-orange), var(--glass-mid));
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(var(--brand-orange), 0.45),
        0 12px 30px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
}

.link-btn:hover {
    background: rgba(var(--brand-orange), var(--glass-high));
    transform: translateY(-3px) scale(1.01);
}

.link-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.link-btn span {
    flex: 1;
    text-align: center;
}

/* SHOP */
.shop {
    margin-top: 40px;
}
.shop-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 14px; text-align: center;}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* VILLA CARD V2 */
.villa-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.villa-card-v2:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.villa-card-v2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.villa-body {
    padding: 14px;
}

.villa-location {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 6px;
    display: block;
}

.villa-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.villa-features {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.feature img {
    width: 16px;
    height: 16px;
}

/* PRICE */
.villa-price {
    font-size: 16px;
    font-weight: 700;
    color: rgb(var(--brand-orange));
}

/* OFFER */
.offer {
    margin-top: 40px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(var(--brand-orange), var(--glass-mid));
    backdrop-filter: blur(12px);
    color: #fff;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(var(--brand-orange), 0.45);
}

.offer form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer input,
.offer select {
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
}

.offer button {
    padding: 12px;
    border-radius: 14px;
    border: none;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

/* SOCIALS */
.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.socials a {
    width: 46px;
    height: 46px;
    background: rgba(var(--brand-orange), 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1px rgba(var(--brand-orange), 0.45),
        0 10px 24px rgba(0,0,0,0.3);
}

.socials img {
    width: 22px;
    filter: brightness(0) invert(1);
}

/* FOOTER */
.footer {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 30px;
}
