* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #87ceeb, #0b3d91);
  color: white;

  font-family: Georgia, serif;

  min-height: 100vh;
   background-image: url("Background.png");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   background-attachment: fixed;
  align-items: center;
  margin: 0;   
  padding-top: 20px;
  text-align: center;
}

/* ---------- WEBSITE TITLE ---------- */

.site-header {
  text-align: center;
  margin-bottom: 40px;
}

.site-header h1 {
  font-size: 3rem;
  color: #0b3d91;

  margin-bottom: 10px;
}

.site-header p {
  font-size: 1.2rem;
  color: white;
}

/* ---------- CARD SECTION ---------- */

.card-container {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  gap: 30px;

  width: 100%;
}

/* ---------- INDIVIDUAL CARD ---------- */

.card {
	position: relative;
	
	background-image: url("CardBackground.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
	color: white;
	
  width: 90%;
  max-width: 425px;

  margin: 30px auto;
  padding: 20px;

  border: 1px solid rgba(255,220,180,0.25);
  border-radius: 22px;

  text-align: center;

  box-shadow: 0  0 25px rgba(255, 180, 120, 0.18);
                           

  overflow: hidden;
}

.card::before {
	content: "";
	
	position: absolute;
	inset: 0;
	
	background:
	    linear-gradient(rgba(15, 8, 30, 0.55),
	    rgba(25, 12, 45, 0.65)
	 );
	
	z-index: 0;
	}
	
	.card * {
		position: relative;
		z-index: 1;
		}
 transition: 0.3s ease;
.card:hover {
  transform: translate(-6px) scale(1.02);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3),
                            0 10px 15px rgba(0, 0, 0, 0.2);
}

/* ---------- IMAGE ---------- */

.card-image {
  width: 82%;
  height: auto;
  max-height: 85vh;
  max-width: 425px;
  display: block;

  border-radius: 15px;
  
  margin: 0 auto;
}

.verticle-card {
	max-width: 300px;
	}
	
@media (orientation: landscape) {
	
	.verticle-card {
		max-width: 240px
		}
}

/* ---------- TEXT ---------- */

.card h2 {
  color: #0b3d91;

  font-size: 2rem;

  margin-top: 20px;
  margin-bottom: 20px;
  }
  
  .share-btn {
  	background: linear-gradient(180deg, rgba(70, 35, 110, 0.95),
                  rgba(30, 15, 55, 0.95)
                  );
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 16px;
      
      padding: 14px 28px;
      
      position: relative;
      
      box-shadow:
        0 14px 24px rgba(0,0,0,0.25),
        0 0 18px rgba(255, 200, 140, 0.18);
        
        cursor: pointer;
        
      transition: transform 0.15s ease,
        box-shadow 0.15s ease;
  }
  
  .share-btn::before {
  	content: "";
     
       position: absolute;

       top: 3px;
       left: 6px;
       right: 6px;
       height: 45%;  
       
       border-radius: 12px;
       
       background: rgba(255,255,255,0.25);
       
       pointer-events: none;
}
  .share-btn:hover {
  	transform: scale(1.03);
      background: rgba(70, 35, 110, 0.95);
      color: white;
       box-shadow:
            0 0 20px rgba (255, 210, 140, 0.35);
 }
 
   .share-btn:active {
   	transform: translateY(2px);
   
       box-shadow:
       0 8px 18px rgba(0,0,0,0.25),
       0 0 18px rgba(255, 200, 140, 0.22);
   }
   
   h1 {
   	text-shadow: 0 0 10px rgba(255, 220, 150, 0.7,
             0 0 20px rgba(255, 180, 100, 0.5);
   }
   
   h3 {
   	text-shadow: 3px 3px 8px rgba(0,0,0,0.45);
   }
   
   p {
   	text-shadow: 3px 3px 8px rgba(0,0,0,0.35);
   }
   
   .share-card {
   	max-width: 700px;
   }
   
   nav a {
   	color: #ffdca8;
       text-decoration: none;
       margin: 0 10px;
       font-size: 1.1rem;
       }
       
       nav a:hover {
       	color: white;
       }
       
    
  