/*
Theme Name: Savora Restaurant
Theme URI: https://savora-restaurant.com
Author: Savora
Author URI: https://savora-restaurant.com
Description: A luxury fine dining restaurant theme with dark, moody aesthetics and gold accents. Built for Savora Restaurant.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: savora
Tags: restaurant, food, dark, luxury, gold, elementor, one-page, custom-menu
*/

/* ===================================
   CSS RESET & ROOT VARIABLES
   =================================== */

:root {
    --color-bg:         #0d0d0d;
    --color-bg-alt:     #141414;
    --color-bg-card:    #1a1a1a;
    --color-bg-subtle:  #1f1f1f;
    --color-gold:       #c9a96e;
    --color-gold-light: #e2c99a;
    --color-gold-dark:  #a07840;
    --color-cream:      #f5f0e8;
    --color-text:       #e8e0d5;
    --color-muted:      #9a8f82;
    --color-border:     #2a2a2a;
    --color-overlay:    rgba(13, 13, 13, 0.75);

    --font-heading:     'Playfair Display', Georgia, serif;
    --font-body:        'Lato', 'Helvetica Neue', Arial, sans-serif;

    --size-xs:   0.75rem;
    --size-sm:   0.875rem;
    --size-base: 1rem;
    --size-md:   1.125rem;
    --size-lg:   1.25rem;
    --size-xl:   1.5rem;
    --size-2xl:  2rem;
    --size-3xl:  2.5rem;
    --size-4xl:  3rem;
    --size-5xl:  3.75rem;
    --size-6xl:  5rem;

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg:  0 16px 64px rgba(0,0,0,0.6);
    --shadow-gold: 0 0 30px rgba(201,169,110,0.15);

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;

    --max-width: 1200px;
    --header-height: 80px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--size-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold-light);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-cream);
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}
