/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    background: #1b1c1e;
    font-family: "Lato", sans-serif; 
    color: white;
}

/* Header Styles */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 59px;
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

/* Paragraph Styles */
p {
    color: #d2d2d2;
    font-family: "Lato", sans-serif;
}

/* Container Styles */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5%;
}

/* Form Styles */
form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
}

/* Form Fields */
input,
textarea,
label {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: #828282;
    font-family: "Lato", sans-serif;
}

/* Text Area and Input Styles */
input,
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #828282;
    color: white;
    font-size: 18px;
    padding: 10px;
}

input:focus,
textarea:focus {
    outline: 1px solid #828282;
}

/* Submit Button Styles */
input[type=submit] {
    background-color: #545557;
    padding: 15px 0;
    color: white;
    font-size: 18px;
    border-bottom: none;
    margin-top: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

input[type=submit]:hover {
    background: #FFF;
    color: #1b1c1e;
}

/* Links Styles */
a {
    color: #828282;
    font-style: italic;
}

a:hover {
    color: #fff;
}

/* Side Navigation Styles */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-family: "Lato", sans-serif;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Menu Button Styles */
#menuButton {
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 2;
    transition: 0.5s;
}

/* Add consistent spacing between each field */
.form-group {
    margin-bottom: 1.5rem; /* Adjust this value for your preferred spacing */
}

input, textarea {
    margin-top: 0.5rem; /* Space between label and input/textarea */
    margin-bottom: 0;  /* Remove any default bottom margin */
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

textarea {
    resize: none; /* Prevent textarea resizing */
}

button {
    margin-top: 1rem; /* Spacing above the button */
}

.container {
    position: relative;
}

#instagram-photo {
    position: absolute;
    top: 10px;
    right: 10px; /* Position it in the top-right corner of the container */
    width: 80px;
    height: auto;
    z-index: 10;
}
