/**
* Template Name: Gp
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
  
html {
  scroll-padding-top: 80px; /* equal to fixed navbar height */
}

  
 /* cookie consent */
  
  <style>
/* 1. Define Custom Colors using CSS Variables */
:root {
    --cookie-primary: #ffc451; /* Your main accent color */
    --cookie-dark: #212529;   /* Bootstrap's default dark */
    --cookie-darker: #1a1a1a; /* A slightly darker black/grey */
    --cookie-text-light: #f8f9fa; /* Off-white for contrast */
}

/* 2. Apply Custom Background and Text Colors to the Modal */
#cookieConsentModal .modal-content {

    color: var(--cookie-text-light);
    border: 1px solid var(--cookie-primary); /* Yellow border */
}

/* 3. Style the Modal Header */
#cookieConsentModal .modal-header {
    background-color: var(--cookie-darker);
    border-bottom: 1px solid var(--cookie-primary);
}

/* 4. Style the Buttons (The most critical part!) */
#acceptAllBtn, #savePreferencesBtn {
    /* The main action button (Accept All / Save) */
    background-color: var(--cookie-primary);
    border-color: var(--cookie-primary);
    color: var(--cookie-dark); /* Dark text for contrast on yellow */
    font-weight: bold;
}

#acceptAllBtn:hover, #savePreferencesBtn:hover {
    background-color: #f7b43a; /* Slightly darker hover */
    border-color: #f7b43a;
}

#rejectAllBtn {
    /* The secondary/neutral action button (Reject) */
    background-color: var(--cookie-dark);
    border-color: #6c757d; /* Standard Bootstrap grey border */
    color: var(--cookie-text-light);
}

/* 5. Style Links and Switch Colors */
#cookieConsentModal a {
    color: var(--cookie-primary) !important;
}

.form-check-input:checked {
    background-color: var(--cookie-primary);
    border-color: var(--cookie-primary);
}
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 196, 81, 0.5); /* Yellow focus ring */
}
</style>
  
  
  
  /* 1. The smooth transition setup */
.btn-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 2. The actual hover state */
.btn-hover-effect:hover {
    transform: scale(1.05); /* Grows 5% larger */
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Shadow becomes deeper/softer */
    filter: brightness(1.05); /* Makes the gold color slightly brighter/shinier */
}
  
  <!-- CONTACT -->


/* Apply this to all sections or elements with an ID that are targets of your links */
:target {
  /* Set this value to be equal to or slightly larger than the height of your fixed navbar */
  scroll-margin-top: 80px; 
}

        /* Custom Black and Gold Theme CSS */
        :root {
            --bs-gold: #ffc451;
            --bs-dark-gray: #1f2937;
            --bs-card-bg: #111827;
        }

        .text-gold { color: var(--bs-gold) !important; }
        .bg-gold-accent { background-color: var(--bs-gold) !important; }
        .border-gold { border-color: var(--bs-gold) !important; }

        /* Custom styling for the service boxes for the black/gold theme */
        .course-card {
            background-color: var(--bs-card-bg);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255, 196, 81, 0.1);
            /* Add shadow similar to Tailwind's shadow-xl, but with custom gold glow */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(255, 196, 81, 0.8); /* Enhanced glow on hover */
            border-color: var(--bs-gold);
        }
        
        /* Modal specific styling for dark theme and gold accents */
        .modal-content {
            background-color: var(--bs-dark-gray); /* Use the slightly lighter dark color for the modal body */
            color: #e5e7eb;
        }

        /* Utility for clean font */
        body {
            font-family: 'Inter', sans-serif;
        }

     <!-- COURSES -->
        /* Primary Theme Colors */
        :root {
            --form-bg: #111111; /* Deep Black */
            --form-text: #FFFFFF; /* White for general text */
            --form-accent: #FFD700; /* Gold */
            --form-shadow: rgba(255, 215, 0, 0.3);
        }

        /* Container Styling */
        .gold-form-container {
            background-color: var(--form-bg);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 0 20px var(--form-shadow);
            max-width: 600px;
            margin: 40px auto; /* Centering and spacing */
        }

        .gold-form-container h2 {
            color: var(--form-accent);
            text-align: center;
            margin-bottom: 25px;
            font-weight: 700;
        }

        /* Input Styling */
        .gold-form-container .form-control,
        .gold-form-container .form-control:focus {
            background-color: #222222; /* Slightly lighter black for input background */
            color: var(--form-text);
            border: 1px solid #444444;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .gold-form-container .form-control:focus {
            border-color: var(--form-accent);
            box-shadow: 0 0 0 0.25rem var(--form-shadow);
            background-color: #2c2c2c;
        }

        /* Labels and Text */
        .gold-form-container .form-label {
            color: var(--form-text);
            font-weight: 500;
            margin-bottom: 4px;
        }

        /* Button Styling */
        .gold-form-container .btn-gold {
            background-color: var(--form-accent);
            color: var(--form-bg);
            font-weight: bold;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: background-color 0.3s ease, transform 0.1s ease;
            width: 100%;
        }

        .gold-form-container .btn-gold:hover {
            background-color: #e0b400; /* Darker gold on hover */
            color: var(--form-bg);
            transform: translateY(-1px);
        }

        .gold-form-container .btn-gold:active {
             background-color: #b89300;
             transform: translateY(0);
        }

        /* Success Message Styling */
        #form-success-message {
            background-color: rgba(255, 215, 0, 0.1);
            color: var(--form-accent);
            border: 1px solid var(--form-accent);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }

