summaryrefslogtreecommitdiff
path: root/frontend/src/styles/mobile.css
blob: 7d1f282a22efe21031636b44294a4d63fb8c2413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* Mobile overrides: relocate CTA to bottom and compact masthead/issue */
@media (max-width: 768px) {
  /* Bottom-fixed CTA bar */
  .cta-area {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
  }
  .cta-left { display: flex; flex-direction: column; gap: 8px; }
  .cta-right { display: flex; }
  .taisho-cta { width: 100%; justify-content: center; transform: none; }

  /* Lift stats higher above CTA (mobile only) */
  .bottom-stats { bottom: calc(280px + env(safe-area-inset-bottom, 0px)); }
  .bottom-stats .rf-stats { padding: 6px 10px; }
  .bottom-stats .rf-stat { font-size: 11px; }

  /* Compact masthead and issue badge */
  .modern-landing-page.manga-style .masthead-vertical {
    padding: 6px 6px;
    border-width: 2px;
  }
  .modern-landing-page.manga-style .masthead-vertical .jp { font-size: 20px; }
  .modern-landing-page.manga-style .masthead-vertical .en { font-size: 8px; letter-spacing: 0.5px; }
  .modern-landing-page.manga-style .issue-badge { padding: 3px 7px; font-size: 10px; gap: 6px; }
  .modern-landing-page.manga-style .issue-badge .led-heart {
    width: 6px;
    height: 6px;
    margin-right: 6px;
  }
  .modern-landing-page.manga-style .issue-badge .led-heart::before,
  .modern-landing-page.manga-style .issue-badge .led-heart::after {
    width: 6px;
    height: 6px;
  }
  .modern-landing-page.manga-style .issue-badge .led-heart::before { top: -3px; }
  .modern-landing-page.manga-style .issue-badge .led-heart::after { left: 3px; }

  .makima-logo { padding: 14px; }
  .makima-inline-icon { width: 16px; height: 16px; margin-left: 6px; }
  .makima-list { gap: 4px; }
  .makima-list li { font-size: 12px; line-height: 1.45; }

  /* ================== Professional Landing Page – Mobile ================== */

  /* Compact header */
  .pro-header-content {
    padding: 0.45rem 1rem;
  }

  .pro-company-name {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .pro-crane-logo {
    height: 28px;
  }

  /* Hide center heart on small screens to save space */
  .pro-header-center {
    display: none;
  }

  /* Full-width nav buttons */
  .pro-header-nav {
    gap: 0.15rem;
  }

  .pro-nav-link {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }

  .pro-nav-login {
    margin-left: 0.25rem;
  }

  /* Hero – reduce heading size and padding */
  .pro-hero {
    min-height: 85vh;
    padding: 5rem 1.25rem 3rem;
  }

  .pro-hero-headline {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  .pro-hero-sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .pro-hero-tagline-jp {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
  }

  .pro-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pro-btn-primary,
  .pro-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Stack cards to single column */
  .pro-content-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem 3rem;
    gap: 1.5rem;
  }

  .pro-card-header {
    padding: 1rem 1.25rem 0.6rem;
  }

  .pro-card-body {
    padding: 0.6rem 1.25rem 1.25rem;
  }

  .pro-card-title {
    font-size: 1rem;
  }

  .pro-card-subtitle {
    font-size: 0.88rem;
  }

  .pro-card-text {
    font-size: 0.8rem;
  }

  .pro-makima-logo {
    width: 48px;
    height: 48px;
  }

  /* Footer compact */
  .pro-footer {
    padding: 1.25rem 1rem;
  }

  .pro-footer-inner {
    font-size: 0.7rem;
  }
}