:root {
    --pale: #E8D9C4;
    --gold: #785D32;
    --rough: #3E160C;
    --navy: #050A30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--pale);
}

p {
    font-size: 1em;
    font-weight: 200;

}

h4 {
    font-weight: 400;
    padding: 12px 48px;
    font-size: 1.2em;
    font-family: 'Playfair Display', serif;

}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 0.1em;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
}

@-moz-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 720px;
    }

    100% {
        background-position: 720px;
    }
}

@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 720px;
    }

    100% {
        background-position: 720px;
    }
}

@-o-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 720px;
    }

    100% {
        background-position: 720px;
    }
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 720px;
    }

    100% {
        background-position: 720px;
    }
}

nav {
    position: fixed;
    width: 100%;
    align-items: center;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    background: rgba(5, 10, 48, 0.8);
    z-index: 1000;
}

.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: var(--pale);
    text-decoration: none;

}

/* SECTIONS */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    position: relative;
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#home {
    background-image: url('1.jpg');
}

#services {
    background-image: url('3.jpg');
}

#stories {
    background-image: url('5.jpg');
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 48, 0.7);
}

.content {
    position: relative;
    max-width: 900px;
}

.dark-bg {
    background: linear-gradient(135deg, #050A30, #3E160C);
}

.text-align-center {
    align-items: center;
    align-content: center;
}

.section h2,
.heading {
    font-size: 4em;
}

.glass {
    /* From https://css.glass */
    background: rgba(16, 23, 59, 0.5);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.9px);
    -webkit-backdrop-filter: blur(7.9px);
    padding: 4em;
}

/* SPLIT */
.split-section {
    display: flex;
    min-height: 100vh;
}

.split-section .text {
    flex: 1;
    padding: 80px;
}

.split-section .image {
    flex: 1;
}

.split-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reverse {
    flex-direction: row-reverse;
}

/* GRID */
.grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.card:hover {
    border-color: var(--gold);
}

/* ANIMATION */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* LUXURY CARD */
.lux-card {
    position: relative;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.lux-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, #785D32, transparent, #E8D9C4);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* INNER */
.lux-card-inner {
    position: relative;
    height: 100%;
    padding: 30px;
    background: rgba(5, 10, 48, 0.85);
    backdrop-filter: blur(10px);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TEXT */
.lux-card h3 {
    margin-bottom: 10px;
    color: #E8D9C4;
    font-size: 1.2em;
}

.lux-card p {
    color: #bbb;
    font-size: 1.2em;

}

/* HOVER EFFECT */
.lux-card:hover .lux-card-inner {
    transform: translateY(-10px) scale(1.02);
    background: rgba(5, 10, 48, 0.95);
}

.lux-card:hover::before {
    background: linear-gradient(135deg, #E8D9C4, #785D32, #E8D9C4);
}

/* SUBTLE GLOW */
.lux-card:hover {
    box-shadow: 0 20px 60px rgba(120, 93, 50, 0.4);
}

/* STORIES GRID */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* STORY CARD (Uiverse base upgraded) */
.story-card {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #050A30;
}

/* GRADIENT BORDER */
.story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, #785D32, #E8D9C4, #785D32);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* CONTENT */
.story-content {
    position: relative;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(5, 10, 48, 0.85);
    transition: 0.5s;
}

/* TEXT */
.story-content h3 {
    color: #E8D9C4;
    margin-bottom: 10px;
    font-size: 20px;
}

.story-content p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER EFFECT (MAIN MAGIC FROM UIVERSE STYLE) */
.story-card:hover .story-content {
    transform: translateY(-20px);
    background: rgba(5, 10, 48, 0.95);
}

/* LIGHT SWEEP EFFECT */
.story-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(232, 217, 196, 0.3), transparent);
    transition: 0.6s;
}

.story-card:hover::after {
    left: 100%;
}

/* GLOW */
.story-card:hover {
    box-shadow: 0 25px 80px rgba(120, 93, 50, 0.5);
}/* SECTION BASE */
.lux-footer-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* 🔥 BACKGROUND GLOW LAYERS (NEW) */
.lux-footer-pro::after {
    content: "";
    position: absolute;
    bottom: -250px;
    right: -200px;
    width: 900px;
    height: 900px;

    background:
        radial-gradient(circle at 70% 70%, rgba(120,93,50,0.25), transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(232,217,196,0.15), transparent 65%),
        radial-gradient(circle at 80% 80%, rgba(120,93,50,0.2), transparent 70%);

    filter: blur(120px);
    pointer-events: none;
}

/* EXTRA LAYER */
.lux-footer-pro::before {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;

    background: radial-gradient(circle, rgba(232,217,196,0.1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* MAIN CARD */
.footer-card {
    position: relative;
    width: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(5, 10, 48, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2;
}

/* GOLD BORDER MAGIC */
.footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(135deg, #785D32, #E8D9C4, #785D32);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* LEFT SIDE */
.footer-left {
    flex: 1;
    padding: 60px;
    position: relative;
}

/* GOLD CURVES (UPGRADED) */
.footer-left::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 5px solid var(--gold);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    opacity: 0.15;
}

.footer-left::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    top: -60px;
    left: -60px;
    opacity: 0.1;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, rgba(120,93,50,0.1), transparent);
}

/* TYPOGRAPHY */
.footer-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    color: #aaa;
    margin-bottom: 30px;
}

/* INFO */
.footer-info p {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 0.95em;
}

/* RIGHT TITLE */
.footer-right h3 {
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

/* GOLD HOVER LINE */
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: 0.4s;
}

.footer-links a:hover {
    color: var(--pale);
}

.footer-links a:hover::after {
    width: 40%;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    color: #666;
    font-size: 0.8em;
}

/* HOVER EFFECT */
.footer-card {
    transition: 0.5s;
}

.footer-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 100px rgba(120, 93, 50, 0.4);
}

/* ✨ OPTIONAL: subtle animation */
.lux-footer-pro::after {
    animation: glowMove 12s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-40px, -30px);
    }
}