﻿/*  LAYOUT STYLES FOR NISD ANGEL TREE SITE  */

@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Pangolin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');



/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:Playfair;
  line-height: 1.5;
}

/* Banner base styles */
.container{
	  display: flex;
}


.banner {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: white;
}
.halfbanner {
  width: 50%;
  min-height: 400px;
  max-width: 600px;
  align-items: center;
  vertical-align: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
}
/* Solid color banners */
.topper{
  background-color: #811327; 
}

.color-banner {
  background-color: #811327; 
}

.alt-color {
  background-color: #b73a45; 
  display: block;
}
.white {
  background-color: snow; 
  color: #811327;
  font-size: 2rem;
}
/* Image banners */
.image-banner {

}
.footer{
  max-height: 50px;
  background-image:url(../images/banner-greenpie.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Responsive text */
.banner h1, .banner h2 {
  font-size: 2rem;
   display: block;
  
}

@media (max-width: 600px) {
  .banner h1, .banner h2 {
    font-size: 1.3rem;
	display: block;
  }
}

body{
	background-color:#811327;
	font-family:Playfair;
	font-weight: 400;
}


#container{
	background:#888;
	width:900px;
}
#wrapper-details{
	background:#fff;
	width:300px;
	margin-top:5px;
	padding:10px;
	height:460px;
	font-size:24pt;
}
#wrapper-long{
	background:#fff;
	width:1000px;
	height:2000px;
	margin:0 auto;
	min-height:580px;
}

/*  STYLES FOR LOGO  */
#logo img{height:100px;}

/* STYLES FOR HOME ANGELS AND TRUCK */
#home-elfs{
	width:900px;
	padding-top:20px;
	border: 0px solid red;
	font-size:18pt;
}
#home-elfs-small{
	width:900px;
	padding-top:-90px;
	border: 0px solid red;
	font-size:18pt;
}
#girlElf{
	border:0px solid green;
	width:200px;
	position:absolute;
	margin-left:50px;
}
#truck{
	border:0px solid yellow;
	width:400px;
	position:absolute;
	margin-left:250px;
}
#boyElf{
	border:0px solid blue;
	width:200px;
	position:absolute;
	margin-left:650px;
}

#btnAdopt, #btnReturn{
	height:50px;
	margin-top:280px;
}
#btnAdopt{
	padding-right:20px;
}
#btnReturn {
	padding-left:20px;
}


/*  STYLES FOR ANGELS LEFT AREA  */
#angels-left{
	margin-left:10px;
	margin-top:275px;
}
#girlsleft, #boysleft{
	position:absolute;
	height:102px;
	width:103px;
	text-align:center;
	font-size:24pt;
	padding-top:30px;
}
#girlsleft{
	background-image:url(../images/angels-g.png);
}
#boysleft{
	background-image:url(../images/angels-b.png);
	margin-left:105px;
}
#total{
	position:absolute;margin-top:135px;font-size:18pt;
}


/*  STYLES FOR LINKS  */
#links{
	position:absolute;
	top:530px;
	margin-left:20px;
}
#links a:link,
#links a:hover,
#links a:visited{
	color:#a80532;

}

/*  STYLES FOR CONTENT */
#content, 
#content-home{}
#content-home{
	text-align:center;
}
h1{
	font-size:16pt;
}
h3{
	font-size:13pt;
}
#content td .smalltext{
	font-size:8pt!important;
	
}
.pagebreak{
	page-break-after:always;
}
.btnSubmit{
	border:1px solid #811327;
	background-color:forestgreen;
	color:white;
	font-size:12pt;
}
select{
	font-size:10pt;
	margin-left:5px;
	color:#001B49;
	background-color:white;
	border:1px solid #811427;
}
a,
a:hover,
a:visited{
  color: #811327;
    background: linear-gradient(to right, #811327, green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: bold;

}

a:hover::after {
  content: " ❄️";
  position: absolute;
  right: -20px;
  top: 0;
  transition: opacity 0.3s ease;
}

.styled-form {
	
    background: #F5F5F5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 390px;
}

.styled-form label {
 
    display: block;
    font-weight: bold;
	text-align:left;
}

.styled-form input,
.styled-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.styled-form fieldset {
    border: none;
    margin-bottom: 10px;
}

.styled-form legend {
    font-weight: bold;
    margin-bottom: 10px;
}

.styled-form input[type="radio"] {
    margin-right: 3px;
}

.styled-form button {
    width: 95%;
    padding: 10px;
    background-color: #811327;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.styled-form button:hover {
    background-color: #BADA55;
}

.post-it {
  position: fixed;
  top: 100px;
  right: 40px;
  width: 200px;
  padding: 15px;
  background: #fff8b0;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  border: 1px solid #e0c000;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  transform: rotate(-3deg);
  z-index: 1000;
  border-radius: 8px;
}


#content-details{
	

	font-size:14pt;
}

.pagebreak{
	page-break-after:always;
}


  #confirmModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
  }

  #confirmBox {
    background: white;
    padding: 20px;
    margin: 15% auto;
    width: 300px;
    border-radius: 8px;
    text-align: center;
  }

  #confirmBox p {
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .confirm-btn {
    margin: 0 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .confirm-yes { background-color: #4CAF50; color: white; }
  .confirm-no { background-color: #f44336; color: white; }
