@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #fff;
  background: #000;
}

p {
  font-size: 1rem; /* adjust value to your liking */
  line-height: 1.6; /* optional, improves readability */
  margin: 0.5em 0; /* optional, consistent spacing */
}

/* Fullscreen warning overlay */
#orientation-warning {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.95);
  color: white;
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 20px;
}

#orientation-warning.active {
  display: flex;
}

/* Text styling */
#orientation-warning h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

#orientation-warning p {
  font-size: 1.1rem;
  max-width: 400px;
  line-height: 1.5;
}


.language-toggle {
  position: absolute;
  top: 20px;
  right: 30px;
  
}

.language-toggle button {
  background: rgba(189, 188, 188, 0.7);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.language-toggle button:hover {
  background: rgba(155, 155, 155, 0.9);
}


/* === HERO === */
.hero {
  background: linear-gradient(90deg, #a8d8b0, #d6b675);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 100px 100px 120px;
  text-align: left;
}

.avatar {
  width: 250px;
  height: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background-image: url("Assets/upscalemedia.png");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-text h1 {
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.8rem;
  color: white;
}



/* === SECTIONS === */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  
}

.section-left {
  flex: 1;
  text-align: left;
  font-weight: 600;
}

.section-right {
  flex: 3;
  text-align: justify;
  padding-left: 5cm;
}

.section-right p {
  margin-bottom: 20px;
  max-width: 400px;
}

/* --- GRADIENTS PER SECTION --- */
.about {
  background: 
    linear-gradient(90deg, rgba(124, 145, 114, 0.8), rgba(168, 150, 100, 0.8)),
    url("Assets/white-paper-texture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio {
  background: linear-gradient(90deg, #a8c68f, #cfb76f);
}

.contact {
  background: linear-gradient(90deg, #7c9172, #a89664);
  background: 
    linear-gradient(90deg, rgba(124, 145, 114, 0.8), rgba(168, 150, 100, 0.8)),
    url("Assets/white-paper-texture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* === BUTTON === */
button {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* === CONTACT === */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.contact-center {
  text-align: center;
  font-weight: 700;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-column a {
  color: #fff;
  text-decoration: none;
}

.contact-column a:hover {
  text-decoration: underline;
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #a1b28a, #c1a366);
  text-align: center;
  padding: 2px;
  font-size: 0.5rem;
}
