@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@font-face {
    font-family: 'Hustlebright';
    src: url('../fonts/hustlebright.ttf') format('truetype'); 
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	background-color: #2e2015;
	color: white;
}

a {
	text-decoration: none;
	color: white;
}

/**---- Header ----**/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logo {
    cursor: pointer;
    font-size: 15px;
}

.nav-links {
    list-style: none;
    cursor: pointer;
}

.nav-links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav-links li a {
    transition: all 0.3s ease 0s;
}

.menu {
    display: none;
}

/**---- Featured Artworks ----**/
.artworks-title {
	color: #f59022;
	text-align: center;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 40px;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 50px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-right: 10%;
  padding-left: 10%;
}

.art-card {
  width: 280px;
  margin: 10px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}

.art-card img {
  width: 200px;
  height: auto;
  border-radius: 5px;
}

.art-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.art-card p {
  margin-top: 5px;
  font-size: 14px;
}

.more-button {
	text-align: center;
	margin-bottom: 20px;
}

.more-button button {
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Profile Section */

#profile {
    background-image: url(../images/bg-profile.png);
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
}

.profile {
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.profile-div {
    float: left;
    width: 50%;
}

.profile h1 {
    color: #f6911d;
    font-size: 70px;
    font-family: 'Hustlebright';
}

.profile h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 20px;
}

.profile p {
    margin-top: 20px;
}

.vinyas-img {
    float: right;
    max-width: 50%;
}

.vinyas-img img {
	float: right;
}

.social-icons {
    margin-top: 20px;
    clear: both;
    float: left;
    cursor: pointer;
}

.social-icons ul {
    list-style: none;
    text-align: center;
}

.social-icons li {
    display: inline;
    margin: 0 10px;
}

.social-icons i {
    font-size: 24px;
    background-color: #c4996c;
    padding: 8px;
    border-radius: 20px;
}

.portfolio-button button {
    padding: 10px 20px;
	font-size: 16px;
	border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

/**---- Text Content ----**/

.paragraph {
	margin-top: 50px;
	padding-left: 20%;
	padding-right: 20%;
	margin-bottom: 50px;
}

.paragraph p {
	font-size: 30px;
}

.paragraph span {
	color: #f6911d;
	font-size: 50px;
	font-family: 'Hustlebright';
}

/**---- Contact Section -----**/

.contact {
	margin-top: 20px;
	margin-right: 20%;
	margin-left: 20%;
}

.contact h2 {
	color: #f6911d;
	text-align: left;
	font-size: 50px;
	margin-bottom: 50px;
	font-family: 'Hustlebright';
}

.contact-form input {
	width: 100%;
	margin-bottom: 20px;
	padding: 10px 10px;
	background: transparent;
	border: none;
	border-bottom: 1px solid white;
	color: white;
}
.contact-form textarea {
	width: 100%;
	min-height: 100px;
	margin-top: 5px;
	background: transparent;
	border: 1px solid white;
	padding: 10px 10px;
	color: white;
}

.contact-form {
	text-align: left;
}

.contact-form button {
	padding: 10px 20px;
	float: right;
	margin-top: 20px;
	border-radius: 10px;
}

/*-------- Footer CSS --------*/

footer {
	background-color: #574d44;
}

.footer {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
    bottom: 0;
    font-size: 16px;
    color: #ffead3;
}

.footer-text {
    color: #f59022;
    font-size: 16px;
}

.footer-text:hover {
    opacity: 90%;
}

/** Media Query **/
@media screen and (max-width: 768px) {
    .artworks-title {
        font-size: 30px;
    }

    .profile-div {
        width: 100%;
    }
    .profile h1 {
        font-size: 40px;
        text-align: center;
    }

    .profile h3 {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .vinyas-img {
        text-align: center;
    }

    .vinyas-img img {
        width: 200px;
        margin-left: 150px;
    }
    .paragraph p {
        font-size: 18px;
    }

    .paragraph span {
        font-size: 35px;
    }

    .nav-links {
        display: block;
    }

    .nav-links ul li {
        text-align: right;
    }

    .nav-links ul li:nth-child(2) {
        margin-top: 20px;
    }
    #profile {
        background-image: url(../images/bg-profile.png);
        min-height: 100vh;
    }
}