/*
Theme Name: One barbar Theme
Theme URI: https://example.com/
Author: Your One Barbar
Author URI: https://example.com/
Description: A custom theme built from scratch.
Version: 1.0
License: GNU General Public License v2 or later
Tags: custom-theme
Text Domain: mycustomtheme
*/

body {
    font-family: "Familjen Grotesk", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    color: black !important;
}

/* Navigation styles */
.nav-text {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    font-family: "Roboto", Sans-serif;
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-text:hover {
    color: #BF9B30 !important;
}

.nav-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    background-color: #BF9B30;
    transition: width 0.3s ease;
}

.nav-text:hover::after {
    width: 100%;
}

.login-button .onebarbar-button {
   background-color: #BF9B30;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: inherit;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
}

.onebarbar-button:hover {
    background-color: black;
    transition: all 0.3s ease-in-out;
}

/* Banner styles */
.home-page-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background: black; /* fallback color */
}

.home-page-banner h1 {
    font-family: "Roboto", Sans-serif;
    font-size: 64px !important;
    font-weight: 700;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .home-page-banner h1 {
        font-size: 3rem;
    }
}


/* Home Page Second Section */
.second-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.second-section h2 {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
}

.second-section p {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.second-section .onebarbar-button {
    background-color: #BF9B30;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: inherit;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
}

.second-section .onebarbar-button:hover {
    background-color: black;
    transition: all 0.3s ease-in-out;
}

/* Third Section */
.third-section {
    margin-bottom: 100px;
    background-color: black;
    color: #FFFFFF;
    padding: 40px;
    text-align: center;
}

.third-section img {
   width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px 20px 20px 20px;
}

.third-section .onebarbar-button {
    background-color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: inherit;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    color: #000000;
}

.third-section .onebarbar-button:hover {
    background-color: #BF9B30;
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

/* Fourth Section */
.fourth-section {
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 50px 0;
}

.fourth-section h2{
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 50px;
}

.card-container {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.card-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.card-info h3 {
    margin: 10px 0;
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #BF9B30;
}

/* Hover effect */
.card:hover .card-info {
    bottom: 0;
}

.card:hover .card-img img {
    opacity: 0.5;
}

/* Location Section */
.location-section {
    background-color: black;
    color: #FFFFFF;
    margin-top: 100px;
    padding: 50px 0;
}

.location-section .map-container iframe {
    width: 100%;
    border-radius: 20px;
}


.footer-links a {
  color: #00000099;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:active {
  color: #daa520;
}