﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/*.btn-getintouch{*/
/*    background-color: #b80cbd;*/
/*    color: #fff;*/
/*}*/
/*.btn-getintouch:hover{*/
/*    color: #bd1573;*/
/*    background-color: #fff;*/
/*    border-color: #af0f89;*/
/*}*/

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.img-circle {
    border-radius: 50%;
}

/* Icon Spacing*/
i {
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}


.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

.home-info {
    font-size: 18px
}

.crypto-last-updated {
    margin-top: 30px;
    font-size: 19px;
    text-align: center !important;
}

.crypto-info {
    font-weight: bold;
    font-size: large;
}


.wainwrights-selectlist {
    margin-top: 10px;
    margin-bottom: 10px
}

.nav-icon {
    display: inline-block;
    float: none;
    vertical-align: top;
}

.nav-bold {
    font-weight: bold;
}

.crypto-banner {
}

.blog-button {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.nav-link {
    padding: 1.2rem;
}

.carbon-card-title {
    font-size: 30px;
}

.carbon-card-text {
    font-size: 20px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 1rem;
}

    .navbar a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

        .navbar a:hover {
            color: deeppink; /* Tomato color on hover */
        }

    .navbar i {
        margin-right: 0.5rem;
    }

.footer-icon a:hover {
    color: deeppink; /* Tomato color on hover */
}

.footer-icon a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.chart-container {
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin-bottom: 12rem;
}

.chart-header {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}


/* wwwroot/css/site.css or your custom CSS file */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    transition: transform 0.3s;
}

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        cursor: pointer;
    }
/* Hero Section - Matching tompool.me style */
.hero-section {
    padding: 4rem 0;
    color: #e9ecef;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
}

    .hero-text p {
        margin-bottom: 1.2rem;
    }

.profile-image-wrapper {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 5px solid #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

    .profile-image:hover {
        transform: scale(1.03);
        border-color: #b80cbd;
    }

.profile-tech-icons {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tech-icon {
    background: #1b1b1b;
    color: #b80cbd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

    .tech-icon:hover {
        background: #b80cbd;
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(184, 12, 189, 0.4);
    }

/* Buttons - Matching your site's style */
.btn-primary {
    background-color: #b80cbd;
    border-color: #b80cbd;
    color: white;
}

    .btn-primary:hover {
        background-color: #9e0aa3;
        border-color: #9e0aa3;
    }

.btn-outline-light {
    border-color: #6c757d;
    color: #f8f9fa;
}

    .btn-outline-light:hover {
        background-color: rgba(108, 117, 125, 0.2);
        border-color: #f8f9fa;
    }

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .profile-image {
        width: 250px;
        height: 250px;
        margin-bottom: 2rem;
    }
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Catamaran', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
    color: #adb5bd;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #adb5bd;
    margin-bottom: 1.2rem;
}

.profile-image {
    width: 350px;
    height: 350px;
    border: 5px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .profile-image:hover {
        transform: scale(1.03);
        border-color: #b80cbd;
    }

.profile-tech-icons {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tech-icon {
    background: #1b1b1b;
    color: #b80cbd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

    .tech-icon:hover {
        background: #b80cbd;
        color: #fff;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 15px rgba(184, 12, 189, 0.4);
    }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .profile-image {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .profile-image {
        width: 250px;
        height: 250px;
        margin-bottom: 3rem;
    }

    .order-lg-1, .order-lg-2 {
        order: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
    }
}

.navbar a:hover {
    color: deeppink;
}

    .navbar a:hover i {
        color: deeppink;
    }
