/* Global Styles/All Pages */

/* Michroma for header / site title */
@font-face {
    font-family: 'Michroma';
    src: url('Michroma-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Rajdhani for body text */
@font-face {
    font-family: 'Rajdhani';
    src: url('Rajdhani-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('Rajdhani-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
  margin: 0;
  font-family: 'Rajdhani';
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  /*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);*/
  /*background-color: #0d0d0d;*/
  background-image: url("Blue Monochrome Sculpted Curves_Minimal Abstract Layers.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  

}

header {
  /*background-color: #1a1a1a;*/
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-weight: 500px;
  color: white;
}

nav ul {
  font-family: 'Rajdhani';
  font-size: 1.55rem;
  list-style: none;
  display: flex;
  gap: .7rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1e9cce;
}

footer {
  /*background-color: #111;*/
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  color: white;
}

/*Home Page Specific Style */
.hero {
  /*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); -Prevents Background image to show*/
  padding: 4rem 2rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-family: 'Michroma';
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
 /*ont-style: italic;*/
}

.hero p {
  font-size: 1.25rem;
  color: white;
}


/* Contact Page Specific Styles */
.contact-page {
  font-family: 'Rajdhani';
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.contact-page h2 {
  font-family: 'Rajdhani';
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}

.contact-page form {
  font-family: 'Rajdhani';
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-page input,
.contact-page textarea {
  font-family: 'Rajdhani';
  padding: 0.75rem;
  background-color: #383838;
  border: 1px solid #ffffff;
  color: white;
  border-radius: 4px;
}

.contact-page button {
  font-family: 'Rajdhani';
  padding: 0.75rem;
  background-color: #004864;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.contact-page button:hover {
  background-color:  #1e9cce;
}

/*Projects Page*/

/* Simple container for nice side margins */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Project card */
.project-card {
  margin: 0 0 32px;
  padding: 18px;
  border: 1px solid #1e232a;
  border-radius: 12px;
  background: linear-gradient(135deg, White 0%, #76767a 100%);
}
.project-card img {
  font-size: 1.5rem;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}
.project-card h3 {
font-family: 'Rajdhani';
font-weight: 500;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #1e232a;
  border-radius: 8px;
  text-decoration: none;
  color: black;
}


html, body { height: 100%; }               /* safe, often needed */

.layout-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* spacing below the nav + lets footer sit at bottom */
.layout-main {
  flex: 1;
  padding-top: 32px;        /* space between nav and content */
  padding-bottom: 48px;     /* breathing room above footer */
}

/* ensures footer is at the bottom; also neutralizes any fixed footer */
.layout-footer {
  margin-top: auto;
  position: static !important;
}

