@font-face {
    font-family: 'EB Garamond';
    src: url('assets-home/EBGaramond-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('assets-home/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow:hidden;
}

body {
    font-family: 'EB Garamond', Georgia, serif;
    background-color: #2d1a16;
    color: #d4c4b0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    overflow: hidden;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(45 26 22 / 92%);
    z-index: 1;
}

/* Luxury Light Animation */
.bg-shimmer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Starfield Layer 1 - Small twinkling stars */
.bg-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 15%, rgba(139, 90, 60, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 25% 8%, rgba(122, 85, 63, 0.65) 0%, transparent 1.5px),
        radial-gradient(circle at 42% 22%, rgba(160, 120, 85, 0.55) 0%, transparent 1px),
        radial-gradient(circle at 58% 12%, rgba(139, 90, 60, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 72% 28%, rgba(122, 85, 63, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 88% 18%, rgba(160, 120, 85, 0.65) 0%, transparent 1.5px),
        radial-gradient(circle at 15% 42%, rgba(139, 90, 60, 0.55) 0%, transparent 1px),
        radial-gradient(circle at 32% 38%, rgba(122, 85, 63, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 48% 45%, rgba(160, 120, 85, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 65% 52%, rgba(139, 90, 60, 0.65) 0%, transparent 1.5px),
        radial-gradient(circle at 82% 48%, rgba(122, 85, 63, 0.55) 0%, transparent 1px),
        radial-gradient(circle at 92% 62%, rgba(160, 120, 85, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 8% 68%, rgba(139, 90, 60, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 28% 75%, rgba(122, 85, 63, 0.65) 0%, transparent 1.5px),
        radial-gradient(circle at 45% 82%, rgba(160, 120, 85, 0.55) 0%, transparent 1px),
        radial-gradient(circle at 62% 78%, rgba(139, 90, 60, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 78% 88%, rgba(122, 85, 63, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 18% 55%, rgba(160, 120, 85, 0.65) 0%, transparent 1.5px),
        radial-gradient(circle at 52% 65%, rgba(139, 90, 60, 0.55) 0%, transparent 1px),
        radial-gradient(circle at 85% 35%, rgba(122, 85, 63, 0.7) 0%, transparent 1.5px);
    animation: twinkleStars1 4s ease-in-out infinite;
}

/* Starfield Layer 2 - Medium stars with different timing */
.bg-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(139, 90, 60, 0.55) 0%, transparent 2px),
        radial-gradient(circle at 35% 15%, rgba(122, 85, 63, 0.7) 0%, transparent 2.5px),
        radial-gradient(circle at 55% 25%, rgba(160, 120, 85, 0.6) 0%, transparent 2px),
        radial-gradient(circle at 75% 18%, rgba(139, 90, 60, 0.65) 0%, transparent 2.5px),
        radial-gradient(circle at 20% 50%, rgba(122, 85, 63, 0.55) 0%, transparent 2px),
        radial-gradient(circle at 45% 55%, rgba(160, 120, 85, 0.7) 0%, transparent 2.5px),
        radial-gradient(circle at 68% 48%, rgba(139, 90, 60, 0.6) 0%, transparent 2px),
        radial-gradient(circle at 88% 58%, rgba(122, 85, 63, 0.65) 0%, transparent 2.5px),
        radial-gradient(circle at 15% 80%, rgba(160, 120, 85, 0.55) 0%, transparent 2px),
        radial-gradient(circle at 40% 85%, rgba(139, 90, 60, 0.7) 0%, transparent 2.5px),
        radial-gradient(circle at 65% 75%, rgba(122, 85, 63, 0.6) 0%, transparent 2px),
        radial-gradient(circle at 90% 82%, rgba(160, 120, 85, 0.65) 0%, transparent 2.5px);
    animation: twinkleStars2 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Starfield Layer 3 - Large featured stars */
.bg-shimmer > .shimmer-layer-1 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(139, 90, 60, 0.75) 0%, rgba(139, 90, 60, 0.25) 3px, transparent 6px),
        radial-gradient(circle at 70% 40%, rgba(122, 85, 63, 0.8) 0%, rgba(122, 85, 63, 0.3) 3px, transparent 6px),
        radial-gradient(circle at 50% 70%, rgba(160, 120, 85, 0.7) 0%, rgba(160, 120, 85, 0.25) 3px, transparent 6px);
    animation: pulsateStars 6s ease-in-out infinite;
}

/* Starfield Layer 4 - Floating stars with movement */
.bg-shimmer > .shimmer-layer-2 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 22% 35%, rgba(139, 90, 60, 0.5) 0%, transparent 1.5px),
        radial-gradient(circle at 48% 28%, rgba(122, 85, 63, 0.6) 0%, transparent 2px),
        radial-gradient(circle at 75% 45%, rgba(160, 120, 85, 0.55) 0%, transparent 1.5px),
        radial-gradient(circle at 38% 62%, rgba(139, 90, 60, 0.6) 0%, transparent 2px),
        radial-gradient(circle at 82% 72%, rgba(122, 85, 63, 0.55) 0%, transparent 1.5px);
    animation: floatStars 8s ease-in-out infinite;
}

/* Starfield Layer 5 - Extra sparkle stars */
.bg-shimmer > .sparkle-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(139, 90, 60, 0.75) 0%, transparent 1px),
        radial-gradient(circle at 60% 35%, rgba(122, 85, 63, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 85% 20%, rgba(160, 120, 85, 0.7) 0%, transparent 1px),
        radial-gradient(circle at 25% 60%, rgba(139, 90, 60, 0.75) 0%, transparent 1.5px),
        radial-gradient(circle at 72% 65%, rgba(122, 85, 63, 0.7) 0%, transparent 1px),
        radial-gradient(circle at 42% 80%, rgba(160, 120, 85, 0.75) 0%, transparent 1.5px);
    animation: sparkleStars 3s ease-in-out infinite;
}

@keyframes twinkleStars1 {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes twinkleStars2 {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes pulsateStars {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes floatStars {
    0%, 100% {
        opacity: 0.5;
        transform: translate(0, 0);
    }
    25% {
        opacity: 0.8;
        transform: translate(10px, -10px);
    }
    75% {
        opacity: 0.7;
        transform: translate(-8px, 8px);
    }
}

@keyframes sparkleStars {
    0%, 100% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 0.8;
    }
}

/* Fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Animated Background */
.bg-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-ambient::before,
.bg-ambient::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.bg-ambient::before {
    background: radial-gradient(circle, #8b5a3c 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-ambient::after {
    background: radial-gradient(circle, #c9a962 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: float 25s ease-in-out infinite reverse;
    background: radial-gradient(circle, #d4c4b0 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 40px) scale(0.95);
    }
    75% {
        transform: translate(-40px, -20px) scale(1.02);
    }
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 40px 10px 40px;
    overflow: hidden;
}

/* Background Logo */
.bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    width: 90%;
    max-width: 900px;
    /* opacity: 0.08; */
}

.bg-logo svg {
    width: 100%;
    height: auto;
    z-index: 10;
    position: relative;
}

.bg-logo svg path {
    fill: #22130f;
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20px;
}

.logo {
    width: 240px;
    height: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.logo svg {
    width: 100%;
    height: auto;
}

.logo svg path {
    fill: #eae5db;
}

.tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e9e4db;
    gap: 2px;
    margin-top: 0;
    margin-bottom: 70px;
    width: 300px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.3s forwards;
    overflow: visible;
}

.tagline-italic {
    font-size: clamp(24px, 3vw, 27px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: -5px;
}

.tagline-regular {
    font-size: clamp(18px, 3vw, 23px);
    font-weight: 400;
    letter-spacing: 1px;
    display: none;
}

.coming-soon {
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #8a7a6a;
    margin-top: 20px;
}

/* Notification Form */
.notify-section {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    display: none;
}

.notify-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4c4b0;
}

.notify-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.notify-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #4a3a32;
    border-radius: 30px;
    color: #d4c4b0;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.notify-input::placeholder {
    color: #6a5a4a;
}

.notify-input:focus {
    border-color: #d4c4b0;
    background: rgba(255, 255, 255, 0.08);
}

.notify-btn {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #d4c4b0;
    border-radius: 30px;
    color: #d4c4b0;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #d4c4b0;
    color: #2a1f1d;
}

.notify-success {
    display: none;
    color: #d4c4b0;
    font-size: 16px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tagline {
    margin-top: 0px;
    margin-bottom: 30px;
}
    .main-container {
        padding: 40px 24px;
        height: calc(70vh - 60px);
        flex: none;
    }

    .bg-logo {
        width: 120%;
        max-width: 120%;
    }

    .logo {
        width: 180px;
    }

    .content {
        gap: 30px;
    }

    .tagline-italic {
        font-size: clamp(20px, 5vw, 28px);
    }

    .tagline-regular {
        font-size: clamp(16px, 4vw, 22px);
    }

    .notify-section {
        margin-top: 36px;
        width: 100%;
        padding: 0 10px;
        display: none;
    }

    .notify-form {
        max-width: 100%;
    }

    .footer {
        padding: 30px 20px;
        gap: 20px;
    }

    .footer-address {
        font-size: 13px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 500px) {
    .main-container {
        padding: 40px 16px 20px 16px;
        /* height: 50vh; */
    }

    .logo {
        width: 173px;
    }

    .content {
        gap: 0px;
    }

    .tagline-italic {
        font-size: 20px;
    }

    .tagline-regular {
        font-size: 16px;
    }

    .notify-section {
        margin-top: 28px;
    }

    .notify-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .notify-form {
        flex-direction: column;
        gap: 10px;
    }

    .notify-input {
        padding: 12px 18px;
        font-size: 15px;
    }

    .notify-btn {
        width: 100%;
        padding: 12px 24px;
    }

    .footer {
        padding: 24px 16px;
    }

    .footer-address {
        font-size: 12px;
    }

    .footer-icons {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Footer */
.footer {
    padding: 15px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.footer .coming-soon {
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e9e4db;
    margin-bottom: 8px;
    font-weight: 400;
}

.footer-address {
    font-size: 14px;
    color: #eae5db;
    opacity: 0.5;
    text-align: center;
    line-height: 1.6;
    border: none;
    text-decoration: none;
    border-bottom: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    user-select: none;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0px solid rgba(234, 229, 219, 0.25);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: rgba(234, 229, 219, 0.5);
    background: rgba(234, 229, 219, 0.08);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #eae5db;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    opacity: 0.8;
}

