
body {
    margin: 0;
    background-image: url("../images/portfolio-photography/concreatspace.jpg"); /* update path */
    background-size: cover;        /* fills the screen */
    background-position: center;   /* keeps subject centered */
    background-repeat: no-repeat;  /* prevents tiling */
    background-attachment: fixed;  /* optional: creates parallax effect */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    height: 100%;
    overflow: hidden;
    justify-content: flex-start; /* instead of center */
    margin-right: 0;             /* remove the forced push */
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    
}

html, body {
    height: 100%;
    overflow: hidden;
}

header img {
    width: 250px;   /* adjust to taste */
    height: auto;
    padding-left: 50px;
    padding-bottom: 0px;
}

/* nav top-right */

.top-nav {
    position: absolute;
    font-family: Ambicase Fatface, serif;
    font-size: 30px;
    top: 20px;
    right: 125px;
    right: 40px;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 80px;
    margin: 0;
    padding: 0;
    
     
}

.top-nav a {
    display: inline-block;
    padding:10px 14px;
    border-radius: 6px;
    background: rgba(0, 35, 0, .95);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    font-size: 18px;      /* smaller text */
    margin-right: 15px;     /* less gap between links */
}

section.main.content {
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    transform: scale(0.60);
    transform-origin: top center;
    transform: translateX(-275px) scale(0.60);
    margin-left: 225px
}

.fcf-form-group {
    margin-bottom: 25px;
    margin-top: 25px;
}


.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: transparent;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 4px 8px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #495057;
    background-color: rgba(1, 1, 1, 0.4); /* soft frosted look */
    color: rgb(12, 10, 10);              /* keep the border visible */                        
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

.fcf-label,
.fcf-form-control,
section.main.content,
.fcf-form-group {
    font-family: "Ambicase Fatface", Georgia, 'Times New Roman', serif;
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 2px;
    display: block;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0c345f;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, 
    background-color 0.15s ease-in-out, 
    border-color 0.15s ease-in-out, 
    box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #103d6d;
    border-color: #083361;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #103d6d;
    border-color: #103d6d;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #103d6d;
    border-color: #103d6d;
    box-shadow: 0 0 0 0.3rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

#fcf-button {
    width: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 5px;
    display: inline-block;
}


.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.9rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

input[type="submit"] {
    background-color: #103d6d;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    cursor: pointer;

}

input[type="reset"] {
    background-color: #103d6d;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    cursor: pointer;

}

.fcf-btn-container {
    display: flex;
    gap: 20px;        /* space between buttons */
    justify-content: center;
    margin-top: 20px;
}

#Message {
    width: 100%;
    max-width: 500px;
    height: 120px;
}


p {
    font-family: "Ambicase Fatface", Georgia, 'Times New Roman', serif;
    color: #ffffff;
    font-size: 15px;
}

select {
    height: 40px;
    padding: 5px 10px;
    font-size: 1rem;
    font-family: "Ambicase Fatface", Georgia, 'Times New Roman', serif;
    border-radius: 6px;
}

input[type="radio"] {
    transform: scale(1.6);   /* makes them bigger */
    margin-right: 8px;       /* spacing between button + text */
    accent-color: #103d6d;   /* optional: matches your button color */
}

.contact-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: white;
    font-family: "Ambicase Fatface", Georgia, serif;
    font-size: 0.8rem;
    opacity: 0.8;
    z-index: 999;
}

h1 {
    font-size: 25px;
}


