@font-face {
    font-family: 'Didot';
    src: url('Fonts/Didot.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Charter Regular';
    src: url('Fonts/Charter Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


* {
    box-sizing: border-box;
}

.desktop{
    display: none;
}

.description {
            display: none; /* Hide by default */
            overflow: hidden;
            padding: 0 10px;
            font-size: 0.9em;
            color: #555;
        }
.description.active {
            display: table-row; /* Show when active */
            animation: fadeIn 0.3s ease;
        }

 /* Expanded description styling */
.active .description {
    max-height: 200px; /* Adjust to fit more content if necessary */
    padding: 10px;
}

/* Clickable row style */
        .clickable-row {
            cursor: pointer;
            background-color: #fff;
            transition: background-color 0.3s;
        }

        .clickable-row:hover {
            background-color: #f9f9f9;
        }

        /* Fade-in animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                max-height: 0;
            }
            to {
                opacity: 1;
                max-height: 100px;
            }
        }

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

html, body {
    height: 100%; /* Set height to 100% for full-screen */
    margin: 0; /* Remove default margin */
    font-family: 'Charter Regular', sans-serif; /* Set a more readable font */
}

body {
    color: #3E3E3E; /* Dark gray text color for good readability */
}

/* Heading Styles */
h2 {
    margin-top: 0px;
    font-family: 'Charter Regular', serif;
    font-size: 1.2em;
    color: #8A867A;
    text-align: left;
    /*margin-bottom: 30px;*/
    border-bottom: 2px solid #FFAC1E; /* Golden Amber accent */
    padding-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.3;
    padding-left: 10px;
    background: none; /* Removes background */
    text-align: center;
}

h1 {
    font-size: 2.2em; /* Adjust font size as needed */
    margin: 0;
    text-align: center;
    padding-bottom: 10px;
}

p {
    font-size: 1em; /* Adjust font size as needed */
    width: 100%;
}

blockquote {
    background: linear-gradient(135deg, #FFF5D7 0%, #FFEBB8 100%); /* Gradient from soft cream to lighter yellow */
    border-left: 5px solid #FFAC1E; /* Amber border for quotes */
    padding: 0.5px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #8A867A;
    border-radius: 5px; /* Add slight rounding for a softer look */
    text-align: center;
    display: none;
}


.navbar {
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; /* Set background to white */
    border-bottom: 2px solid #FED757; /* Set bottom border color to base color */
    display: flex;
    align-items: center;
    padding: 5px 20px; /* Reduced padding for smaller height */
    z-index: 1000;
    font-size: 0.9em; /* Adjust font size for the navbar */
    font-family: 'Didot'; /* Updated to Didot font */
}

.nav-active {
    border-bottom: 3px solid #FED757; /* Adjust the thickness and color */
}


.nav-left {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap between navigation buttons */
    flex-grow: 1; /* Allow left navigation to grow equally */
    justify-content: flex-end; /* Align items to the end */
    margin-right: 30px; /* Added margin-right */
    display: none;
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap between navigation buttons */
    flex-grow: 1; /* Allow right navigation to grow equally */
    justify-content: flex-start; /* Align items to the start */
    margin-left: 30px; /* Added margin-left */
    display: none;
}

.nav-left a, .nav-right a {
    color: #3E3E3E; /* Set link color to dark gray */
    text-decoration: none;
    text-transform: none; /* No uppercase transformation */
    font-size: 1.5em; /* Increased font size for navigation buttons */
    line-height: 60px; /* Center the text vertically */
    align-items: center; /* Center text vertically */
    width:200px;
    text-align: center;
}

.nav-left a:hover, .nav-right a:hover {
    text-decoration: underline;
    color: #B9D4F5; /* Change color on hover to soft sky blue */
}

/* Hero banner */
.hero-banner {
    width: 100%;
    background-image: url('Images/HomeHero.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position-y: -35px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-text {
    background-color: rgba(255, 255, 255, 0.8); /* Light overlay for readability */
    padding: 0px 10px;
    color: #FFF;
    text-align: right;
    color: #3E3E3E; /* Change color on hover to soft sky blue */
    font-family: 'Didot', serif; /* Updated to Didot font */;
    font-weight: bold;
    width: 100%;
}

.hero-text p{
    text-align: center;
}
.hero-text h1
{
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100px; /* Set height for the logo to 160px */
    flex:auto;
}

.logo-text {
    text-align: center; /* Center the text */
    font-size: 1.5em; /* Adjust the font size as needed */
    color: #FFAC1E; /* Base color for the logo text */
    font-family: 'Didot', serif; /* Updated to Didot font */
    text-transform: uppercase;
        color: transparent; /* Hide text color initially */
    background: linear-gradient(to right, #FFAC1E, #FED757, #FFAC1E); /* Apply gradient to text */
     -webkit-background-clip: text; /* Use background-clip to show gradient */
    background-clip: text; /* For Firefox */
}

.logo-line {
    display: block; /* Stack each line vertically */
    width: 100%; /* Ensure both lines have the same width */
    font-size: 0.65em; /* Smaller font size for "BODY BALANCE" */
        color: transparent; /* Hide text color initially */
    background: linear-gradient(to right, #FFAC1E, #FED757, #FFAC1E); /* Apply gradient to text */
     -webkit-background-clip: text; /* Use background-clip to show gradient */
    background-clip: text; /* For Firefox */
}


.logo-line-large {
    font-size: 1em; /* Larger font size for "BELLE" */
}


/* Section styles */
.section {
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #8A867A; /* Warm gray text for readability */
    background: #FFFFFF;

}




/* Global content class */
.content {
    max-width: 100%;
    margin-left: 12.5%;
    margin: 0 auto;
    text-align: left; /* Align text to the left for readability */
    padding-top: 20px;
}

.content p{
    margin:0;
    padding:5px;
}


.who-am-i-photo {
    width: 75%; /* Image takes up 50% of the width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for the photo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-right: 20px; /* Space between image and text */
    text-align: center;
    margin-left: 12.5%;
}

.who-am-i-text strong {
    color: #FFAC1E; /* Base color for emphasis */
    font-weight: bold; /* Bold weight for emphasis */
}

.who-am-i-list strong {
    color: #FFAC1E; /* Base color for emphasis */
    font-weight: bold; /* Bold weight for emphasis */
}

strong{
    color: #FFAC1E; /* Base color for emphasis */
    font-weight: bold; /* Bold weight for emphasis */
}

.who-am-i-text {
    width:90%; /* Allow text to utilize the remaining width */
    margin-left: 5%;
    font-size: 1em; /* Increase text size for readability */
}

.who-am-i-text p {
    margin-bottom: 10px; /* Space between paragraphs */
    font-size: 0.9em;
}

/* Separate styling for the list */
.who-am-i-list {
    display: flex;
    transition: transform 1s ease-in-out;
    width: calc(100% * 4); /* Adjust this according to the number of items */
}

.who-am-i-list p {
    font-size: 1.2em; /* Ensure the prompt text is larger */
}

.who-am-i-list ul {
    list-style-type: disc; /* Use bullet points */
    margin-left: 20px; /* Indent the list */
}

.who-am-i-list li {
    margin-bottom: 10px; /* Space between list items */
    color: #555; /* Darker color for list items */
    font-size: 1.1em; /* Slightly increase font size for list items */
}

.who-am-i-text h2 {
    color: #FFAC1E; /* Highlight the title */
    Display:none;
}

.who-am-i-content {
    background: linear-gradient(135deg, #F9F3E8 0%, #FFFFFF 100%); /* Soft gradient background */
    padding: 10px 5px;
    border-radius: 8px;
    color: #8A867A;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}



.list-item {
    text-align: center; /* Center the text under each icon */
    flex: 1; /* Allow each item to take equal width */
    margin: 0 10px; /* Space between items */
    width: calc(100%*4);
}

.list-item img {
    width: 50px; /* Set icon width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Space between icon and text */
}

.list-item p {
    font-size: 0.8em;
    margin: 0;
}

/* Button Styles */
.cta-button, button {
    background-color: #FFAC1E; /* Base color for buttons */
    color: #FFFFFF; /* White text for contrast */
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    text-decoration: none;

}

.cta-button:hover, button:hover {
    background-color: #FED757; /* Lighter amber on hover */
}


.two-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Two columns */
    width: 100%; /* Set width of the section */
    margin: 0 auto; /* Center the section */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Smooth transition */
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 20px; /* Space between columns */
    width: 80%; /* Set width of the section */
    margin: 0 auto; /* Center the section */
}

.contact-form {
    width: 100%;
    flex-direction: column;
    gap: 20px; /* Space between form elements */
    padding:10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

.contact-form img{
    max-height: 125px;
    max-width: 125px;
    text-align:center;
    margin-left: 25%;
}

.contact-form label {
    font-size: 1.2em;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
    transition: border-color 0.3s;
    margin:10px 0px;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #FFAC1E;
    outline: none;
    margin:0;
}

.contact-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* Make checkboxes slightly larger */
}

.contact-form button {
    padding: 15px 30px;
    background-color: #FFAC1E;
    color: #FFF;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #FED757;
}

.contact-form textarea {
    resize: none;
    border-bottom: 2px solid #ccc;
}

.contact-info {
    width: 100%;
    padding:10px 20px;
    background: #F9F3E8;
}

.contact-info table {
    width: 100%; /* Full width */
    border-collapse: collapse; /* Collapse borders for a cleaner look */
}

.contact-info td {
    vertical-align: middle; /* Align items in the center */
}

.contact-icon {
    width: 20px; /* Icon size */
    height: 20px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
}

input[type="text"], input[type="email"], textarea, select {
    border: none;
    border-bottom: 2px solid #FFAC1E; /* Amber bottom border for inputs */
    background-color: #F9F3E8; /* Soft Beige background in input fields */
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    font-size: 1.1rem;
    color: #8A867A;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
    outline: none;
    border-bottom: 2px solid #FED757; /* Lighter amber when focused */
}

label {
    font-size: 1.2rem;
    color: #8A867A;
}

.price-table {
    width: 100%; /* Use full width of the content */
    border-collapse: collapse; /* Merge borders */
    margin-top: 20px; /* Space above the table */
    font-size: 0.7em;
}

.price-table th,
.price-table td {
    border: 1px solid #ddd; /* Light grey border for cells */
    padding: 6px; /* Space inside the cells */
    text-align: left; /* Left-align text */
    font-size: 1.2em; /* Increase font size for readability */
}

.price-table th {
    background-color: #FFAC1E; /* Header background color */
    color: white; /* Header text color */
}

.price-table tr:nth-child(even) {
    background-color: #F9F3E8; /* Light background for even rows */
}

.price-table tr:hover { background-color: #FFE9B5; /* Highlight row on hover */
}

.scroll-arrow {
    display: block; /* Initially hide the arrow */
    text-align: center; /* Center the arrow and text */
    margin-top: 5px; /* Space above the arrow */
}

.scroll-arrow span {
    font-size: 1.5em; /* Adjust size of the arrow */
    color: #FFAC1E; /* Arrow color */
}

.scroll-arrow p {
    font-size: 0.9em; /* Adjust size of the text */
    margin-top: 5px; /* Space between arrow and text */
    margin-bottom: 0; /* Remove bottom margin */
}

.envelope-container {
    position: relative; /* Positioning for the flap */
    overflow: hidden; /* Hide overflow to create the flap effect */
}

.envelope-flap {
    position: absolute; /* Overlaying position */
    top: 0; /* Align with the top */
    left: 0; /* Align with the left */
    right: 0; /* Align with the right */
    height: 0; /* Start with 0 height */
    background: #f8f4e3; /* Same color as contact-info */
    border-radius: 8px 8px 0 0; /* Rounded corners on top */
    transition: height 0.5s ease-in-out; /* Smooth transition for flap height */
    z-index: 1; /* Above the two columns */
}

.envelope-close {
    transform: scaleY(0); /* Close the div vertically */
    opacity: 0; /* Fade out */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Smooth transition */
}

.flap-open {
    height: 200px; /* Adjust this height to reveal the flap */
}

#gmaps{
    width: 100%;
    background-image:  Url('Images/Gmaps.jpg');
    height: 200px;
    background-position:top;
    background-size: cover;
}

.mobileBtn
{
    margin-left: 67.5%;
}

.hide{
    display: none;
}


@media screen and (min-width: 768px) {
.desktop{
    display: inline-block;
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

html, body {
    height: 100%; /* Set height to 100% for full-screen */
    margin: 0; /* Remove default margin */
    font-family: 'Charter Regular', sans-serif; /* Set a more readable font */
}

body {
    color: #3E3E3E; /* Dark gray text color for good readability */
}

/* Heading Styles */
h2 {
    margin-top: 0px;
    font-family: 'Charter Regular', serif;
    font-size: 1.3em;
    color: #8A867A;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 4px solid #FFAC1E; /* Golden Amber accent */
    padding-bottom: 10px;
    padding-left: 5px;
    letter-spacing: 1px;
    line-height: 1.3;
    background: none; /* Removes background */
}

h1 {
    font-size: 3em; /* Adjust font size as needed */
    margin: 0;
    text-align: center;
    padding-bottom: 10px;
}

p {
    font-size: 1em; /* Adjust font size as needed */
    width: 100%;
}

blockquote {
    background: linear-gradient(135deg, #FFF5D7 0%, #FFEBB8 100%); /* Gradient from soft cream to lighter yellow */
    border-left: 5px solid #FFAC1E; /* Amber border for quotes */
    padding: 0.5px 20px;
    margin: 10px 0;
    font-style: italic;
    color: #8A867A;
    border-radius: 5px; /* Add slight rounding for a softer look */
    text-align: center;
    display: block;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; /* Set background to white */
    border-bottom: 2px solid #FED757; /* Set bottom border color to base color */
    display: flex;
    align-items: center;
    padding: 5px 20px; /* Reduced padding for smaller height */
    z-index: 1000;
    font-size: 0.9em; /* Adjust font size for the navbar */
    font-family: 'Didot'; /* Updated to Didot font */
}

.nav-active {
    border-bottom: 3px solid #FED757; /* Adjust the thickness and color */
}


.nav-left {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap between navigation buttons */
    flex-grow: 1; /* Allow left navigation to grow equally */
    justify-content: flex-end; /* Align items to the end */
    margin-right: 30px; /* Added margin-right */
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap between navigation buttons */
    flex-grow: 1; /* Allow right navigation to grow equally */
    justify-content: flex-start; /* Align items to the start */
    margin-left: 30px; /* Added margin-left */
}

.nav-left a, .nav-right a {
    color: #3E3E3E; /* Set link color to dark gray */
    text-decoration: none;
    text-transform: none; /* No uppercase transformation */
    font-size: 1.2em; /* Increased font size for navigation buttons */
    line-height: 60px; /* Center the text vertically */
    align-items: center; /* Center text vertically */
    width:200px;
    text-align: center;
}

.nav-left a:hover, .nav-right a:hover {
    text-decoration: underline;
    color: #B9D4F5; /* Change color on hover to soft sky blue */
}

/* Hero banner */
.hero-banner {
    width: 100%;
    background-image: url('Images/HomeHero.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-text {
    background-color: rgba(255, 255, 255, 0.8); /* Light overlay for readability */
    color: #FFF;
    text-align: right;
    color: #3E3E3E; /* Change color on hover to soft sky blue */
    font-family: 'Didot', serif; /* Updated to Didot font */;
    font-weight: bold;
    margin:10px 0px;
    padding:20px 10px 10px 10px;
    width: 60%;

}



.hero-text p{
    margin:0;
    text-align: center;
}


.logo {
    display: flex;
    flex-direction: column;
    align-items: center;

   
    font-size: 1em; /* Adjusted font size for the logo (smaller) */
}

.logo-text {
    text-align: center; /* Center the text */
    font-size: 1.4em; /* Adjust the font size as needed */
    color: #FFAC1E; /* Base color for the logo text */
    font-family: 'Didot', serif; /* Updated to Didot font */
    text-transform: uppercase;
        color: transparent; /* Hide text color initially */
    background: linear-gradient(to right, #FFAC1E, #FED757, #FFAC1E); /* Apply gradient to text */
     -webkit-background-clip: text; /* Use background-clip to show gradient */
    background-clip: text; /* For Firefox */
}

.logo-line {
    display: block; /* Stack each line vertically */
    width: 100%; /* Ensure both lines have the same width */
    font-size: 0.5em; /* Smaller font size for "BODY BALANCE" */
        color: transparent; /* Hide text color initially */
    background: linear-gradient(to right, #FFAC1E, #FED757, #FFAC1E); /* Apply gradient to text */
     -webkit-background-clip: text; /* Use background-clip to show gradient */
    background-clip: text; /* For Firefox */
}


.logo-line-large {
    font-size: 0.7em; /* Larger font size for "BELLE" */
}


/* Section styles */
.section {
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 110px; /* Adjust this according to your navbar height */
    color: #8A867A; /* Warm gray text for readability */
    background: #FFFFFF;

}




/* Global content class */
.content {
    max-width: 75%;
    margin: 0 auto;
    text-align: left; /* Align text to the left for readability */
    padding-top: 20px;
}

.who-am-i-photo {
    width: 75%; /* Image takes up 50% of the width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for the photo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-right: 20px; /* Space between image and text */
}

.who-am-i-text strong {
    color: #FFAC1E; /* Base color for emphasis */
    font-weight: bold; /* Bold weight for emphasis */
}

.who-am-i-list strong {
    color: #FFAC1E; /* Base color for emphasis */
    font-weight: bold; /* Bold weight for emphasis */
}

strong{
    color: #FFAC1E; /* Base color for emphasis */
    font-weight: bold; /* Bold weight for emphasis */
}

.who-am-i-text {
    width:100%; /* Allow text to utilize the remaining width */
    font-size: 0.8em; /* Increase text size for readability */
    margin:0;
}

.who-am-i-text p {
    margin-bottom: 10px; /* Space between paragraphs */
    font-size: 0.9em;
    margin:0;
}

/* Separate styling for the list */
.who-am-i-list {
    display: flex;  /* Use flexbox for horizontal layout */
    justify-content: space-between; /* Space between items */
    align-items: flex-start; /* Align items to the top */
    width: 100%;
}


.who-am-i-list ul {
    list-style-type: disc; /* Use bullet points */
    margin-left: 20px; /* Indent the list */
}

.who-am-i-list li {
    margin-bottom: 10px; /* Space between list items */
    color: #555; /* Darker color for list items */
    font-size: 1.1em; /* Slightly increase font size for list items */
}

.who-am-i-text h2 {
    color: #FFAC1E; /* Highlight the title */
    display:inline-block;
    width: 100%;
}

.who-am-i-content {
    background: linear-gradient(135deg, #F9F3E8 0%, #FFFFFF 100%); /* Soft gradient background */
    padding: 10px 20px;
    border-radius: 8px;
    color: #8A867A;
    max-width: 75%;
    margin: 10px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}



.list-item {
    text-align: center; /* Center the text under each icon */
    flex: 1; /* Allow each item to take equal width */
    margin: 0 10px; /* Space between items */
    width: 25%;
}

.list-item img {
    width: 30px; /* Set icon width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Space between icon and text */
}

.list-item p {
    font-size: 0.6em;

}



/* Button Styles */
.cta-button, button {
    background-color: #FFAC1E; /* Base color for buttons */
    color: #FFFFFF; /* White text for contrast */
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7em;
    transition: background-color 0.3s ease;
}

.cta-button:hover, button:hover {
    background-color: #FED757; /* Lighter amber on hover */
}


.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    width: 100%; /* Set width of the section */
    margin: 0 auto; /* Center the section */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Smooth transition */
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 20px; /* Space between columns */
    width: 80%; /* Set width of the section */
    margin: 0 auto; /* Center the section */
}

.contact-form {
    width: 75%;
    max-width: 600px;
    margin-right: 25%;
    display: flex;
    flex-direction: column;
    gap: 0px; /* Space between form elements */
    padding:20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

.contact-form p {
    font-size: 0.8em;
}

.contact-form label {
    font-size: 1.2em;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #FFAC1E;
    outline: none;
}

.contact-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* Make checkboxes slightly larger */
}

.contact-form button {
    padding: 15px 30px;
    background-color: #FFAC1E;
    color: #FFF;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #FED757;
}

.contact-form textarea {
    resize: none;
    border-bottom: 2px solid #ccc;
}

.contact-info {
    width: 100%;
    padding:10px 20px;
    background: #F9F3E8;
}

.contact-info table {
    width: 100%; /* Full width */
    border-collapse: collapse; /* Collapse borders for a cleaner look */
}

.contact-info td {
    padding: 2px; /* Padding within each cell */
    vertical-align: middle; /* Align items in the center */
    font-size: 0.8em;
}

.contact-icon {
    width: 20px; /* Icon size */
    height: 20px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
}

input[type="text"], input[type="email"], textarea, select {
    border: none;
    border-bottom: 2px solid #FFAC1E; /* Amber bottom border for inputs */
    background-color: #F9F3E8; /* Soft Beige background in input fields */
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    font-size: 1.1rem;
    color: #8A867A;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
    outline: none;
    border-bottom: 2px solid #FED757; /* Lighter amber when focused */
}

label {
    font-size: 1.2rem;
    color: #8A867A;
}

.price-table {
    width: 100%; /* Use full width of the content */
    border-collapse: collapse; /* Merge borders */
    margin-top: 10px; /* Space above the table */
}

.price-table th,
.price-table td {
    border: 1px solid #ddd; /* Light grey border for cells */
    padding: 6px; /* Space inside the cells */
    text-align: left; /* Left-align text */
    font-size: 1em; /* Increase font size for readability */
}

.price-table th {
    background-color: #FFAC1E; /* Header background color */
    color: white; /* Header text color */
}

.price-table tr:nth-child(even) {
    background-color: #F9F3E8; /* Light background for even rows */
}

.price-table tr:hover { background-color: #FFE9B5; /* Highlight row on hover */
}

.scroll-arrow {
    display: block; /* Initially hide the arrow */
    text-align: center; /* Center the arrow and text */

}

.scroll-arrow span {
    font-size: 1em; /* Adjust size of the arrow */
    color: #FFAC1E; /* Arrow color */
}

.scroll-arrow p {
    font-size: 0.7em; /* Adjust size of the text */
    margin-top: 5px; /* Space between arrow and text */
    margin-bottom: 0; /* Remove bottom margin */
}

.envelope-container {
    position: relative; /* Positioning for the flap */
    overflow: hidden; /* Hide overflow to create the flap effect */
}

.envelope-flap {
    position: absolute; /* Overlaying position */
    top: 0; /* Align with the top */
    left: 0; /* Align with the left */
    right: 0; /* Align with the right */
    height: 0; /* Start with 0 height */
    background: #f8f4e3; /* Same color as contact-info */
    border-radius: 8px 8px 0 0; /* Rounded corners on top */
    transition: height 0.5s ease-in-out; /* Smooth transition for flap height */
    z-index: 1; /* Above the two columns */
}

.envelope-close {
    transform: scaleY(0); /* Close the div vertically */
    opacity: 0; /* Fade out */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Smooth transition */
}

.flap-open {
    height: 200px; /* Adjust this height to reveal the flap */
}
.mobile{
    display: none;
}
#gmaps{
    width: 100%;
    background-image:  Url('Images/Gmaps.jpg');
    height: 140px;
    background-position:top;
    background-size: cover;
}

.hide{
    display: none;
}

}

@media screen and (min-width: 1300px) {
    
    .who-am-i-text {
    font-size: 1.2em; /* Increase text size for readability */
    padding-left: 20px;

}

  .who-am-i-photo {
    width: 90%;
    margin:0;
}


.scroll-arrow span {
    font-size: 1.7em; /* Adjust size of the arrow */
    color: #FFAC1E; /* Arrow color */
}

.scroll-arrow p {
    font-size: 1em; /* Adjust size of the text */
    margin-top: 5px; /* Space between arrow and text */
    margin-bottom: 0; /* Remove bottom margin */
}

.list-item img {
    width: 30px; /* Set icon width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Space between icon and text */
}

.list-item p {
    font-size: 0.8em;
    margin: 0;
}

h2 {

    font-size:1.5em;

}

.hero-text {
 
    padding:30px 10px 10px 10px;
     width: 60%;

}



.hero-text p{
    margin:0;
    text-align: center;
    font-size: 1.5em;
}

.section{
    padding-top: 110px;
}

.who-am-i-content{
    padding: 20px 20px;
}

.who-am-i-list {
    margin-top: 20px; /* Space between heading and list */
}

.scroll-arrow {

    margin-top: 20px; /* Space above the arrow */
}

.price-table th,
.price-table td {
    padding: 10px; /* Space inside the cells */
    font-size: 1.2em; /* Increase font size for readability */
}

.contact-info {
    width: 75%;
    padding:20px;
    margin-left:25%;
}

.contact-info table {

}

.contact-info td {
    padding: 10px; /* Padding within each cell */
    font-size: 0.8em;
}

#gmaps{
    width: 100%;
    height: 170px;

}

.cta-button, button {
    padding: 12px 12px;
    font-size: 1em;
}

.contact-form {
    gap: 20px; /* Space between form elements */
}


}
/* Adjustments Bigger screens */
@media screen and (min-width: 1800px){}

/*Adjustments Bigger screens */
@media screen and (min-width: 2400px){}