<!-- CONTACT -->

/* Apply this to all sections or elements with an ID that are targets of your links */
:target {
  /* Set this value to be equal to or slightly larger than the height of your fixed navbar */
  scroll-margin-top: 80px; 
}

        /* Custom Black and Gold Theme CSS */
        :root {
            --dark-bg: #111111;
            --form-bg: #1a1a1a;
            --gold-accent: #FFD700; /* Pure Gold */
            --light-text: #f0f0f0;
            --border-color: #333333;
        }

        /* --- FIX: Apply styling to the container, not the body --- */
        /* Body styling is now removed to prevent affecting the rest of the website. */
        /* Container for the main content area - now holds the scoped theme */
        .content-container {
            background-color: var(--dark-bg);
            color: var(--light-text);
            font-family: 'Inter', sans-serif;
            min-height: 100%;
            /* Increased padding for better look on wide screens */
            padding: 40px; 
            padding-top: 70px;
            padding-bottom: 70px;
            /* Added max-width, auto margins for centering, and margin-bottom */
            max-width: 1200px; /* Max width applied to the container */
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px; /* Margin at the bottom for the footer */

            border-radius: 12px;
            
        }

        /* Responsive padding for smaller screens */
        @media (max-width: 576px) {
            .content-container {
                padding: 15px; 
                padding-top: 50px;
                padding-bottom: 70px;
                margin-bottom: auto;
                border-top-left-radius: 12px;
                border-top-right-radius: 12px;
                border-bottom-left-radius: 0px;
                border-bottom-right-radius: 0px;
            }
        }
        /* -------------------------------------------------------- */


        /* Styling for the Form Card */
        .booking-card {
            background-color: var(--form-bg);
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 12px;
            /* Flex-grow 1 ensures the card fills the height of the column on desktop */
            flex-grow: 1;
        }

        /* Custom style for form inputs */
        .form-control, .form-select {
            background-color: #222222;
            color: var(--light-text);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-control:focus, .form-select:focus {
            background-color: #222222;
            color: var(--light-text);
            border-color: var(--gold-accent);
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.3); /* Gold glow */
        }

        /* Custom style for checkbox labels */
        .form-check-label {
            color: var(--light-text);
            font-weight: 300;
        }

        /* Styling the checkboxes (Bootstrap 5) */
        .form-check-input:checked {
            background-color: var(--gold-accent);
            border-color: var(--gold-accent);
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.3);
        }

        /* Styling for the submit button */
        .btn-gold {
            background-color: #ffc451;
            color: var(--dark-bg); /* Dark text on gold button */
            border: none;
            border-radius: 8px;
            font-weight: bold;
            padding: 10px 20px;
            transition: background-color 0.3s, transform 0.1s;
        }

        .btn-gold:hover {
            background-color: #e6c500; /* Slightly darker gold on hover */
            transform: translateY(-1px);
            color: var(--dark-bg);
        }

        .btn-gold:active {
            background-color: #ccb000;
        }

        h2 {
            color: #ffc451;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Map Styling - Uses flex on desktop to match height */
        .map-container {
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            /* Sets the iframe to fill the height */
            height: 100%;
        }
        
        /* Responsive adjustments for the map container when stacked */
        @media (max-width: 991.98px) {
            .map-container {
                height: 300px; /* Fixed height for mobile */
                margin-top: 20px;
            }
        }
        
        <style>
  :root {
    --gold: #ffc451;
  }

  /* 1. Set the background to pure white */
  .perks-section {
    background-color: #fff;
  }

  /* 2. Apply the gold accent color to the icons */
  .perks-section .count-box i {
    color: var(--gold);
  }

  /* 3. Use flexbox for modern icon-text alignment */
  .perks-section .count-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
  }

  .perks-section .count-box i {
    font-size: 36px;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .perks-section .count-box p {
    margin-bottom: 0;
  }

  /* 4. Ensure the image covers its container */
  .perks-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the container without stretching */
    min-height: 400px; /* Good height on mobile */
    border-radius: 25px;
  }
  
</style>
