/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fdfcfb;
  color: #222b2d;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222b2d;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.6rem 0rem 0rem 0rem;
  width: 180px;
	
	
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #FF793A;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 22px;
  gap: 5px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    width: 60%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}


/*///////////////////HERO SECTION////////////////////*/



.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1rem 0;
  
}


.herobanner {
  text-align: center;
  padding: 1rem 1rem 2rem 1rem;
  color: #ffffff;
  background: none;
  font-size: 1.4rem;
  
}

.hero-section {
  background-image: url('images/game2.png');
  background-size:cover;
  background-position: top; /* Centers the image */
  background-repeat: no-repeat; 
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; 
  text-align: center;
  padding: 20px;
}

.component-section-1 {
  background-image: url('images/PuttPerilPattern.jpg');
  background-size:cover;
  background-position: top; /* Centers the image */
  background-repeat: no-repeat; 
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; 
  text-align: center;
  padding: 20px;
}

.component-section-2 {
  background-image: url('images/game3.png');
  background-size:cover;
  background-position: top; /* Centers the image */
  background-repeat: no-repeat; 
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; 
  text-align: center;
  padding: 20px;
}


.hero-images {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Base image styling */
.hero-image img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  transition: transform 0.5s ease, filter 0.2s ease;
  vertical-align: bottom;
}

/* Hover animation for ALL images */
.hero-image img:hover {
  transform: scale(1.1) rotate(0deg);
}

.hero-empty {
	height:300px;
}

.hero-image.center dotlottie-wc {
  width: 300px;
  height: 300px;
  transform: scale(.9);
  transition: transform 0.1s ease, filter 0.1s ease;
  display: block;
  margin: 0 auto;
}

.hero-image.center dotlottie-wc:hover {
  transform: scale(1.0);
  filter: drop-shadow(0rem 0rem 0.5rem rgba(176, 40, 0, 0.5));

}


/*/////////////////GAME COMPONENTS//////////////////*/

.components{
  width:60%;
  min-height: 100%;
  display: flex; 
  flex-direction: row;
  justify-content: left;
  align-items: left;
  color: white;
  text-align: center;
  padding: 4rem 0rem 4rem 0rem;
}

.component-left{
	justify-content: left;
 	align-items: left;
	border-radius: 20px;
}

.component-left img{
	transition: transform 0.2s ease, filter 0.2s ease;
	justify-content: left;
 	align-items: left;
	max-height: 200px;
	max-width: 200px;
	width:200px;
	border-radius: 10px;
}

.component-left img:hover{
	transform: scale(1.03) rotate(-2deg);
	filter: drop-shadow(0rem 0rem 1rem rgba(255, 255, 255, 0.3));
}

.component-left-box{
	width: 75%;
	text-align: left;
	justify-content: left;
 	align-items: left;
	vertical-align: bottom;
 	padding: 0rem 0rem 0rem 5rem;
}

.component-left-box p{
	min-width:250px;
	text-align: left;
	justify-content: left;
 	align-items: left;
	vertical-align: bottom;
	padding: 0rem 0rem 2rem 0rem;

}

.component-buttons {
  display: flex;
  justify-content: left;
  gap: 1.5rem;
}


/* Banner */
.banner {
  text-align: center;
  padding: 4rem 1rem;
  background: #FF793A;
  color: #fff;
}



.banner h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}


/*/////////////////BUTTONS//////////////////*/

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}


.btn.primary {
  padding: 0.8rem 2rem 0.6rem 2rem;
  background: #fff;
  color: #FF793A;
}

.btn.secondary {
  padding: 0.7rem 2rem 0.6rem 2rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}


.btn-big {
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border: 2px solid#FF793A;
  transition: background 0.3s, transform 0.3s;
}

.btn-big.tertiary {
  padding: 0.8rem 2rem 0.7rem 2rem;
  background: #FF793A;
  color: #fff;
}

.btn-big.tertiary:hover {
  transform: translateY(-3px);
  background: #222;
  border: 2px solid#FF793A;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
  background: #222;
  color: #fff;
}


/*////////////////COPYRIGHT/////////////////*/


.copyrightbanner {
  text-align: center;
  padding: 1rem 1rem;
  background: #222b2d;
}

.copyrightline {
	align-content: center;
	color: #6A827E;
	font-size: 12px;
	padding: 0rem 0rem 0rem 0rem;
}

.bodycopy {
	justify-content: center;
	align-content: center;
	font-size:18px;
	color: #ffffff;
	line-height:26px;
	
}




/*////////////////MOBILE/////////////////*/

/* Responsive Images */
@media (max-width: 768px) {
  
.nav-links.active{
	right:0;
	position:absolute;
	top:70px;
	display:flex;
	}
	
	
.hero-images {
    flex-direction: column;
  }

  .hero-image.left,
  .hero-image.right,
  .hero-images.pond{
    display: none;
  }

  .hero-image.center img {
    max-width: 90%;
	align-content: center;
  }

  .banner h2 {
    font-size: 1.6rem;
  }

.banner-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
	
.component-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

	
.herobanner {
		padding: 1rem 2rem 2rem 2rem;
		line-height: 200%;
}
	
	
.components{
  min-width:320px;
  min-height: 100%;
  display: flex; /* Use flexbox for content alignment */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; /* Adjust text color for readability against the background */
  text-align: center;

}
	
	
.component-left-box{
 	padding: 0rem 0rem 0rem 0rem;
}
	
.component-left-box p{
	min-width: 250px;
	font-size: 20px;
	text-align: center;
	justify-content:  center;
 	align-items: center;
	padding: 2rem 0rem 2rem 0rem;

}

.btn-big.tertiary {
  border-radius: 25px;
  padding: 1.8rem 2rem 1.7rem 2rem;
  font-size: 24px;
  background: #FF793A;
  color: #fff;
}
	
	
	
}
