/* ==========================================================================
   Base Styles
   ========================================================================== */
.container {}

.min-page-height {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

::selection {
    background-color: #000;
    color: #fff;
}

h1, h2, h3 {
    font-weight: 600;
    font-style: normal;
    font-family: "Montserrat", sans-serif;
}

p {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6em;
    font-weight: 400;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */
nav {
    background: transparent;
}

.navbar {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 0;
    z-index: 999;
    margin-bottom: 0px !important;
}

.navbar-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

#navbar-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.icon-bar {
    background-color: black;
}

.menuItems {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.menuItems li {
    margin: 10px;
}

.menuItems li a {
    text-decoration: none;
    color: #1a4f3c;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menuItems li a::before {
    content: attr(data-item);
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    color: #FC0005;
    white-space: nowrap;
    overflow: hidden;
    transition: width 0.5s ease-in-out;
    z-index: 1;
}

.menuItems li a:hover::before {
    width: 100%;
}

.menuItems li a:hover {
    color: #FC0005;
    text-shadow: 0 0 2px #FC0005;
}

.menuItems li.mainMenuSelected a {
    color: #FC0005 !important;
    font-weight: bold;
}

.center-navbar {
    width: 100%;
    text-align: center;
}

.center-navbar > li {
    display: inline-block;
    float: none;
}

.navHeader {
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
    margin: auto;
    padding: 0;
}

.navbar .navbar-header,
.navbar .collapse.navbar-collapse.in,
.navbar .navbar-nav > li > div {}

.navbar .navbar-nav > li {
    margin-top: 10px;
}

.navbar .navbar-nav > li > a {
    color: #082023;
    font-weight: 800;
    background-color: transparent;
    font-size: 20px;
    padding: 8px 20px;
    text-decoration: none;
}

.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus {
    text-decoration: underline;
    text-decoration-color: #FC0005;
    background-color: transparent;
}

.navbar .navbar-nav > li.mainMenuSelected > a {
    text-decoration: underline;
    text-decoration-color: #FC0005;
}

.navbar-toggle {
  margin-left: auto;
  margin-right: 0px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: url('https://cdn.hsystemcontent.com/images/101220.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 60px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 1.2s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInFromBottom 1.2s ease-out 0.6s both;
}

.hero-cta {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1.5s ease-out 0.9s both;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero {
    background: linear-gradient(45deg, #34c759, #28a745);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.6);
    color: white;
    text-decoration: none;
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-hero:hover {
    background: white;
    color: #1a4f3c;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile Hero Section */
.hero-section-mobile {
    background-image: url('https://cdn.hsystemcontent.com/images/101252.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

@media (max-width: 767px) {
    .hero-section-mobile .hero-title {
        font-size: 2.5rem;
    }

    .hero-section-mobile .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-glass {
        font-size: 2rem;
        padding: 10px 20px;
    }
}


/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 15px;
    height: 250px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    transform: none;
    transition: none;
}

/*.gallery-item:hover .gallery-overlay {*/
/*    transform: translateY(0);*/
/*}*/

/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer.footer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
    font-family: "Montserrat", sans-serif;
    margin-top: 10px;
}

footer.footer a:hover {
    color: #FC0005 !important;
    text-decoration: none;
    text-shadow: 0 0 5px #FC0005;
}

/* ==========================================================================
   Section Titles
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Button Glass Style
   ========================================================================== */
.btn-glass {
    background: rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.94);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromTop {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-hero { width: 250px; }
    .features-section,
    .gallery-section,
    .contact-section { padding: 60px 0; }
    #navbar-holder { flex-direction: column; }
    footer.footer .text-right { text-align: center !important; margin-top: 10px; }
    .menuItems { flex-direction: column; align-items: center; }
}

@media (max-width: 767px) {
    .navbar .navbar-nav > li > a {
        font-size: 22px;
        padding: 5px 10px;
        margin: 30px 3vw;
        text-align: center;
    }

    .navbar-right { text-align: right; }

    .menuItems li.mainMenuSelected {
        background-color: rgba(52, 199, 89, 0.15);
        border-radius: 5px;
        padding: 5px;
    }
}

/* ==========================================================================
   Well Box Style
   ========================================================================== */
.well {
    /*position: relative;*/
    background: rgba(242, 242, 242, 0.32);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}
