/*
Theme Name: UnmappedPath
Author: Lucky Singh
Description: Custom Travel Blog Theme
Version: 1.0
*/

:root {
  --primary-color: #8f5252;
}


body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.navbar-nav li a {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    text-transform: capitalize;
}

.custom-logo {
    display: inline-block;
    width: 42px;
    height: auto;
}

.theme-color{
    background-color: var(--primary-color);
}

.hero-section {
    min-height: 90vh;
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    letter-spacing: 1px;
}

.hero-section .btn {
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
}