﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    overflow: auto; 
    height: 100vh;
}


.navbar {
    height: 80px;
    width: 100%;
    background-color: rgb(154, 135, 130);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.layout {
    display: flex;
    height: calc(100vh - 80px); /* full height minus navbar */
}



.sidebar {
    width: 12vw;
    background-color: rgb(61, 61, 61);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sideprofile {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.bg-select {
    padding: 8px 12px;
    border-radius: 8px;
    background: black;
    color: white;
    border: 0.5px solid rgba(255,255,255,0.2);
    font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: all 0.15s;
}

    .bg-select:hover {
        background: rgba(255,255,255,0.1);
    }

.content {
    flex: 1;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.2)), url('../Pictures/firewatch.jpg');
    background-size: cover;
    background-position: center;
    overflow-y: auto;
    height: calc(100vh - 80px);
}
.body-pic {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.2)), url('../Pictures/firewatch.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

.text-1 {
    color: antiquewhite;
    font-size: 28px;
    text-decoration: none;
}

img {
    height: 70px;
    border-radius: 100px;
    margin-left: 10px;
}

.log {
    padding: 10px 30px;
    display: inline-block;
    margin-right: 20px;
    border-radius: 8px;
    background-color: beige;
    color: black;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.log-alternative {
    padding: 10px 10px;
    display: inline-block;
    margin-right: 20px;
    border-radius: 8px;
    background-color: black;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}


.middle-section {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.middle-section a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.1px;
}
.middle-section a:hover {
    color: black;
}



.middle-sectionn {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .middle-sectionn a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s ease;
        letter-spacing: 0.1px;
    }

        .middle-sectionn a:hover {
            color: white;
        }




.hero-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.hero-highlight {
    color: rgba(255, 200, 120, 0.9);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 380px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-section {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 35%;
    height: 50%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding-top: 20px;
    padding-left: 20px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    border: none;
    color: #1a0e08;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.1px;
}

    .btn-cta-primary:hover {
        background: #f5efe8;
        transform: translateY(-1px);
    }

.log:visited,
.log:hover,
.log:active {
    color: black;
    text-decoration: none;
    transform: scale(1.01);
}

.log-alternative:visited,
.log-alternative:hover,
.log-alternative:active {
    color: white;
    text-decoration: none;

}

.square {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 750px;
    height: 500px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.text-style {
    color: white;
}


.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 100px;
    height: 50%;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 50px;
}

    .grid-layout div {
        background: rgba(255, 255, 255, 0.07);
        border: 0.5px solid rgba(255, 255, 255, 0.13);
        border-radius: 14px;
        padding: 20px 16px 18px;
        cursor: pointer;
        transition: all 0.2s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 120px;
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }



    .grid-layout div:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    }

.grid-layout div:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}


.grid-dash {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
    padding: 20px;
    align-items: start;
}


.bonk
{
    width:100px;
    height: 100px;
}
.Dashboard-Title {
    text-decoration: none;
    color: white;
}

    .Dashboard-Title:visited,
    .Dashboard-Title:hover,
    .Dashboard-Title:active {
        color: white;
        text-decoration: none;
    }
.welcome-text {
    margin-top: 20px;
    color: white;
    margin-left: 30px;
    font-size: 50px;


}

.input-field {
    background-color: rgba(18,9,19,0.7);
    outline: auto;
    padding: 10px 100px 10px 10px;  
    color: white;
    box-sizing: border-box;
}

.create-dash {
    background: rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 15px 40px 15px 40px;
    margin-left: 35px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}


.create-dash:visited,
.create-dash:hover,
.create-dash:active {
    color: white;
    text-decoration: none;
    transform: scale(1.02);
}

.delete-button {
    display: flex;
    justify-content: center;
    justify-self: center;
    margin-top: 25px;
    text-align: center;
    padding: 10px 50px 10px 50px;
    background: rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 0, 0, 0.32);
    text-decoration: none;
    background-color: darkgoldenrod;
    transition: 0.3s ease-in-out;
}

.delete-button:hover {
    background: rgba(255, 0, 0, 0.6);
}



.login-button {
    display: flex;
    justify-content: center;
    justify-self: center;
    margin-top: 25px;
    text-align: center;
    padding: 10px 50px 10px 50px;
    background: rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    text-decoration: none;
    background-color:darkgoldenrod;
    transition: 0.3s ease-in-out;
}

    .login-button:hover {
        background:rgba(255, 255, 255, 0.6) ;

    }

    .profile-welcome {
        border-radius: 205px;
        width: 55px;
        height: 55px;
        margin-right: 15px;
        background-size: cover;

    }

body {
    background: linear-gradient(135deg,#1f1f1f,#3a3a3a);
    font-family: Arial, sans-serif;
}

.calculator {
    margin: 0;
    padding: 16px;
    background: #2b2b2b;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    width: fit-content;
    height: fit-content;
    grid-column: 4/5;
    grid-row: 1/2;
}


#result {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: right;
    padding-right: 10px;
    background: #111;
    color: #00ff9d;
}

/* button grid */
.buttons {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
}


    .buttons button {
        height: 38px;
        font-size: 1rem;
        border: none;
        border-radius: 8px;
        background: #444;
        color: white;
        cursor: pointer;
        transition: 0.2s;
    }

        /* hover */
.buttons button:hover {
            background: #666;
            transform: scale(1.05);
        }

        /* operator buttons */
        .buttons button:nth-child(2),
        .buttons button:nth-child(3),
        .buttons button:nth-child(4),
        .buttons button:nth-child(8) {
            background: #ff9500;
        }

        /* equals button */
        .buttons button:nth-child(12) {
            background: #00c853;
        }



