@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --color-yellow: #ffb703ff;
  --color-blue: #0082c4ff;
  --color-grey: #1e2e36ff;
  --color-white: #ffffffff;

  --transition: all 200ms ease;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: url("../images/background43-b.jpg") fixed no-repeat;
  background-size: cover;
  background-position: top;

  color: var(--color-grey);
  font-size: 1.2rem;
}

header {
  position: fixed;
  width: 100%;
  z-index: 1;
  padding: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.navbar_rightNav {
  margin-right: 7em;
}

.navbar_leftNav img {
  margin-left: 7em;
  margin-top: 10px;
}

.navbar_rightNav a:not(:last-child) {
  margin-right: 2.4em;
}

a {
  text-decoration: none;
  font-weight: 700;
}

.btn {
  padding: 0.5em;
  margin: 0.3em 0em;
  border-radius: 5px;
  color: var(--color-grey);
}

.btn_primary {
  border: none;
  background-color: #00000000;
}

.btn:hover,
.btn:focus,
.btn:active {
  padding: 0.5em;
  color: var(--color-grey);
  transition: var(--transition);
  background-color: var(--color-yellow);
}

.btn_secondary {
  color: var(--color-blue);
  display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
    background: #ff6600;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  position: relative;
  color: var(--color-blue);
}

.splash h1 {
  font-size: 4em;
  margin-bottom: 1em;
  font-weight: 700;
}

.splash h1 span {
  font-size: 0.5em;
}

.splash p {
  margin-bottom: 4em;
  color: var(--color-grey);
}

footer {
  width: 100%;
 position: relative;
}

.container_contact {
  display: flex;
  color: var(--color-grey);
  justify-content: center;
  align-items: baseline;
}

.container_contact span {
  font-size: xx-large;
}

.container_services {
  display: flex;
  justify-content: space-between;
}

.fade { 
  opacity: 0; 
  transition: opacity 2s ease-in-out; 
  position: absolute;
}

.tagline {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    opacity: 0; /* Initially hidden */
    transition: opacity 2s ease-in-out;
}

.active { 
  opacity: 1; 
}

.logo img { 
  width: 500px; 
}

.slideshow {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Category text (Typing effect text) */
#category-text {
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 3rem;
    color: var(--color-blue);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Static "Art & Design" text (Initially Hidden) */
#art-design {
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 1.5rem;
    font-weight: normal; /* Not bold */
    color: var(--color-grey);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0; /* Initially hidden */
    transition: opacity 2s ease-in-out;
}


.btn_secondary:hover {
    background: #cc5500;
}