:root {
    --deep-purple: #1a0b2e;
    --mystic-gold: #c5a059;
    --bright-gold: #f4d068;
    --pink-accent: #f06292;
    --neon-pink: #ff4081;
    --bg-color: #080312;
    --text-main: #e2d9f3;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f0a1a;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--bright-gold);
    font-weight: 700;
}

.cursive {
    font-family: 'Dancing Script', cursive;
    color: var(--pink-accent);
    text-shadow: 0 0 10px rgba(240, 98, 146, 0.4);
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.main-logo-anim {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--mystic-gold);
    box-shadow: 0 0 20px var(--pink-accent), inset 0 0 15px var(--bright-gold);
    animation: floatLogo 4s infinite ease-in-out;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    line-height: 1;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--pink-accent);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--pink-accent), var(--neon-pink));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--bright-gold);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--mystic-gold);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('assets/images/combi.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 10, 26, 1) 0%, rgba(15, 10, 26, 0.6) 50%, rgba(15, 10, 26, 0.2) 100%);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.hero p.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ccc;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--pink-accent);
    padding-left: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Menu Section */
.menu-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, rgba(15, 10, 26, 0) 0%, rgba(45, 27, 78, 0.4) 100%);
    text-align: center;
    position: relative;
    z-index: 10;
}

.menu-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--pink-accent);
    box-shadow: 0 10px 30px rgba(240, 98, 146, 0.2);
}

.menu-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

/* Full Menu Page */
.full-menu-section {
    padding: 10rem 5% 5rem 5%;
    text-align: center;
}

.menu-category-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--mystic-gold);
    margin: 4rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 1rem;
}

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(240, 98, 146, 0.4);
    border-color: var(--pink-accent);
}

.menu-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-container img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 1.5rem;
    text-align: left;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.menu-card-content .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mystic-gold);
    margin-bottom: 1rem;
}

/* Full Menu Page */
.full-menu-section {
    padding: 10rem 5% 5rem 5%;
    text-align: center;
}

.menu-category-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--mystic-gold);
    margin: 4rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 1rem;
}

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(240, 98, 146, 0.4);
    border-color: var(--pink-accent);
}

.menu-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-container img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 1.5rem;
    text-align: left;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.menu-card-content .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mystic-gold);
    margin-bottom: 1rem;
}

/* Tarot Section */
.tarot-section {
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background-image: radial-gradient(circle at 30% 50%, rgba(148, 0, 211, 0.15) 0%, transparent 60%);
}

.logo-mystic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--mystic-gold);
    box-shadow: 0 0 30px var(--pink-accent), inset 0 0 20px var(--bright-gold);
    animation: floatLogo 4s infinite ease-in-out;
}

@keyframes floatLogo {
    0% { transform: translateY(0) scale(1); box-shadow: 0 0 30px var(--pink-accent); }
    50% { transform: translateY(-15px) scale(1.05); box-shadow: 0 0 50px var(--bright-gold); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 0 30px var(--pink-accent); }
}

.tarot-content {
    flex: 1;
}

.tarot-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.tarot-visual {
    flex: 1;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile & Tablet */
@media (max-width: 1024px) {
    .hero-bg { 
        width: 100%; 
        opacity: 0.35; 
        background-position: right center;
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }
    .hero-bg::before { background: linear-gradient(0deg, #0f0a1a 0%, transparent 100%); }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .logo-typography { display: none !important; }
    .main-logo-anim { height: 80px; width: 80px; }
    .hero-buttons { flex-direction: column; }
    .tarot-section { flex-direction: column-reverse; text-align: center; padding: 4rem 5%; }
}
