/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --primary-gold: #d4af37;
    --secondary: #c41e3a;
    --secondary-dark: #9a1a2e;
    --accent: #2e8b57;
    --dark: #1a1a1a;
    --light: #f8f5f0;
    --light-bg: #f8f5f0;
    --text: #333333;
    --text-light: #595959;
    --gold-gradient: linear-gradient(135deg, #d4af37, #f9e076, #d4af37);
    --red-gradient: linear-gradient(135deg, #c41e3a, #e74c3c, #c41e3a);
    --green-gradient: linear-gradient(135deg, #2e8b57, #3cb371, #2e8b57);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 35px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 15px 40px rgba(212, 175, 55, 0.2);
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* Mobile-specific optimizations */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
}

button {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    cursor: pointer;
}

/* Focus-visible styles for keyboard navigation accessibility */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-50 {
    margin-bottom: 50px;
}