/*------------------- Imported Fonts -------------------*/
@font-face {
    font-family: 'Elms-Sans';
    src: url('../../fonts/Elms_Sans/ElmsSans-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*------------------- Main Content -------------------*/
/* Title */
.visit-title-container {
    background-color: rgb(12, 39, 60);
    text-align: center;
    padding: 30px 0;
    max-height: 100px;
}

.visit-title img {
    width: 60%;
    max-width: 450px;
    height: auto;

    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.visit-title img.animate {
    opacity: 1;
    transform: scale(1);
}

/* Main Grid */
.main-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    color: rgb(25, 93, 105);
}

.main-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 30px;
    max-width: 800px;
}

/* Nav Grid Horizontal */
.visit-nav-grid {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect stays */
.info-row:hover {
    transform: scale(1.2);
}

.visit-icon {
    width: 48px;
    height: auto;
    margin-bottom: 8px;

    /* Smooth animation for active state */
    transition: all 0.3s ease;
}

.visit-bold {
    font-weight: 900;
    padding-top: 10px;
    transition: all 0.3s ease;
}

/* ------------------------------
   ACTIVE STATE (NEW)
--------------------------------*/

/* Active icon grows + recolors */
.info-row.active .visit-icon {
    transform: scale(1.4);
    filter: brightness(0) saturate(100%) invert(86%) sepia(12%) saturate(350%) hue-rotate(10deg);
}

/* Active text grows + bolds + recolors */
.info-row.active .visit-bold {
    font-size: 1.15em;
    font-weight: 900;
    color: rgb(204, 191, 146);
}

/* Dim inactive items */
.info-row:not(.active) .visit-icon,
.info-row:not(.active) .visit-bold {
    opacity: 0.7;
}

/* Arrow (if re-enabled) */
.link-highlight {
    position: absolute;
    width: 40px;
    height: auto;
    transition: left 0.4s ease;
    margin-left: 33px;
}

/* Info Box */
.info-box {
    position: relative;
    text-align: left;
    margin-top: 10px;
}

.info-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    line-height: 1.6;
    font-size: 1rem;
    color: rgb(92,92,92);
}

.info-content.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
    position: relative;
}

/* Images */
.left-nav-img {
    position: relative;
    margin: 20px 0 10px 0;
}

.left-nav-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.left-nav-img img.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
    position: relative;
}

/* Contact section */
.contact-section {
    margin-top: 20px;
    text-align: center;
}

.contact-header {
    margin-bottom: 10px;
}

.cuts-title {
    font-size: large;
    font-weight: bold;
    color: rgb(25, 93, 105);
}

.booknow-button {
    margin-bottom: 10px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: rgb(204, 191, 146);
    background: rgb(25, 93, 105);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booknow-button:hover {
    background: rgb(12, 39, 60);
}

.calendar-icon {
    width: 1em;
    height: 1em;
    fill: currentColor; /* matches text color automatically */
}