@import url('https://fonts.googleapis.com/css?family=Lato:400,300,100,700,900');
@import url('https://fonts.googleapis.com/css?family=Sofia');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
}

body {
    min-height: 100vh;
    background: url(https://s3.eu-west-2.amazonaws.com/debbie-jones.com/CloudArchitect.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
}

.banner h2 {
    padding-top: 250px;
    font-size: 80px;
    color: #fff;
    text-align: center;
    font-family: Lato;
}

.content-area h2 {
    font-size: 30px;
    margin: 0;
    padding-top: 100px;
    letter-spacing: 4px;
    text-align: center;
    font-family: Sofia;
    color: #fff;
}

.content-area p {
    padding: 2% 0;
    line-height: 40px;
    text-align: center;
    font-weight: 200;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 20px;
    padding: 20px;
    color: #333;
    display: block;
}

header .navbar ul li a:hover {
    background: #333;
    color: #fff;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #fff;
    display: none;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px) {
    header {
        padding: 20px;
    }

    header label {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, .1);
        display: none;
    }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }
}

/* Contact Form Styles */
.contact-form {
    width: 50%;
    margin: 50px auto;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    max-width: 400px;
}

.contact-form p {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* Contact Me Button Styles */
.contact-me-btn {
    display: block;
    width: 250px;
    margin: 0 auto;
    padding: 15px;
    background-color: #0077b6;  /* Blue background */
    color: #fff;  /* White text */
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-me-btn:hover {
    background-color: #00A8E8; /* Lighter blue for hover effect */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background-color: #333;
    color: #fff;
    position: relative;
    margin-top: 50px; /* Adds space before footer */
}
