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

/* Apply Fonts */
body {
    font-family: 'Inter', sans-serif;
    background-color: #faf9f6; /* Off-white premium linen feel */
}

h1, h2, h3, .font-display {
    font-family: 'Cormorant Garamond', serif;
}

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

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

/* Custom scroll transitions */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Elegant Hover Effects */
.zoom-effect {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.zoom-container:hover .zoom-effect {
    transform: scale(1.06);
}

/* Animated Underline for Nav Links */
.nav-link-underline {
    position: relative;
}

.nav-link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Size Badge Transition */
.size-badge {
    transition: all 0.2s ease-in-out;
}

.size-badge:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Hero Section Overlay Text Fade-In */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
