
/* Reset and base styles - Summer H4ck! */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2d3748;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Grid and flexible box */
.grid, .flex, .inline-flex {
    display: grid;
    display: flex;
    display: inline-flex;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Remove list styles */
ul, ol {
    list-style: none;
    padding-left: 0;
}

/* Form elements */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E0;
    border-radius: 0.375rem;
    font-size: 1rem;
    width: 100%;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease-in-out;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #4FD1C5;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.25);
}

/* Buttons */
button, .button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover, .button:hover {
    transform: translateY(-1px);
}

button:focus, .button:focus {
    outline: 2px solid #4FD1C5;
    outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2D3748;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Layout helpers */
.container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.full-width {
    width: 100%;
}

.center {
    text-align: center;
}

/* Spacing */
.p-4 {
    padding: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Colors */
.text-blue-600 {
    color: #4DA6FF;
}

.text-white {
    color: #FFFFFF;
}

.bg-gray-50 {
    background-color: #F7FAFC;
}

.bg-blue-600 {
    background-color: #4DA6FF;
}

.bg-white {
    background-color: #FFFFFF;
}

.text-cyan-800 {
    color: #23B2B2;
}

/* Gradients */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, #4DA6FF, #23B2B2);
}

/* Shadows */
.shadow-xl {
    box-shadow: 0 35px 60px -15px rgba(9, 30, 66, 0.2), 0 50px 100px -20px rgba(9, 30, 66, 0.2);
}

.shadow-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Transitions */
.transition {
    transition: all 0.2s ease-in-out;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: ease-in-out;
}

/* Responsive */
@media (min-width: 48em) {
    .hidden-lg {
        display: none;
    }
}

@media (min-width: 64em) {
    .md\:hidden {
        display: none;
    }
    .md\:text-4xl {
        font-size: 1.5rem;
    }
}
