:root {
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.3);
    --primary-dark: #1a1a1a;
    --accent: #0056b3;
}

* {
    box-sizing: border-box;
    /*border: 1px solid red !important;*/
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--primary-dark);
    /*
    ChatGPT Image Apr 10, 2026, 11_08_57 PM.png
      oilrig_windmills_gemini-ai_generated.png
      oilrig_windmills_gemini-ai_generated_2.png
    oilrig_windmills_gemini-ai_generated_Small.png
    oilrig_windmills_gemini-ai_generated_2_Small.png
    */
    background: url("./images/oilrig_windmills_gemini-ai_generated_Small.png") no-repeat center center fixed;
    background-size: cover;
}

/* Subtle dark overlay to make white boxes pop */
.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.site-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; /* Vertical center */
    justify-content: flex-start;
    /*padding: 20px 20px;
    padding-top:20px;*/
}

.cover-container {
    width: 100%;
    max-width: 450px;
    display:flex;
    flex-direction:column;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

/* Common Glass Effect */
.branding, .mybox, .menu-bar, .lead{
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0,0, 0, 0.15);
    /*margin-bottom: 0px;*/
    /*background-color:rgba(255, 255, 255, 0.2);*/
    flex-direction: column;
}
.phone-number{
  white-space: nowrap;
}
.branding {
    padding: 15px 15px;
    background: none;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.2);
    text-align: center;
}
.mybox, .lead {
  padding: 15px 15px;
  text-align: center;
  line-height: 1.8;
  font-size: 21px;
  letter-spacing:0.2px;
  font-family: "Times New Roman", Times, serif
  
}
.byline{
  background: rgba(0, 0, 0, 0.6);
  color: white;
  background: var(--glue-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 15px 15px;
  text-align: center;
  margin-top:10px;
  border-radius: 16px;
}

.name{
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 2px;
  color: #cdcdcd;
  /*letter-spacing: 0.5px;*/
  /*text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);*/
}
.title {
    font-size: 14px;
    opacity: 0.8;       /* Makes the title slightly lighter than the name */
    font-style: italic;
    font-weight: 500;
    color: #b3b0b0;
}

.no-break{
  white-space: nowrap;
}

.cover-head {
    margin: 0;
    font-size: clamp(24px, 5vw, 36px);
    letter-spacing: -1px;
}

.cover-head b, .cover-head span {
    font-weight: 800;
}

.cover-head span {
    font-weight: 400;
    color: #2f2e2e;
}

/* Menu Navigation */
.menu-bar {
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
}

.menu-bar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-around;
}

.menu-bar li a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.2s ease;
}

.menu-bar li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent);
}

/* Content Box */
.mybox {
    padding: 40px;
}

.lead {
    font-family: 'Lora', serif;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.lead em {
    color: var(--accent);
    font-style: italic;
}

/* Fixed Footer */
.mastfoot {
    position: fixed;
    bottom: 0;
    width: 100%;
}



.footer-content{
    
    
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    z-index: 2;
}

.credit-content{
        
    width: 100%;
    background: rgba(0, 0, 0, 0);
    color: rgb(175,175,175);
    padding: 5px 5px;
    z-index: 2;
    font-size: 10px;
  /*opacity: 0.5;*/
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  margin-top: 5px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  text-align:left;
}

.credits{
  
}

/* Responsive */
@media (max-width: 600px) {
    .site-wrapper {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .menu-bar ul {
        flex-wrap: wrap;
    }
    
    .mybox {
        padding: 25px;
    }
}
