/* Base styles */
:root {
    --color-gold: #bb8d2e;
    --color-black: rgb(14 14 12);
    --color-white: #ffffff;
    --color-gray-100: #f3f4f6;
    --color-gray-600: #4b5563;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

/* Layout */
.w-full {
    width: 100%;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-90 {
    max-width: 90%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pt-50 {
    padding-top: 50px;
}

.pb-16 {
    padding-bottom: 4rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Colors */
.bg-black {
    background-color: var(--color-black);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-gold {
    background-color: var(--color-gold);
}

.bg-gray-100 {
    background-color: var(--color-gray-100);
}

.text-black {
    color: var(--color-black);
}

.text-white {
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.text-gray-600 {
    color: var(--color-gray-600);
}

/* Components */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

/* Hero Section */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.opacity-50 {
    opacity: 0.5;
}

/* Images */
img.h-96 {
    height: 24rem;
    width: auto;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

a.hover\:underline:hover {
    text-decoration: underline;
}

a.hover\:bg-opacity-90:hover {
    opacity: 0.9;
}

a.hover\:bg-gold:hover {
    background-color: var(--color-gold);
}

a.hover\:text-black:hover {
    color: var(--color-black);
}

a.hover\:text-white:hover {
    color: var(--color-white);
}

.transition-colors {
    transition: all 0.2s ease-in-out;
}

/* Border */
.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-gold {
    border-color: var(--color-gold);
}

/* Lists */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

ul {
    list-style: none;
}

/* Social Icons */
.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

/* Text sizes */
.text-4xl {
    font-size: 2.25rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

/* Font weights */
.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Testimonials */
.text-center {
    text-align: center;
}

.-top-4 {
    top: -1rem;
}

.left-4 {
    left: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.d-n {
    display: none;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:items-end {
        align-items: flex-end;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
} 