@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

/* Custom Styles for organic shapes and smooth details */
body {
    background-color: #F4EFE5;
    color: #303426;
    overflow-x: hidden;
}

/* Typography Utilities */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}
.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Arch Image Utilities */
.arch-image {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}
.arch-image-hero {
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 0;
}
@media (min-width: 1024px) {
    .arch-image-hero {
        border-top-left-radius: 30rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px;
    border-radius: 40px;
    background-color: #4F5A2E;
    color: #FFF9EF;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #333D23;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 90, 46, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px;
    border-radius: 40px;
    background-color: transparent;
    color: #4F5A2E;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #4F5A2E;
}

.btn-outline:hover {
    background-color: #4F5A2E;
    color: #FFF9EF;
}

/* Glass effect for navbar when scrolling */
.nav-scrolled {
    background: rgba(244, 239, 229, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Form Input styling */
.custom-input {
    background: transparent;
    border: 1px solid rgba(255, 249, 239, 0.3);
    border-radius: 8px;
    padding: 16px;
    color: #FFF9EF;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}
.custom-input:focus {
    outline: none;
    border-color: #B98A45;
}
.custom-input::placeholder {
    color: rgba(255, 249, 239, 0.6);
}

/* Animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 15s linear infinite;
}

.stamp-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    fill: #FFF9EF;
}
