/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set a basic font and background color */
body {
    font-family: Arial, sans-serif;
    color: #000;
    line-height: 1.6;
	background: #e7e7e7;
}
a{
    color: #a3a3a3;
    text-decoration: none;
}

img{max-width:100%;}

.wraper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	
}
.main .wraper {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: -130px;
	padding-bottom:50px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

/* Style the header */
header {
	background: #000;
    color: white;
    padding:40px 0 140px;
    text-align: center;
}

.logo{max-width:250px; margin:0 auto;}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* Section styling */
section {
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
}
section h2 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;	
  font-size: 1.8rem; 
  margin-bottom: 10px;.
}
 

p strong {
	font-family: "Merriweather", serif;
	  font-weight: 700;
	  font-style: normal;
    margin-top: 20px;
    margin-bottom: 5px;
    display: block;
    font-size: 22px;
}


.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 10px 0;
}

.icon {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    color: white;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
    width: 18px;
    height: 18px;
    line-height: 20px;
}

.icon.facebook {
    background-color: #3b5998; /* Facebook color */
}

.icon.twitter {
    background-color: #1da1f2; /* Twitter color */
}

.icon.instagram {
    background-color: #e1306c; /* Instagram color */
}

.icon.linkedin {
    background-color: #0077b5; /* LinkedIn color */
}

.icon:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}


.one-half {
    width: 48%;
    display: inline-block;
}
.one-whole {width:99%;}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
	color:#fff;
}

section#contact {
    background-color: #000;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
	    border-radius: 20px;
}
section#contact h2{font-size:2.5rem;}
section#contact h2, section#contact p{color:#fff;}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
	border-bottom: 4px solid #a3a3a3;
    box-sizing: border-box; /* Ensures padding is included in total width/height */
}
#message {min-height: 120px;}

input[type="submit"] {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 15px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
	font-weight:bold;
	border-bottom: 4px solid #a3a3a3;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #4cae4c;
}

/* Style the footer */
footer {
    text-align: center;
    padding: 10px 0;
    background: #000;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
.msg {
    text-align: center;
    margin-top: 10px;
    display: block;
    color: green;
}
@media only screen and (min-width: 600px) {
.one-half.right {margin-left: 2%;}
}
@media only screen and (max-width: 600px) {
	.one-half {width: 99%;}	
	p strong{font-size:18px;}
	section h2{font-size:1.5rem;}
	section {padding: 20px 0;margin-top: 0px;margin-bottom: 0px;}
	.main .wraper{max-width: 80%;}
	section#contact h2 {font-size: 1.8rem;    margin-bottom: 0;}
}