/* Tailwind Config via CSS Custom Properties and Base Styles */
:root {
    --primary: #C2A45E;
    --background-light: #f8f7f6;
    --background-dark: #142B26;
    --secondary-dark: #2F4A3E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: var(--background-light);
    color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body.dark {
    background-color: var(--background-dark);
}

/* Prevent text selection globally */
body, body * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Allow selection only on specific elements if needed */
p, h1, h2, h3, h4, h5, h6, span, a {
    -webkit-user-select: none !important;
    user-select: none !important;
}

/* Custom selection highlight (disabled for copy protection) */
::selection {
    background-color: rgba(194, 164, 94, 0.3);
    color: inherit;
}

::-moz-selection {
    background-color: rgba(194, 164, 94, 0.3);
    color: inherit;
}

h1, h2, h3, .serif-font {
    font-family: 'Playfair Display', serif;
}

/* Gold Line */
.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Hero Gradient */
.hero-gradient {
    background: radial-gradient(circle at center, rgba(47, 74, 62, 0.4) 0%, rgba(20, 43, 38, 1) 100%);
}

/* Utilities */
.select-none {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1rem);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Tailwind-like utility classes */
.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-10 {
    bottom: 2.5rem;
}

.left-1\/2 {
    left: 50%;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.z-50 {
    z-index: 50;
}

.z-10 {
    z-index: 10;
}

.bg-primary {
    background-color: var(--primary);
}

.text-primary {
    color: var(--primary);
}

.text-background-dark {
    color: var(--background-dark);
}

.text-white {
    color: white;
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white\/40 {
    color: rgba(255, 255, 255, 0.4);
}

.text-white\/30 {
    color: rgba(255, 255, 255, 0.3);
}

.text-white\/5 {
    color: rgba(255, 255, 255, 0.05);
}

.bg-background-dark {
    background-color: var(--background-dark);
}

.bg-background-dark\/40 {
    background-color: rgba(20, 43, 38, 0.4);
}

.bg-background-dark\/80 {
    background-color: rgba(20, 43, 38, 0.8);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-secondary-dark\/30 {
    background-color: rgba(47, 74, 62, 0.3);
}

.border {
    border: 1px solid currentColor;
}

.border-t {
    border-top: 1px solid currentColor;
}

.border-b {
    border-bottom: 1px solid currentColor;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-primary\/20 {
    border-color: rgba(194, 164, 94, 0.2);
}

.border-primary\/30 {
    border-color: rgba(194, 164, 94, 0.3);
}

.border-primary\/50 {
    border-color: rgba(194, 164, 94, 0.5);
}

.rounded-sm {
    border-radius: 0.125rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.flex-col {
    flex-direction: column;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.text-8xl {
    font-size: 6rem;
}

.font-light {
    font-weight: 300;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-02em {
    letter-spacing: 0.2em;
}

.tracking-03em {
    letter-spacing: 0.3em;
}

.tracking-04em {
    letter-spacing: 0.4em;
}

.tracking-01em {
    letter-spacing: 0.1em;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-5 {
    line-height: 1.25rem;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-100 {
    opacity: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.duration-700 {
    transition-duration: 0.7s;
}

.hover\:text-primary:hover {
    color: var(--primary);
}

.hover\:bg-primary:hover {
    background-color: var(--primary);
}

.hover\:bg-white:hover {
    background-color: white;
}

.hover\:text-background-dark:hover {
    color: var(--background-dark);
}

.hover\:border-primary\/30:hover {
    border-color: rgba(194, 164, 94, 0.3);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.group:hover .group-hover\:text-primary {
    color: var(--primary);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:border-primary\/30 {
    border-color: rgba(194, 164, 94, 0.3);
}

.aspect-cover {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect-\[3\/4\] {
    aspect-ratio: 3 / 4;
}

.w-1\.5 {
    width: 0.375rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.w-12 {
    width: 3rem;
}

.h-px {
    height: 1px;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.bg-rounded-sm {
    border-radius: 0.125rem;
}

.rotate-90 {
    transform: rotate(90deg);
}

.scale-110 {
    transform: scale(1.1);
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.translate-y-0 {
    transform: translateY(0);
}

.-top-12 {
    top: -3rem;
}

.-left-4 {
    left: -1rem;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hidden {
        display: none;
    }
    
    .md\:flex {
        display: none;
    }
    
    .md\:flex.show-flex {
        display: flex;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:w-1\/2 {
        width: 50%;
    }
    
    .md\:items-start {
        align-items: flex-start;
    }
    
    .md\:text-left {
        text-align: left;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:text-sm {
        font-size: 0.875rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:gap-3 {
        gap: 0.75rem;
    }
    
    .md\:gap-4 {
        gap: 1rem;
    }
    
    .md\:space-y-4 > * + * {
        margin-top: 1rem;
    }
    
    .md\:pb-0 {
        padding-bottom: 0;
    }
    
    .md\:w-1\/2 {
        width: 50%;
    }
    
    .md\:items-start {
        align-items: flex-start;
    }
    
    .md\:text-left {
        text-align: left;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:text-7xl {
        font-size: 4.5rem;
    }
}

/* Dark mode support */
.dark body {
    background-color: var(--background-dark);
}

.dark .bg-background-light {
    background-color: var(--background-dark);
}

/* Button styles */
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

button:active {
    transform: scale(0.98);
}

/* Prevent dragging of images */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Print styles */
@media print {
    body {
        display: none;
    }
}
