35808-vm/static/css/custom.css
2025-11-18 02:41:20 +00:00

125 lines
2.6 KiB
CSS

/* General Body Styles */
body {
background-color: #0F3460; /* Dark Blue */
color: #FFFFFF;
font-family: 'Roboto', sans-serif;
}
/* Hero Section */
.hero {
position: relative;
padding: 100px 0;
text-align: center;
background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb');
background-size: cover;
background-position: center;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(15, 52, 96, 0.7); /* Dark Blue overlay */
z-index: 1;
}
.hero .container {
position: relative;
z-index: 2;
}
/* Typography */
h1, .h1 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #FFFFFF;
font-size: 3.5rem;
margin-bottom: 1rem;
}
p.lead {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 2rem;
}
/* Form Styles */
.form-control {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: #FFFFFF;
padding: 1rem;
}
.form-control::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.form-control:focus {
background-color: rgba(255, 255, 255, 0.2);
border-color: #E94560; /* Accent Pink/Red */
color: #FFFFFF;
box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}
/* Button Styles */
.btn-primary {
background-color: #E94560; /* Accent Pink/Red */
border-color: #E94560;
padding: 1rem 2rem;
font-weight: 700;
transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-primary:hover {
background-color: #c73049;
border-color: #c73049;
}
/* Results Section */
.results-section {
background-color: #1A1A2E; /* Deep Navy */
padding: 4rem;
border-radius: 15px;
margin-top: 3rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.results-section h2 {
font-family: 'Poppins', sans-serif;
color: #E94560; /* Accent Pink/Red */
margin-bottom: 1.5rem;
}
.results-section h3 {
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
color: #FFFFFF;
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
.generated-title {
font-size: 1.75rem;
font-weight: bold;
background: -webkit-linear-gradient(45deg, #E94560, #FFC700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hashtag {
display: inline-block;
background-color: rgba(255, 255, 255, 0.1);
color: #FFFFFF;
padding: 0.5rem 1rem;
border-radius: 20px;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.9rem;
}