/* 
   CyRET - Dark Luxury Gastronomy Design System
   Color Palette:
   - Primary (Background): #131412
   - Accent (Gold): #C9892A
   - Text (Ivory): #E4E2DE
   - Surface: #1F201E
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #131412;
    --gold: #C9892A;
    --gold-light: #e5a74e;
    --text-color: #E4E2DE;
    --surface-color: #1F201E;
    --border-color: rgba(201, 137, 42, 0.2);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-luxury {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout --- */

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

section {
    padding: 100px 0;
}

/* --- Navigation --- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(19, 20, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

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

.btn-cta {
    background: var(--gold);
    color: #fff;
    padding: 12px 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-ghost {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--gold);
    color: #fff;
}

.didi-msg {
    display: inline-block;
    padding: 10px 20px;
    border: 1px dashed var(--gold);
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 200px;
    line-height: 1.2;
    text-align: center;
}

/* --- Hero --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 84px);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* --- Sections --- */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
}

/* --- Cards --- */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--surface-color);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.card-icon {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* --- Categories Grid --- */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
}

.category-item {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.category-item:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition);
}

.category-item h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.category-item p {
    font-size: 14px;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-item:hover .category-item p {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */

footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-col p, .footer-col li {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(228, 226, 222, 0.7);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
    color: rgba(228, 226, 222, 0.4);
}

/* --- Mobile --- */

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 48px;
    }
}
