
/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
    --gold: #96ead7;
    --dark: #999999;
    --light: #ffffff;
    --gray: #f0f9f7;
    --transition: all 0.3s ease;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}
/* Hero Section */
.relative.h-screen {
    height: 100vh;
    min-height: 700px;
}

.container.mx-auto {
    max-width: 1200px;
    padding: 0 2rem;
}

.relative.z-20 h1 {
    font-size: 4rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .relative.z-20 h1 {
        font-size: 5rem;
    }
}

.relative.z-20 p {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.border-2.border-white {
    transition: all 0.3s ease;
}

.border-2.border-white:hover {
    background: rgba(255,255,255,0.1);
}
/* Section styling */
section {
    padding: 8rem 2rem;
}

.bg-primary-500 {
    background-color: var(--dark) !important;
    color: var(--light);
}

.bg-secondary-100 {
    background-color: var(--gray) !important;
}

/* Buttons */
a.bg-secondary-500 {
    background-color: var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1rem 3rem;
    border-radius: 0;
    border: 1px solid var(--gold);
}

a.bg-secondary-500:hover {
    background-color: transparent !important;
    color: var(--gold) !important;
    border-color: var(--gold);
}

/* Cards */
.bg-white10 {
    background-color: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.bg-white10:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Gallery */
.relative.group.overflow-hidden.rounded-lg {
    transition: var(--transition);
}

.relative.group.overflow-hidden.rounded-lg:hover {
    transform: scale(1.03);
}
/* Form styling */
input, select {
    background-color: transparent !important;
    border: 1px solid var(--dark) !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
}

/* Date input styling */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}
input:focus, select:focus {
    outline: none !important;
    border-color: var(--gold) !important;
}

/* Testimonials */
.bg-primary-700 {
    background-color: var(--dark) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .relative.z-20.text-center h1 {
        font-size: 3rem;
    }
    section {
        padding: 5rem 1.5rem;
    }
}
