/* ==========================================================================
   Typography Imports (Champagne & Limousines)
   ========================================================================== */
@font-face {
    font-family: 'Champagne & Limousines';
    src: url('./typo/Champagne & Limousines.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('./typo/Champagne & Limousines Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('./typo/Champagne & Limousines Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('./typo/Champagne & Limousines Bold Italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Champagne & Limousines', Arial, sans-serif;
    color: #222222;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Background Spice Pattern
   ========================================================================== */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-spice-item {
    position: absolute;
    opacity: 0.18;
    filter: grayscale(100%) contrast(0.9);
    pointer-events: none;
    user-select: none;
    max-width: 150px;
    height: auto;
}

/* ==========================================================================
   Page Layout & Main Section
   ========================================================================== */
.page-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    overflow: hidden;
}

.main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px 10px 20px;
    flex: 1 1 auto;
}

/* Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.logo-img {
    max-width: 185px;
    width: 100%;
    height: auto;
}

/* Main Title */
.main-title {
    font-family: 'Champagne & Limousines', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: bold;
    line-height: 1.15;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Subtitle / Text */
.subtitle-container {
    max-width: 800px;
    margin: 0 auto;
}

.main-text {
    font-family: 'Champagne & Limousines', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    color: #383838;
    margin-bottom: 4px;
}

/* ==========================================================================
   Dark Banner (Footer)
   ========================================================================== */
.dark-banner {
    background-color: #312e2b;
    width: 100%;
    padding: 32px 20px 30px 20px;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.banner-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-prompt {
    font-family: 'Champagne & Limousines', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.02em;
}

.banner-divider {
    width: 100%;
    max-width: 760px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.22);
    margin: 18px 0 20px 0;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 920px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 130px;
}

.contact-item:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.icon-wrapper {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contact-icon {
    max-height: 32px;
    max-width: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-label {
    font-family: 'Champagne & Limousines', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Bottom Spacer strip for visual balance matching design */
.bottom-spacer {
    height: 90px;
    width: 100%;
    background: transparent;
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {

    html,
    body,
    .page-wrapper {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-item {
        min-width: 110px;
        margin-bottom: 8px;
    }

    .main-section {
        padding-top: 15px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .logo-img {
        max-width: 150px;
    }

    .bottom-spacer {
        height: 30px;
    }
}