/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html,body{
    overflow-x: hidden;
}
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1;
    color: #333;
    background-color: #295b78;
    padding-top: 0px;
    font-size: larger;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}
.nav-buttons a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F2C94C;
    transition: width 0.3s ease;
}
.dropbtn:hover{
    border-color: #F2C94C;
    transform: translateY(-3px);
    box-shadow: 0 0 75px rgba(242, 201, 76, 0.5);
}
.nav-buttons a:hover::after, .dropbtn:hover::after {
    width: 100%;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
    position: relative;
    top: 3px;
}

.nav-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-buttons a, .dropbtn {
    padding: 12px 18px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-buttons a:hover, 
.dropbtn:hover {
   
    transform: translateY(-2px);
}

/* ===== DROPDOWN MENUS ===== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    top: 100%;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #34495e;
    padding: 12px 20px;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
   
    padding-left: 25px;
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-button i {
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-menu-button.active i {
    color: #ffffff;
}

.mobile-menu-button:hover {
    background: #e0e0e0;
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Filter Controls */
.gallery-filter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.filter-select select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: white;
    font-size: 1.2rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

#gallery-search {
    padding: 10px 15px 10px 35px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    width: 250px;
    transition: all 0.3s ease;
    background-color: white;
}

.search-icon {
    position: absolute;
    left: 10px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    fill: #333;
}

/* ===== GALLERY IMAGE FIXES ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 180px; /* صغّر الارتفاع هنا حسب ما تريد */
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    object-position: center;
    transition: transform 0.3s ease;
}


.gallery-item:hover .gallery-image img {
    transform:none;
}

.gallery-content {
    padding: 20px;
}

