@font-face {
    font-family: "Montserrat-Regular";
    src: url("/fonts/Montserrat-Regular.otf");
}

@font-face {
    font-family: "Montserrat-Light";
    src: url("/fonts/Montserrat-Light.otf");
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("/fonts/Montserrat-Bold.otf");
}

@font-face {
    font-family: "Montserrat-Hairline";
    src: url("/fonts/Montserrat-Hairline.ttf");
}

@font-face {
    font-family: "Champagne-Limousines-Bold";
    src: url("/fonts/Champagne-Limousines-Bold.ttf");
}

@font-face {
    font-family: "Champagne-Limousines";
    src: url("/fonts/Champagne-Limousines.ttf");
}
*{

}
/* Base Styles */
body {
    font-family: "Montserrat-Light";
    font-size: 12px;
    color: #757575;
    line-height: 1;
  
   
    min-height: 100vh;
}

a {
    color: #757575;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

    a:hover, a:active, a:focus {
        text-decoration: none;
        -moz-transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

/* Banner styles */
.background {
    background: url('/images/background.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
   
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Radzen Overrides */
.rz-card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rz-button.rz-primary {
    background-color: #ff6600 !important;
    border-color: #ff6600 !important;
}

    .rz-button.rz-primary:hover {
        background-color: #e05a00 !important;
        border-color: #e05a00 !important;
    }

.rz-button.rz-secondary {
    background-color: #6c757d !important;
}

    .rz-button.rz-secondary:hover {
        background-color: #5a6268 !important;
    }

.rz-button.rz-danger {
    background-color: #f44336 !important;
}

    .rz-button.rz-danger:hover {
        background-color: #d32f2f !important;
    }

.rz-button.rz-success {
    background-color: #4CAF50 !important;
}

    .rz-button.rz-success:hover {
        background-color: #388E3C !important;
    }

/* Typography */
.heading-light, .text-light {
    font-family: "Montserrat-Light";
    line-height: 2;
}

.heading-regular, .text-regular {
    font-family: "Montserrat-Regular";
}

.heading-bold, .text-bold {
    font-family: "Montserrat-Bold";
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: 500;
    color: white;
    font-family: "Montserrat-Regular";
}

/* Header Styles */
.main-header {
    padding: 20px 0;
    position: relative;
    z-index: 99999;
    background-color: #242424;
}

.fix-header .main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

/* Event Card Styling */
.event-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .form-control:focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.form-group {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    letter-spacing: 1px;
    text-decoration: none;
    background: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

    .btn-primary:hover {
        background-color: #e05a00;
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

    .btn-secondary:hover {
        background-color: #5a6268;
    }

/* Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Confirmation Pages */
.confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.confirmation-card {
    max-width: 600px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
}

/* Footer */
.footer-wrapper {
    background-color: #1a265c;
    padding-bottom: 24px;
    width: 100%;
    float: left;
    margin-top: 50px;
}

    .footer-wrapper .foooter-container {
        background-color: #fff;
        padding: 55px 0 0;
        line-height: 2;
    }

/* Media Queries */
@media (max-width: 991px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        max-width: 100%;
    }
}

.content-area {
    float: left;
    margin: 0 -25% 0 0;
    width: 100%;
}

.site-main {
    margin: 0 25% 0 0;
}

.site-content .widget-area {
    float: right;
    overflow: hidden;
    width: 25%;
}

.site-footer {
    clear: both;
    width: 100%;
}
