/*
Copyright © 2025 Kottoman. All rights reserved.
This code is proprietary and confidential. Unauthorized copying, distribution, or use is strictly prohibited.
*/

/* Homepage-specific styles that complement the main style.css */

/* General Homepage Styles */
.homepage-body {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1595898103322-2f40f8b09b9f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Header Styles */
.homepage-header {
    background-color: rgba(0,0,0,0.6);
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.homepage-header h1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.homepage-header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    margin-left: 40px; /* Add space between title and navigation */
    padding: 0;
}

.homepage-header nav a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.homepage-header nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.homepage-header nav a:not(.cta-button):hover::after {
    width: 100%;
}

.homepage-header nav a:hover {
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--accent-color);
}

/* Main Content Styles */
main {
    padding-top: 80px;
}

/* Section General Styles */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-text-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--secondary-text-color);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-text-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-preview {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-circle {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(var(--accent-color-rgb), 0.3);
}

.timer-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-text-color);
    z-index: 2;
}

.timer-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-progress circle {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease;
}

/* Features Section */
.features {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Interactive Features Showcase */
.features-showcase {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Features Navigation */
.features-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    min-width: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-nav-btn i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-nav-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-nav-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.3);
    transform: translateY(-5px);
}

.feature-nav-btn.active i {
    transform: scale(1.2);
}

/* Feature Displays */
.feature-displays {
    position: relative;
    min-height: 500px;
    margin-bottom: 30px;
}

.feature-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
}

.feature-display.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.feature-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.app-preview {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-header h3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.3rem;
}

.preview-timer {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-text-color);
    text-align: center;
    margin: 40px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.preview-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.preview-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--secondary-text-color);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.preview-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 6px 15px rgba(var(--accent-color-rgb), 0.3);
}

