/* TopNordVenture.sbs - Main CSS Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* Main theme colors - purple and white */
  --primary-purple: #6a3ea1;
  --secondary-purple: #9a7ad1;
  --light-purple: #ede7f6;
  --accent-purple: #4a1e9e;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --dark-text: #333333;
  --light-text: #666666;
  --border-color: #d4c5eb;
  --shadow-color: rgba(106, 62, 161, 0.1);
  --shadow-hover: rgba(106, 62, 161, 0.2);
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 15px;
  --transition: all 0.3s ease;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark-text);
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-purple);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation - Floating Header */
header {
  background-color: var(--white);
  box-shadow: 0 4px 15px var(--shadow-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.floating {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  letter-spacing: 0.5px;
}

.logo-img {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  padding: 8px 15px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-purple);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 80%;
  left: 10%;
}

.nav-link:hover {
  color: var(--primary-purple);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-purple);
}

/* Hero section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 20px var(--shadow-color);
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 60px 0;
  background-color: var(--off-white);
}

.disclaimer-box {
  background-color: var(--light-purple);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-color);
  border-left: 5px solid var(--primary-purple);
}

.disclaimer-box h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: var(--primary-purple);
}

.disclaimer-box p {
  font-size: 1.1rem;
}

/* Popup Disclaimer */
.disclaimer-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.disclaimer-popup.show {
  display: flex;
}

.disclaimer-popup-content {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: popIn 0.3s ease-out forwards;
  border-top: 5px solid var(--primary-purple);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.disclaimer-popup h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary-purple);
}

.disclaimer-popup p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--light-text);
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Game Section */
.game-section {
  padding: 70px 0;
  background-color: var(--white);
}

.game-container {
  background-color: var(--off-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.game-header {
  background-color: var(--light-purple);
  padding: 20px 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.game-header h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--primary-purple);
}

.game-header p {
  color: var(--light-text);
  font-size: 1.1rem;
}

.game-content {
  padding: 20px;
}

.game-iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-iframe:hover {
  box-shadow: 0 8px 25px var(--shadow-hover);
  transform: translateY(-3px);
}

.game-action {
  text-align: center;
  margin-top: 20px;
}

.game-description {
  padding: 20px;
  background-color: var(--light-purple);
  border-radius: var(--border-radius-md);
  margin-top: 20px;
}

.game-description h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--primary-purple);
}

.game-description p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--light-text);
}

/* About Section */
.about-section {
  padding: 70px 0;
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, var(--light-purple) 0%, transparent 20%);
  opacity: 0.5;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-purple);
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-purple);
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--light-text);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 20px var(--shadow-color);
}

/* Features Section */
.features-section {
  padding: 70px 0;
  background-color: var(--white);
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary-purple);
  position: relative;
  display: inline-block;
}

.features-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-purple);
}

.features-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background-color: var(--off-white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--shadow-color);
  flex: 1 0 300px;
  max-width: 350px;
  border-bottom: 3px solid var(--primary-purple);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-purple);
  background-color: var(--light-purple);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--primary-purple);
}

.feature-card p {
  color: var(--light-text);
  font-size: 1rem;
}

/* Contact Form */
.contact-section {
  padding: 70px 0;
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 90% 90%, var(--light-purple) 0%, transparent 20%);
  opacity: 0.5;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info {
  padding: 30px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary-purple);
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-purple);
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--light-text);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-purple);
}

.contact-form {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-purple);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(106, 62, 161, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Legal Pages */
.legal-section {
  padding: 140px 0 70px;
  background-color: var(--white);
}

.legal-container {
  background-color: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 5px 20px var(--shadow-color);
  border-top: 5px solid var(--primary-purple);
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-purple);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
  color: var(--primary-purple);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-purple);
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 20px;
  margin-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-purple);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-purple);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(106, 62, 161, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
  background-color: var(--light-purple);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px var(--shadow-color);
}

.btn-full {
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--off-white);
  padding-top: 60px;
  box-shadow: 0 -2px 10px var(--shadow-color);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-purple);
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-purple);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  color: var(--light-text);
  transition: var(--transition);
  font-size: 0.95rem;
  display: block;
  padding: 5px 0;
}

.footer-link a:hover {
  color: var(--primary-purple);
  padding-left: 5px;
}

.footer-disclaimer {
  background-color: var(--light-purple);
  padding: 20px;
  margin: 20px 0;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  font-size: 1.2rem;
  color: var(--primary-purple);
  transition: var(--transition);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background-color: var(--primary-purple);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: var(--primary-purple);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .game-iframe {
    height: 500px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 5px 10px var(--shadow-color);
    padding: 10px 0;
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  .nav-link:hover::after {
    width: 30%;
    left: 35%;
  }
  
  .hero-content {
    flex-direction: column;
    padding: 0 15px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .about-image {
    margin-top: 30px;
    order: -1;
  }
  
  .game-iframe {
    height: 400px;
  }
  
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card {
    width: 100%;
    max-width: 100%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .popup-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.3rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .disclaimer-box {
    padding: 20px;
  }
  
  .game-iframe {
    height: 300px;
  }
  
  .legal-container {
    padding: 20px;
  }
}