* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Mattone';
    src: url('font/Mattone-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    
}
@font-face {
    font-family: 'Mattone';
    src: url('font/Mattone-Regular.woff2');
    font-weight: 400;
    font-style: normal;
    
}
@font-face {
    font-family: 'Mattone';
    src: url('font/Mattone-Bold.woff');
    font-weight: 700;
    font-style: normal;
    
}
@font-face {
    font-family: 'Mattone';
    src: url('font/Mattone-Bold.woff2');
    font-weight: 700;
    font-style: normal;
    
}
:root{
    --mattone: 'Mattone', Arial, sans-serif;
}
body {
    font-family: var(--mattone);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Header */
/* .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 20px;
    transition: all 0.3s ease;
} */

.hamburger-line {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin: 20px 0 0;
  }
  .hamburger-line .hs-line {
    height: 5px;
    width: 72px;
    background-color: #000;
    margin: 5px 0;
  }
  .logo {
    font-weight: 700;
  }
  #header {
	position: absolute;
	left: 30px;
	top: 50px;
    z-index: 1000;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 0px;
}

/* Language Toggle Styles */
.language-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-left: 0;
	padding: 0;
	justify-content: start;
	width: fit-content;
	z-index: 111;
	background-color: transparent;
	margin-bottom: 30px;
}
.lang-option {
	font-family: var(--mattone);
	font-size: 16px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
	user-select: none;
}

.lang-option:hover {
     color: #000;
   
}

.lang-option.active {
    color: #000;
    font-weight: 700;
}

.lang-divider {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

#side-menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    max-width: 913px;
    height: 100vh;
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease-in-out;
    padding: 150px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

#side-menu.active {
    left: 0;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    /* padding-top: 80px; */
}

/* Content Container */
.content-container {
    display: flex;
    min-height: 100vh;
}

/* Text Section */
.text-section {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.text-section h1 {
    font-size: 36px;

    line-height: 1.3;
    margin-bottom: 44px;
    font-weight: 400;
    color: #000;
}
#side-menu h1 {
	max-width: 570px;
}
.text-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 60px;
}

.inquiries {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 50px;
}

.inquiry-link {
	color: #000;
	text-decoration: none;
	font-size: 20px;
	padding-bottom: 5px;
	display: inline-block;
	transition: all 0.3s ease;
	font-weight: 400;
	text-decoration: none;

	display: inline-block;
	max-width: fit-content;
	margin-bottom: 0;
}
#side-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 100vh;
	overflow: scroll;
}
.inquiry-link:hover {
    font-weight: 700;
    
}

/* Image Section */
.image-section {
    flex: 1;
    position: relative;
    min-height: 600px;
    transition: transform 0.3s ease-in-out;
}

.image-section.menu-open {
    transform: translateX(25%);
}

.hero-image {
    width: 100%;
    height: 1%;
    object-fit: cover;
    object-position: top;
    animation: growImage 1s ease-out forwards;
    border-radius: 8px;
}

@keyframes growImage {
    from {
        height: 1%;
    }
    to {
        height: 100%;
    }
}

.content-container .text-section {
    display: none;
}
@media (min-width: 768px) {
    .top-section {
        transform: translateY(-100px);
    }
    .mobile-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    #heroImage {
        display: none;
    }
    .mobile-image {
        display: block;
    }
    #header {
        position: absolute;
        left: 50%;
        top: 30px;
        z-index: 1000;
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 0px;
        transform: translateX(-50%);
        color: #fff;
    }
    .text-section {
        padding: 40px 20px;
    }
    .logo {
        color: #fff;
    }
    .text-section h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    .hamburger-line {
    
        margin: 20px auto 0;
    }
    .hamburger-line .hs-line {
        height: 5px;
        width: 72px;
        background-color: #fff;
        margin: 5px 0;
    }
    
    .image-section {
        min-height: 400px;
        padding: 0 0px 0px;
    }
    #side-menu {
        padding: 180px 30px 60px;
        width: 100%;
        justify-content: center;
    }
    #side-menu h1 {
        max-width: 100%;
    }
    .content-container {
        overflow: hidden;
    }
    #heroImage {
        min-height: 100vh;
    }
    #side-menu{
        height: 62vh;
        justify-self: end;
    }
    #mainHeading br {
        display: none;
    }
    .inquiry-link{
        font-size: 16px;
        padding-bottom: 12px;
    }
    #mainHeading {
        margin-bottom: 15px;
    }
    .inquiries{
        margin-top: 10px;
    }
    
#header.menu-open .logo {
    color: #000;
  }
  #header.menu-open .hs-line {
    background-color: #000;
  }
  .image-section.menu-open {
	transform: translatey(30%);
}
#side-menu {
    left: 0;
    top: -100%;
  }
  #side-menu.active {
    top: 0;
  }
  #header.menu-open .hamburger-line .hs-line:nth-child(1) {
	transform: rotate(45deg);
	transform-origin: 20%;
	width: 50px;
}
  #header.menu-open .hamburger-line .hs-line:nth-child(2) {
	transform: rotate(-45deg);
	transform-origin: 37%;
	width: 50px;
}
 
}
