/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}





/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

/* GLOBAL */
body {
    background-image: url("images/backgroundb.png");
    margin: 0;
}

/* DESKTOP NAV */
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    border-bottom: 3px solid #a3a3a3;
}

.nav-list li {
    display: inline-block;
}

.nav-list li a {
    display: block;
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Bungee', cursive;
    font-size: 12px;
}

.nav-list li a:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

/* HAMBURGER BUTTON (hidden by default) */
.hamburger {
    display: none; 
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #888;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MOBILE MENU HIDDEN */
.mobile-menu {
    display: none;
    background: rgba(240, 240, 240, .97);
    position: absolute;
    top: 55px;
    right: 10px;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
}

.mobile-menu .nav-list li {
    display: block;
    text-align: right;
}

/* SHOW MENU WHEN ACTIVE */
.mobile-menu.active {
    display: block;
}

/* MEDIA QUERY */
@media (max-width: 700px) {

    /* Hide desktop nav */
    .nav-links {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }
}


/* FOOTER STYLING */
.site-footer {
    background: none;   /* removed background */
    border-top: none;   /* removed border */
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-family: 'Bungee', cursive;
    font-size: 12px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* FOOTER TEXT */
.site-footer p {
    margin: 0;
    color: #ffffff;  /* WHITE TEXT */
}

/* ICON */
.footer-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ICON HOVER */
.footer-icon img:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

/* MOBILE FOOTER STACKS NICELY */
@media (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

/* Rounded logo styling */
.site-logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;      /* makes it round */
    object-fit: cover;       /* clean fit */
    border: 3px solid white; /* optional white outline */
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

/* Smaller logo on screens 600px or under */
@media (max-width: 600px) {
    .site-logo img {
        width: 60px;
        height: 60px;
    }
}

/* Put header items on one line */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 3px solid #a3a3a3;
}

.container {
    font-family: 'Bungee', cursive;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  background-color: #eef3f9;
  border: 0px solid #4d90fe;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-family: 'Bungee', cursive;
}

input[type=text]:focus, select:focus, textarea:focus {
  background-color: #ffffff;
  outline: none;
}

input[type=submit] {
  background-color: #635bff;
  font-weight: bolder;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .container {
    width: 85vw;
    margin: 15vh auto;
    padding: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95vw;
    margin: 10vh auto;
    padding: 12px;
  }
}

input[type=submit] {
  background-color: #635bff;
  font-weight: bolder;
  border-radius: 100px;
  color: white;
  padding: 6px 20px;
  border: 4px solid #635bff;
  cursor: pointer;
}

button[type=button] {
  background-color: #635bff;
  font-weight: bolder;
  border-radius: 100px;
  color: white;
  padding: 6px 20px;
  border: 4px solid #635bff;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #000000;
  color:rgb(255, 255, 255);
  border: 4px solid #000000;
}

button[type=button]:hover {
  background-color: #000000;
  color:rgb(255, 255, 255);
  border: 4px solid #000000;
}

input[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  background-color: #eef3f9;
  border: 0px solid #4d90fe;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=email]:focus, select:focus, textarea:focus {
  background-color: #ffffff;
  outline: none;
  border: 2px solid #4d90fe;
}






.container {
  /* responsive container for the contact form */
  width: min(90vw, 680px);
  background-color: #ffffff;
  border-radius: 10px;
  margin: 22vh auto;
  padding: 20px;
}

/* Form grid layout inside the contact container */
.container .form-grid {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.form-row label {
  justify-self: start;
  font-weight: 700;
  color: #222;
}

.container input[type=text],
.container input[type=email],
.container textarea {
  width: 100%;
  padding: 10px;
  background-color: #e8f0fe;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-actions {
  text-align: right;
  margin-top: 8px;
}

.muted { color: rgb(116, 116, 116); }