/*
Template 2107 New Spot
http://www.tooplate.com/view/2107-new-spot

COLOR CODES
    Primary (Pink):   #CC0064
    Secondary (Blue): #0095BF
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1C2D37;
    color: #333;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.6;
    overflow-x: hidden;
}

.tm-container {
    background-color: white;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tm-site-title {
    color: #cc0064;
    font-size: 1.9rem;
    font-weight: 200;
}

.tm-site-subtitle {
    color: #0095bf;
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 10px;
}

.tm-section-1 {
    background-image: url(../img/spot-bg-01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.tm-section-3 {
    background-image: url(../img/spot-bg-02.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

.tm-color-primary {
    color: #cc0064;
}

.tm-color-secondary {
    color: #0095bf;
}
html {
    scroll-behavior: smooth;
}
.tm-btn-primary {
    color: white;
    background-color: #cc0064;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tm-btn-primary:hover,
.tm-btn-primary:focus {
    background-color: #e60073;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.tm-btn-secondary {
    color: white;
    background-color: #cc0064;
    transition: all 0.3s ease; /* Updated to transition all properties */
    transform: scale(1); /* Base scale for animation */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.tm-btn-secondary:hover,
.tm-btn-secondary:focus {
    background-color: #00b7e6;
    color: white;
    transform: scale(1.05); /* Slight scale-up on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    text-decoration: none; /* Ensure no underline */
}

.tm-bg-circle-white {
    background-color: rgba(255, 255, 255, 0.45);
    color: #333;
    padding: 30px;
    border-radius: 30px;
    max-width: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

p, ul {
    line-height: 1.4;
    font-weight: 300;
}

ul {
    margin: 0;
}

ul.dashed {
    list-style-type: none;
}

ul.dashed > li {
    text-indent: -5px;
}

ul.dashed > li:before {
    content: "-";
    margin-right: 10px;
}

.btn {
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block; /* Ensures proper alignment */
}

a.btn:hover {
    color: white;
    text-decoration: none;
}

.tm-flex-center-v {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tm-text-container {
    max-width: 500px;
}

.tm-circle-img {
    max-width: 100%;
    height: auto;
    border-radius: 90px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tm-circle-img-container {
    text-align: center;
}

.tm-contact-form {
    max-width: 350px;
    margin: 0 auto;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #cc0064;
    padding: 10px 0;
    font-size: 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e60073;
    outline: none;
}

.tm-send-btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
}

.tm-footer-link {
    color: #333;
    transition: color 0.3s ease;
}

.tm-footer-link:hover,
.tm-footer-link:focus {
    color: #cc0064;
    text-decoration: none;
}

footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .tm-bg-circle-white {
        margin: 20px auto;
        max-width: 90%;
    }

    .tm-section-1,
    .tm-section-3 {
        padding: 50px 0;
        clip-path: none;
    }

    .tm-circle-img-container {
        margin-bottom: 30px;
    }

    .tm-contact-form {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .tm-bg-circle-white {
        padding: 20px;
        border-radius: 10px;
    }

    .tm-site-title {
        font-size: 2rem;
    }

    .tm-site-subtitle {
        font-size: 1.2rem;
    }

    .tm-section-1,
    .tm-section-3 {
        padding: 40px 0;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}