.gallery-category {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-category.individual {
    background:#F2C94C;
    color: #ffffff;
}

.gallery-category.business {
    background:#56baa4;
    color: #ffffff;
}

.gallery-category.community {
    background: #4268a6;
    color: #ffffff;
}

.gallery-category.international {
    background: #2596be;
    color: #ffffff;
}

.gallery-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.gallery-date {
    color: #c0392B;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

#page-numbers {
    display: flex;
    gap: 10px;
    padding: 0 10px;
}

.page-btn {
    padding: 8px 16px;
    background: #f1f2f6;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn.active {
    background: #F2C94C;
    color: white;
}

.page-btn:hover:not(.active) {
    background: #dfe4ea;
}

.page-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== PROJECT MODAL ===== */
.project-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    max-width: 1000px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 60px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 2px 4px #000000;
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.modal-image-container {
    width: 100%;
    height: 500px;
    padding: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.modal-image-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-details-container {
    padding: 0 15px;
}

.modal-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 15px;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Details Button */
.details-btn {
    background: #F2C94C;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin-top: 15px;
}

.details-btn:hover {
    background: #e6b635;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 201, 76, 0.3);
}

/* Modal Animations */
@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Large Screens */
@media (max-width: 1200px) {
    .navbar {
        padding: 10px 30px;
    }
    
    .nav-buttons {
        gap: 15px;
    }
}

/* Tablets and Mobile Menu - UPDATED TO 1024px */
@media (max-width: 1024px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar {
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    
    .nav-buttons {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #295b78;
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
        display: flex;
    }
    
    .nav-buttons.active {
        transform: translateX(0);
    }
    
    .nav-buttons a, .dropbtn {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        color: white;
        background: rgba(58, 16, 113, 0.1);
        font-size: 18px;
        text-decoration: none;
        display: block;
        cursor: pointer;
        border: none;
    }
    
    .nav-buttons a:hover, 
    .dropbtn:hover {
        background: rgba(58, 16, 113, 0.3);
        
    }
    
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 15px 20px 15px 40px;
        color: #e0e0e0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: left;
    }
    
    .dropdown-content a:hover {
        background: rgba(255,255,255,0.1);
        
    }
    
    .dropdown > .dropbtn::after {
        content: '▼';
        float: right;
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .dropdown.active > .dropbtn::after {
        transform: rotate(180deg);
    }
    
    .dropdown:not(.active) .dropdown-content {
        display: none !important;
    }
    
    /* Gallery filter adjustments */
    .gallery-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-select select {
        padding: 8px 12px;
        font-size: 1rem;
        border-radius: 4px;
    }
    .search-box {
        width: 100%;
    }
    
    #gallery-search {
        width: 100%;
    }
    
    .gallery-page {
        margin-top: 80px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
    .filter-select select {
        padding: 8px 12px;
        font-size: 1rem;
        border-radius: 4px;
    }
    
    /* Responsive image adjustments */
    .gallery-image {
        height: 220px;
        padding: 12px;
    }
    
    .modal-image-container {
        height: 400px;
        padding: 15px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .gallery-page {
        margin-top: 80px;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
     .filter-select select {
        padding: 6px 0px ;
        font-size: 0.9rem;
        border-radius: 3px;
    }
    
    /* Mobile image adjustments */
    .gallery-image {
        height: 200px;
        padding: 10px;
    }

    .modal-image-container {
        height: 300px;
        padding: 10px;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .gallery-image {
        height: 180px;
    }
    
    .modal-image-container {
        height: 250px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .gallery-image {
        height: 280px;
    }
    
    .modal-image-container {
        height: 550px;
    }
}

/* Modal Responsive Styles */
@media (max-width: 1024px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
    
    .close-modal {
        top: 0px;
        right: 0px;
        font-size: 50px;
        width: 35px;
        height: 35px;
        font-weight: bold;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
    }
    
    .close-modal {
        top: 1px;
        right: 1px;
        font-size: 50px;
        width: 30px;
        height: 30px;
        font-weight: bold;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px 15px;
        position: relative;
    }
    
    .modal-image-container {
        margin-top: 25px;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        color: #333;
        background: rgba(255,255,255,0.9);
        width: 10px;
        height: 10px;
        font-size: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        text-shadow: none;
        font-weight: bold;
    }
    
    .close-modal:hover {
        background: #f1f1f1;
        color: #000;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
}

/* ===== CAST BUTTON STYLES (Refined) ===== */
.cast-button {
    background: linear-gradient(135deg, #F2C94C 0%, #F2994A 100%);
    color: #2c3e50 !important;
    padding: 6px 10px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 5px rgba(242, 201, 76, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.cast-button img {
    width: 22px;
    height: auto;
    display: block;
    margin-bottom: 2px;
}

.cast-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cast-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px #f2c94c80;
    color: #2c3e50;
}

.cast-button:hover::before {
    left: 100%;
}

.cast-button:active {
    transform: translateY(0);
}

/* ===== CAST BUTTON - MOBILE FIX (LOGO NEXT TO TEXT) ===== */
@media (max-width: 1024px) {
    .nav-buttons .cast-button {
        background: none;
        background-color: rgb(58, 16, 113, 0.1);
        color: #ffffff !important;
        border: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 18px;
        text-transform: none;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        flex-direction: row;
    }

    .nav-buttons .cast-button img {
        width: 26px !important;
        height: auto !important;
        filter: brightness(0) invert(1) !important;
        margin-left: 8px !important;
    }
    

    .nav-buttons .cast-button:hover {
        background: rgba(58, 16, 113, 0.3);
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 1280px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar {
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    
    .nav-buttons {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #295b78;
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
        display: flex;
    }
    
    .nav-buttons.active {
        transform: translateX(0);
    }
    
    .nav-buttons a, .dropbtn {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        color: white;
        background: rgba(58, 16, 113, 0.1);
        font-size: 18px;
        text-decoration: none;
        display: block;
        cursor: pointer;
        border: none;
    }
    
    .nav-buttons a:hover, 
    .dropbtn:hover {
        background: rgba(58, 16, 113, 0.3);
        
    }
    
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 15px 20px 15px 40px;
        color: #e0e0e0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: left;
    }
    
    .dropdown-content a:hover {
        background: rgba(255,255,255,0.1);
        
    }
    
    .dropdown > .dropbtn::after {
        content: '▼';
        float: right;
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .dropdown.active > .dropbtn::after {
        transform: rotate(180deg);
    }
    
    .dropdown:not(.active) .dropdown-content {
        display: none !important;
    }
}

@media (max-width: 1280px) {
    .nav-buttons .cast-button {
        background: none;
        background-color: rgb(58, 16, 113, 0.1);
        color: #ffffff !important;
        border: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 18px;
        text-transform: none;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        flex-direction: row;
    }

    .nav-buttons .cast-button img {
        width: 26px !important;
        height: auto !important;
        filter: brightness(0) invert(1) !important;
        margin-left: 8px !important;
    }
    

    .nav-buttons .cast-button:hover {
        background: rgba(58, 16, 113, 0.3);
        transform: none;
        box-shadow: none;
    }
}

/* ===== MODAL CAROUSEL WITH ARROWS & COUNTER ===== */
.modal-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.modal-carousel-slide.active {
    opacity: 1;
}

.modal-carousel-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Modal Navigation */
.modal-carousel-nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    width: 100%;
}

.modal-arrow {
    background: #F2C94C;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.modal-arrow:hover {
    background: #e6b635;
    transform: scale(1.1);
}

.modal-counter {
    background: #2c3e50;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}



/* Modal image container adjustments */
.modal-image-container {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.modal-content .modal-image-container + .modal-carousel-nav {
    border-radius: 0 0 8px 8px;
}

/* Responsive adjustments for carousels */
@media (max-width: 768px) {
    .gallery-carousel-nav {
        gap: 10px;
        padding: 10px;
    }
    
    .gallery-arrow {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .gallery-counter {
        font-size: 0.8rem;
        padding: 3px 10px;
        min-width: 45px;
    }
    
    .modal-carousel-nav {
        gap: 15px;
         padding: 12px;
    }
    
    .modal-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .modal-counter {
        font-size: 0.9rem;
        padding: 5px 12px;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .modal-image-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 200px;
    }
    
    .modal-image-container {
        height: 300px;
    }
}

/* ===== LOADING STATE ===== */
.loading-message {
    text-align: center;
    padding: 100px 100px 100px 100px;
    color: #ffffff;
    font-size: 1.2rem;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #F2C94C;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}
.error-message {
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.error-message h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.error-message p {
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 1.1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #F2C94C;
    color: #2c3e50;
}

.btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}