.preview-laps {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.preview-lap {
    display: flex;
    justify-content: space-between;
    color: var(--secondary-text-color);
    padding: 8px 0;
    font-size: 0.9rem;
}

.feature-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.feature-info h3 {
    font-size: 1.8rem;
    color: var(--primary-text-color);
    margin-bottom: 15px;
}

.feature-info p {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.key-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.key-point {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* World Clock Preview Specific Styles */
.clock-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.search-bar {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.search-bar input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-text-color);
    padding: 12px 20px;
    border-radius: 30px;
    width: 100%;
    max-width: 300px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.clock-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.clock-city {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.clock-time {
    font-size: 1.8rem;
    color: var(--primary-text-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.clock-date {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    margin-top: 8px;
}

.clock-timezone {
    font-size: 0.8rem;
    color: var(--secondary-text-color);
    margin-top: 5px;
    opacity: 0.8;
}

/* Work Time Preview Specific Styles */
.work-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
}

.work-stat {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-value {
    color: var(--primary-text-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Feature animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-display.active .preview-timer {
    animation: pulse 2s infinite ease-in-out;
}

/* Time selector styles for countdown timer */
.time-selectors {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selector-label {
    font-size: 0.8rem;
    color: var(--secondary-text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selector-value {
    font-size: 1.2rem;
    color: var(--primary-text-color);
    font-weight: 600;
}

/* Pomodoro session indicators */
.pomodoro-sessions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.session-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.session-number.active {
    background-color: var(--accent-color);
    color: #fff;
}

.session-type-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.session-type-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-text-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.session-type-btn.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--primary-text-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}

.feature-card p {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--secondary-text-color);
}

.feature-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    text-align: left;
}

.about-content > p {
    color: var(--secondary-text-color);
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-text-color);
}

.highlight-text p {
    color: var(--secondary-text-color);
    line-height: 1.5;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 30px;
}

.theme-title {
    font-size: 1.5rem;
    color: var(--primary-text-color);
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.theme-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

    .theme-options-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    justify-items: center;
    max-width: 450px;
    margin: 0 auto;
}

.theme-option-display {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 15px;
    border: 3px solid transparent;
}

.theme-option-display:nth-child(1) {
    transform: rotate(-3deg);
}

.theme-option-display:nth-child(2) {
    transform: rotate(2deg);
}

.theme-option-display:nth-child(3) {
    transform: rotate(-2deg);
}

.theme-option-display:nth-child(4) {
    transform: rotate(3deg);
}

.theme-option-display:nth-child(5) {
    transform: rotate(-1deg);
}

.theme-option-display:nth-child(6) {
    transform: rotate(2deg);
}

.theme-option-display:hover,
.theme-option-display.theme-hover {
    transform: scale(1.1) translateY(-10px) !important;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.theme-option-display.active-theme {
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.theme-label {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    transform: translateY(30px);
}

.click-hint {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(30px);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.theme-option-display:hover .theme-label,
.theme-option-display.theme-hover .theme-label {
    transform: translateY(0);
}

.theme-option-display:hover .click-hint,
.theme-option-display.theme-hover .click-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Add a pulsing animation to make the theme options more noticeable */
@keyframes themePulse {
    0% { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
}

.theme-option-display {
    animation: themePulse 3s infinite;
    animation-delay: calc(var(--animation-order) * 1s);
}

.theme-option-display:nth-child(1) { --animation-order: 0; }
.theme-option-display:nth-child(2) { --animation-order: 1; }
.theme-option-display:nth-child(3) { --animation-order: 2; }
.theme-option-display:nth-child(4) { --animation-order: 3; }
.theme-option-display:nth-child(5) { --animation-order: 4; }
.theme-option-display:nth-child(6) { --animation-order: 5; }

.pink-theme {
    background-color: #E57373;
    background-image: linear-gradient(135deg, #E57373 0%, #F48FB1 100%);
}

.turquoise-theme {
    background-color: #4DD0E1;
    background-image: linear-gradient(135deg, #4DD0E1 0%, #26C6DA 100%);
}

.green-theme {
    background-color: #66BB6A;
    background-image: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
}

.purple-theme {
    background-color: #9C66BB;
    background-image: linear-gradient(135deg, #9C66BB 0%, #8E24AA 100%);
}

.orange-theme {
    background-color: #FF9800;
    background-image: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.grey-theme {
    background-color: #9E9E9E;
    background-image: linear-gradient(135deg, #9E9E9E 0%, #757575 100%);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--secondary-text-color);
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 5% 30px;
    color: var(--secondary-text-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo h2 {
    color: var(--accent-color);
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    text-align: left;
}

.footer-logo p {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h3 {
    color: var(--primary-text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--secondary-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Add CSS variable for RGB version of accent color for rgba usage */
:root {
    --accent-color-rgb: 229, 115, 115; /* Default pink theme */
}

:root[data-theme="turquoise"] {
    --accent-color-rgb: 77, 208, 225;
    --accent-color: #4DD0E1;
}

:root[data-theme="green"] {
    --accent-color-rgb: 102, 187, 106;
    --accent-color: #66BB6A;
}

:root[data-theme="purple"] {
    --accent-color-rgb: 156, 102, 187;
    --accent-color: #9C66BB;
}

:root[data-theme="orange"] {
    --accent-color-rgb: 255, 152, 0;
    --accent-color: #FF9800;
}

:root[data-theme="grey"] {
    --accent-color-rgb: 158, 158, 158;
    --accent-color: #9E9E9E;
}

/* Theme toast notification */
.theme-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toast.pink-theme {
    background-color: #E57373;
    background-image: linear-gradient(135deg, #E57373 0%, #F48FB1 100%);
}

.theme-toast.turquoise-theme {
    background-color: #4DD0E1;
    background-image: linear-gradient(135deg, #4DD0E1 0%, #26C6DA 100%);
}

.theme-toast.green-theme {
    background-color: #66BB6A;
    background-image: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
}

.theme-toast.purple-theme {
    background-color: #9C66BB;
    background-image: linear-gradient(135deg, #9C66BB 0%, #8E24AA 100%);
}

.theme-toast.orange-theme {
    background-color: #FF9800;
    background-image: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.theme-toast.grey-theme {
    background-color: #9E9E9E;
    background-image: linear-gradient(135deg, #9E9E9E 0%, #757575 100%);
}

.theme-toast.show-toast {
    transform: translateY(0);
    opacity: 1;
}

.theme-toast i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .about-content > p {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .homepage-header {
        padding: 60px 3%; /* More left alignment */
    }
    
    .homepage-header nav ul {
        gap: 15px;
        margin-left: 30px; /* Maintain spacing on tablet */
    }
    
    .homepage-header nav a {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 8px 15px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .about {
        padding-top: 160px; /* Even more spacing for mobile */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .timer-preview {
        width: 250px;
        height: 250px;
    }
    
    .timer-display {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .theme-options-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 350px;
    }
    
    .theme-option-display {
        width: 70px;
        height: 70px;
    }
    
    .theme-label {
        font-size: 0.85rem; /* Smaller font for mobile */
    }
    
    .click-hint {
        display: none; /* Hide "Click to apply" text on mobile */
    }
}

@media screen and (max-width: 480px) {
    .homepage-header {
        padding: 15px 2%; /* Even more left alignment for small screens */
    }
    
    .homepage-header h1 {
        font-size: 1.5rem;
    }
    
    .homepage-header nav ul {
        gap: 10px;
        margin-left: 20px; /* Maintain spacing on mobile */
    }
    
    .homepage-header nav a {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 6px 12px;
    }
    
    .about {
        padding-top: 140px; /* Extra spacing for very small screens */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .timer-preview {
        width: 200px;
        height: 200px;
    }
    
    .timer-display {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .theme-showcase {
        gap: 10px;
    }
    
    .theme-options-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 280px;
    }
    
    .theme-option-display {
        width: 55px;
        height: 55px;
    }
    
    .theme-label {
        font-size: 0.7rem; /* Even smaller for very small screens */
    }
    
    .click-hint {
        display: none; /* Hide "Click to apply" text on small screens */
    }
}
