/* Base Styles */
:root {
    --scrollbarBG: #1a1a1a;
    --thumbBG: #4a4a4a;
    --primary: #1A1A1A;
    --background-dark: #0F0F0F;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --border-color: #333333;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    height: auto;
    padding: 6rem 1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
}

/* Responsive Typography */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 5rem;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form elements */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

/* Remove default button styling */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 4px;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    #print-section, #print-section * {
        visibility: visible;
    }
    
    #print-section {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, currentColor, transparent);
    opacity: 0.3;
}

.gallery-item:hover img {
    transform: scale(1.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider {
    @apply py-12 flex items-center justify-center;
}

.btn-outline {
    @apply inline-block px-10 py-4 border border-zinc-900 dark:border-white text-[10px] uppercase tracking-[0.3em] hover:bg-zinc-900 hover:text-white dark:hover:bg-white dark:hover:text-black transition-all duration-500;
}