
header {
	background: #f7f7f7d9;
}
.logo {
	filter: invert(1);
}

.hamburger-line {
	stroke: black;
}

.header-book-button {
	background-color: #00000024;
	color: black;
}
.header-book-button:hover {
	color: white;
	border-color: white;
}

#hamburger-icon {
	background-color: #00000024;
}
main {
	z-index: 2;
}

:root {
    --contact-sec-bg: #ffffff;
    --contact-sec-accent: var(--olive-bg);
}

h1 { 
	font-size: 110px;
	font-weight: 300;
	color: var(--olive-bg);
	margin: 0;
	max-width: 1000px;
	width: calc(100% - 40px);
}
.contact-container {
	font-family: Averta;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--contact-sec-accent);
	border-radius: 16px;
	overflow: hidden;
	max-width: 1000px;
	width: calc(100% - 40px);
	margin: 20px 0;
	box-shadow: 0 0 10px #424c4536;
}

/* Left section */
.contact-info {
    background: var(--contact-sec-bg);
    padding: 20px 40px;
}

.contact-info h3 {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 10px;
}

.contact-info h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 10px;
    font-family: 'HattonLight';
	text-transform: uppercase;
}

.contact-info p,
.contact-info a {
    color: var(--text-color-dim);
    line-height: 1.6;
}

.info-item p,
.info-item a {
    text-decoration: none;
    color: white;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px;
    background-color: var(--contact-sec-accent);
    border-radius: 10px;
    cursor: pointer;
}

.info-item:hover {
    filter: brightness(0.95);
}

.info-item .icon {
    background: white;
    color: var(--current-tab-accent);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.label {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.value {
    color: #555;
    margin: 0;
}

.socials {
    display: flex;
    gap: 25px;
    font-size: 22px;
}

.socials a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.socials a:hover {
    color: black;
}

/* Right section */
.contact-form {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    color: white;
    font-weight: 500;
    margin-bottom: 6px;
}

input,
textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    font-family: inherit;
}

input:focus,
textarea:focus {
    border-color: var(--current-tab-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 77, 230, 0.1);
}

.contact-form button {
    background: var(--current-tab-accent);
    font-family: 'Geologica';
    color: black;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.contact-form button:hover {
    background: var(--current-tab-accent);
}

.contact-form button:active {
    transform: scale(0.98);
}

/* Responsive */


@media (max-width: 1000px) {
    h1 {
        font-size: 90px;
    }
}
@media (max-width: 800px) {
    h1 {
        font-size: 70px;
    }
    .info-item:last-child {
        margin-bottom: 0;
    }
    .socials {
        margin-top: 20px;
    }

    .info-item .icon {
        width: 40px;
        height: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        width: calc(100% - 30px);
        margin-top: 15px;
    }

    .contact-info, .contact-form {
		padding: 20px;
    }
    .contact-info h3 {
        margin-top: 0;
        font-size: 16px;
    }


    .contact-info h1 {
        font-size: 24px;
    }

    .contact-info p,
    .contact-info a {
        font-size: 14px;
    }

    input, textarea {
        margin-bottom: 10px;
        font-size: 16px;
    }

}

@media (max-width: 400px) {
    h1 {
        font-size: 50px;
    }
    .info-item {
        gap: 5px;
        padding: 5px;
    }
}