/* ==================================================
   VOGSTYLE.CSS – VogMan Styling
   Cleaned and grouped for clarity – 2025
   ================================================== */

@charset "utf-8";

/* === GLOBAL RESETS & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #222;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s, color 0.4s;
}

.emoji {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

a {
  color: #00A351;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #66e2a0;
  text-decoration: none;
  outline: 2px dashed #66e2a0;
  outline-offset: 2px;
}

/* === DARK MODE TOGGLE BUTTON === */
.theme-toggle {
  margin-top: 1em;
  background: none;
  border: 1px solid #888;
  border-radius: 2em;
  padding: 0.4em 1em;
  color: #888;
  cursor: pointer;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.theme-toggle:hover,
.theme-toggle:focus {
  background: #222;
  color: #7CFC00;
  border-color: #7CFC00;
  outline: none;
}

/* === HEADER === */
header {
  position: relative;
  background: url('../images/homepage.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 60px 1em 0 1em;
  overflow: hidden;
}

.tagline-main,
.tagline-sub,
.tagline-small {
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.7);
}

.tagline-main {
  font-size: 3em;
  font-weight: bold;
  margin: 0.2em 0 0 0.4em;
}

.tagline-sub {
  font-size: 2.6em;
  margin: 0 0 0 0.2em;
}

.tagline-small {
  font-size: 1.8em;
  margin: 0.4em 0;
}

/* === CONTENT === */
section {
  width: 100%;
  padding: 2em 2em;
}

section:nth-of-type(even) {
  background: #f8f8f8;
}

.vogcontent {
  max-width: 900px;
  margin: auto;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

footer {
  background: #222;
  color: white;
  padding: 2em;
  text-align: center;
}

.vogtext {
  color: #00A351;
  font-style: italic;
}

.content {
  max-width: 1200px;
  margin: 2em auto;
  padding: 0 1em;
}
	
/* MENU  ======================================================================================*/
.vogmanbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #111;
  color: white;
  z-index: 1000;
  padding: 0.8em 1.2em;
  font-size: 1em;
  font-family: "Segoe UI", Roboto, sans-serif;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
	
.vogmandesktop {
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 1em;                  /* optional spacing between the divs */
}
	
.vogmanlogo,
.vogmanicon {
  flex: 0 0 110px;           /* fixed width */
  max-width: 110px;
  display: flex;
  justify-content: center;  /* horizontal centering */
  align-items: center;      /* vertical centering */
}

.vogmanicon {
  display: flex;
  align-items: center;
  justify-content: flex-end;   /* Keep them to the right */
}
	
.vogmanicon a {
  color: white;
  text-decoration: none;
  font-size: 1.4em;
  margin: 0 0.25em;
  transition: transform 0.2s ease, color 0.2s ease;
}
	
.vogmanicon a:hover,
.vogmanicon a:focus {
  transform: scale(1.2);
  color: #7CFC00;             /* Optional: Light green hover effect */
}

	
.vogmanlogo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}
	
.vogmanlogo a {
  display: block; /* Was inline-block – change to block */
  width: 100%;
  height: 100%;
}
	
.vogmanmenu {
  flex: 1 1 auto;            /* flexible width */
  display: flex;
  justify-content: center;  /* horizontal centering */
  align-items: center;      /* vertical centering */
  min-width: 0;             /* allows shrinking */
}
	
  .vogmanmobile {
    display: none;
  }

/* === MOBILE STYLES ================================================================================ */
@media (max-width: 768px) {
 
body h1 {
    font-size: 2em;
  }

body h2 {
    font-size: 1.7em;
  }

.page-title {
    font-size: 1.8em;
  }
	
	
body {
    font-size: 18px;
  }

  header {
    background: url('../images/homepage-small.jpg') no-repeat center center;
    background-size: auto 100%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    height: 600px;
    background-color: black;
  }

  .vogcontainer {
    flex-direction: column;
    align-items: stretch;
    background-image: url('../images/tiny-logo.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top right;
  }

  .voglabel {
    display: inline-block;
    max-width: 50%;
    float: left;
  }

  .tagline-main {
    font-size: 1.6em;
    margin: 0.2em 0 0 0.4em;
  }

  .tagline-sub {
    font-size: 1.5em;
    margin: 0 0 0 0.2em;
  }

  .tagline-small {
    font-size: 1.4em;
    margin: 0.2em 0;
  }

/* MENU =================================== */
	.vogmanbar {
    font-size: 1.1em;
    padding: 0.5em;
  }
	
  .vogmandesktop {
    display: none;
  }
	
	.vogmanmobile {
	  width: 100%;
	  margin: 0 auto;
	  display: block;
	}
	
	.vogmandesktop {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5em;
  }
	
.vogmanrow1 {
  display: flex;
  width: 100%;
}

  .vogmanlogo,
  .vogmanicon {
    width: 50%;
    max-width: none;
    flex: none;
    display: inline-flex;
    padding: 0.5em;
  }

  .vogmanicon a {
    font-size: 1.5em;
    margin: 0 0.4em;
  }	
	
  .vogmanlogo {
    justify-content: flex-start;
  }
	
.vogmanlogo img {
  max-width: 110px;
  height: auto;
}

	
.vogmanmenu {
    width: 100%;
    flex: none;
    justify-content: center;
    padding: 0.01em 0;
  }
	
.accordion-menu label,
.accordion-menu a {
  padding: 0.6em 0.8em;
  font-size: 0.95em;
}

.menu-toggle {
  padding: 0.6em 1em;
  font-size: 1em;
}

.accordion-menu ul ul {
  padding-left: 0.8em;
}

.accordion-menu ul ul ul {
  padding-left: 1.4em;
}

.accordion-menu ul ul ul ul {
  padding-left: 2em;
}

}

/* === DARK MODE STYLES (MANUAL TOGGLE) === */
body.dark-mode {
  background-color: #111;
  color: #eee;
}

body.dark-mode a {
  color: #66e2a0;
}

body.dark-mode a:hover,
body.dark-mode a:focus {
  color: #7CFC00;
}

body.dark-mode footer {
  background: #000;
  color: #ccc;
}

body.dark-mode section:nth-of-type(even) {
  background: #1a1a1a;
}
