/*
Theme Name: Family Events
Theme URI: https://familyevents.in/
Description: A premium, luxury WordPress theme for family milestones, destination weddings, and high-end celebrations. Custom-built with Elementor support.
Version: 1.0.0
Author: Family Events Team
Author URI: https://familyevents.in/
Text Domain: familyevents-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready, one-column, flexible-header
*/

/* --- Design Tokens --- */
:root {
    --bg-primary: #FDFBF7;
    --bg-secondary: #F5F2EB;
    --color-emerald: #064732;
    --color-emerald-dark: #032F20;
    --color-gold: #D4AF37;
    --color-gold-muted: #C5A059;
    --color-ink: #0A3622;
    --color-ink-secondary: #4A5D53;
    --color-border: #E5E0D5;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-ink-secondary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Include basic theme-defined layout so that standard WP installs function out-of-the-box */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
