body {
    background-color: #000;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    /* Uncomment the lines below to add the smoke background effect */
    /*
    background: url('https://media.giphy.com/media/1hAxQ2vPUWFD0PZX6H/giphy.gif') repeat;
    background-size: cover;
    animation: moveSmoke 30s linear infinite;
    */
}

/* Smoke background animation */
@keyframes moveSmoke {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

.container {
    margin-top: 50px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header img {
    max-width: 250px;
}

.header h1 {
    color: #27a544; /* Cannabis green */
}

.btn-custom {
    background-color: #27a544; /* Cannabis green */
    color: #fff;
    border: none;
    box-shadow: 0 0 10px #27a544;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #218d3b; /* Slightly darker shade */
    box-shadow: 0 0 20px #27a544;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.btn-follow, .btn-call, .btn-email {
    margin: 10px;
}

.section {
    border: 2px solid #27a544;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px #27a544;
}

.justify {
    text-align: justify;
}

.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    opacity: 0.7;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
}

.glowing-bar {
    height: 2px;
    background: #27a544; /* Cannabis green */
    box-shadow: 0 0 10px #27a544, 0 0 20px #27a544, 0 0 30px #27a544;
    margin: 20px 0;
}

.btn-info {
    background-color: #27a544; /* Cannabis green */
    color: #fff;
    border: none;
    box-shadow: 0 0 10px #27a544;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.btn-info:hover {
    background-color: #218d3b; /* Slightly darker shade */
    box-shadow: 0 0 20px #27a544;
}

/* Scroll to top button */
#scrollUpBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #27a544; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px #27a544;
    transition: all 0.3s ease;
}

#scrollUpBtn:hover {
    background-color: #218d3b; /* Add a dark-grey background on hover */
    box-shadow: 0 0 20px #27a544;
}

.green-icon {
    color: #27a544; /* Cannabis green */
}

/* Age Verification Modal Styles */
.modal-content {
    background-color: #000;
    color: #f0f0f0;
}

.modal-header, .modal-footer {
    border: none;
}

.form-control {
    background-color: #000;
    color: #f0f0f0;
    border: 2px solid #27a544;
    box-shadow: 0 0 10px #27a544;
}

.form-control:focus {
    background-color: #000;
    color: #f0f0f0;
    border-color: #218d3b;
    box-shadow: 0 0 10px #218d3b;
}

/* Responsive button adjustments */
@media (max-width: 767.98px) {
    .btn-custom {
        font-size: 14px;
        padding: 10px 20px;
        margin: 5px 0;
    }
}