.board-container {
    display: block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    grid-column: 1/4;
    grid-row: 2/3;
    height: fit-content;

}
/* Toolbar */
#toolbar {
    background: #f9fafb;
    padding: 12px 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #d1d5db;
}

    /* Labels */
    #toolbar label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #374151;
        font-weight: 500;
    }

/* Color picker */
#colorPicker {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

/* Brush size input */
#brushSize {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
}

    #brushSize:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
    }

/* Button */
#clearBtn {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    background: #111827;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

    #clearBtn:hover {
        background: #1f2937;
    }

    #clearBtn:active {
        transform: scale(0.97);
    }
canvas {
    display: block;
    background: white;
    cursor: crosshair;

}
.calendar {
    background: #1e293b;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    grid-column: 6/7;
    grid-row: 2/3;
    margin-top: 0;
    height: auto;
    font-size: 12px;
}


.calculator, .clock, .board-container {
    width: 100%;
    height: auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .header button {
        background: #334155;
        border: none;
        color: white;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 6px;
    }

        .header button:hover {
            background: #475569;
        }

.month {
    font-weight: bold;
    color: white;
}

.days, .dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
    .days div {
        font-size: 10px;
        padding: 3px 0;
        color: #94a3b8;
    }

    .dates div {
        padding: 4px;
        margin: 2px;
        background: #334155;
        border-radius: 6px;
        color: white;
        cursor: pointer;
        position: relative;
        font-size: 11px;
    }

        .dates div:hover {
            background: #475569;
        }

.today {
    border: 2px solid #38bdf8;
}

.event {
    font-size: 10px;
    color: #38bdf8;
    margin-top: 5px;
    display: block;
}
textarea {
    width: 100%;
    margin-top: 6px;
    background: #0f172a;
    color: white;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 6px;
    font-size: 12px;
    height: 50px;
    resize: none;
}

.clock {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, #1b2a6b, #0a0f2c);
    border-radius: 50%;
    border: 8px solid #0d1a4d;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    grid-column: 6/7;
}


.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(0deg);
    background: white;
}

.hour {
    width: 6px;
    height: 70px;
    background: #ffcc00;
}

.minute {
    width: 4px;
    height: 100px;
}

.second {
    width: 2px;
    height: 120px;
    background: red;
}

.center {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*------------------FlipCard-----------------------------*/


.flip-card {
    width: 250px;
    height: 350px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(.4,2,.3,1);
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}


.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: white;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


.flip-card-front {
    background: linear-gradient(to bottom, rgba(255,140,0,0.4), rgba(10,10,30,0.95)), url('/Pictures/firewatch.jpg') center/cover no-repeat;
}


.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(to bottom, rgba(0,150,255,0.3), rgba(10,10,30,0.95)), url('/Pictures/firewatch.jpg') center/cover no-repeat;
}


    .flip-card-front::after,
    .flip-card-back::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(2px);
    }


    .flip-card-front > *,
    .flip-card-back > * {
        position: relative;
        z-index: 2;
    }


    .flip-card-front div,
    .flip-card-back div {
        text-shadow: 0 0 15px rgba(0,0,0,0.8);
    }


.flip-card-back {
    font-size: 28px;
    font-weight: 700;
}


.flip-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: 0.3s ease;
}


.right-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;  
}

.black-bar {
    display: flex;
    background-color: rgb(136, 111, 104);
    align-items: center;
    width: 150px;
    height: 70px;
    margin-right: 50px;
    border-radius: 10px;
}


.ToDo {
    grid-column: 3/4;
    grid-row: 1/2;
    color: white;
    background-color: peachpuff;
    height: 300px;
}

.settings-container {
    width: 900px;
    height: 500px;
    display: flex;
    border: 2px solid #444;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px auto;
}

.left-side {
    width: 35%;
    background: #2a2a2a;
    color: white;
    padding: 20px;
    border-right: 1px solid #444;
}

.right-side {
    width: 65%;
    background: #1a1a1a;
    color: white;
    padding: 20px;
}



.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 0.5px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.15s;
    text-decoration: none;
}

    .icon-btn:hover {
        background: rgba(255,255,255,0.08);
        color: #fff;
        border-color: rgba(255,255,255,0.25);
    }



.logout-btn {
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 13px;
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
    text-decoration: none;
}

    .logout-btn:hover {
        background: rgba(255,255,255,0.11);
        color: #fff;
    }


.chat-wrapper {
    width: 700px;
    height: 80vh;
    background: rgba(10,5,2,0.75);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    padding: 16px 20px;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

    .chat-bubble.me {
        align-self: flex-end;
        align-items: flex-end;
    }

    .chat-bubble.them {
        align-self: flex-start;
        align-items: flex-start;
    }

.chat-name {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    margin-bottom: 3px;
}

.bubble-text {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: white;
    line-height: 1.4;
}

.chat-bubble.me .bubble-text {
    background: rgba(194,96,32,0.6);
    border-bottom-right-radius: 4px;
}

.chat-bubble.them .bubble-text {
    background: rgba(255,255,255,0.1);
    border-bottom-left-radius: 4px;
}

.bubble-time {
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    margin-top: 3px;
}

.chat-form {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 0.5px solid rgba(255,255,255,0.1);
}

.chat-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    color: white;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

    .chat-input::placeholder {
        color: rgba(255,255,255,0.25);
    }

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(194,96,32,0.7);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.15s;
}

    .chat-send:hover {
        background: rgba(194,96,32,1);
    }


.info {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}


    .small-box {
        background-color: black;
        padding: 10px 10px;
        border-radius: 5px;
        color: antiquewhite;
    }
