|
| 1 | +/* Import Google Fonts */ |
| 2 | +@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@400;600&display=swap'); |
| 3 | + |
| 4 | +/* Global Styles */ |
| 5 | +body { |
| 6 | + margin: 0; |
| 7 | + padding: 0; |
| 8 | + font-family: 'Poppins', sans-serif; |
| 9 | + background-color: white; |
| 10 | + color: #000; |
| 11 | + font-size: 90px; |
| 12 | +} |
| 13 | + |
| 14 | +/* Header */ |
| 15 | +.header-top-menu li { |
| 16 | + list-style: none; |
| 17 | + margin: 0; |
| 18 | + padding: 0; |
| 19 | +} |
| 20 | + |
| 21 | +.header-top-menu li a { |
| 22 | + position: relative; |
| 23 | + text-decoration: none; |
| 24 | + padding: 10px 20px; |
| 25 | + font-size: 16px; |
| 26 | + font-weight: 600; |
| 27 | + font-family: 'Poppins'; |
| 28 | + color: #3c3c3c; |
| 29 | + |
| 30 | +} |
| 31 | + |
| 32 | +.header-top-menu li a::after { |
| 33 | + content: ''; |
| 34 | + position: absolute; |
| 35 | + left: 0; |
| 36 | + bottom: 0; |
| 37 | + height: 2px; |
| 38 | + width: 0; |
| 39 | + background-color: #f39e61; |
| 40 | + transition: width 0.3s ease; |
| 41 | +} |
| 42 | + |
| 43 | +.header-top-menu li a:hover::after { |
| 44 | + width: 100%; |
| 45 | +} |
| 46 | +.header { |
| 47 | + display: flex; |
| 48 | + justify-content: space-between; |
| 49 | + align-items: center; |
| 50 | + padding: 20px 40px; |
| 51 | + background-color: white; |
| 52 | + color: #000; |
| 53 | +} |
| 54 | + |
| 55 | +.header-logo img { |
| 56 | + height: 300px; |
| 57 | +} |
| 58 | + |
| 59 | +.header-top-menu { |
| 60 | + list-style: none; |
| 61 | + display: flex; |
| 62 | + gap: 30px; |
| 63 | + margin: 0; |
| 64 | + padding: 0; |
| 65 | +} |
| 66 | +.header-top-menu li { |
| 67 | + list-style: none; |
| 68 | + margin: 0; |
| 69 | + padding: 0; |
| 70 | +} |
| 71 | + |
| 72 | +.header-top-menu li a { |
| 73 | + position: relative; |
| 74 | + text-decoration: none; |
| 75 | + padding: 10px 20px; |
| 76 | + font-size: 16px; |
| 77 | + font-weight: 600; |
| 78 | + font-family: 'Poppins'; |
| 79 | + color: #3c3c3c; |
| 80 | + |
| 81 | +} |
| 82 | + |
| 83 | +.header-top-menu li a::after { |
| 84 | + content: ''; |
| 85 | + position: absolute; |
| 86 | + left: 0; |
| 87 | + bottom: 0; |
| 88 | + height: 2px; |
| 89 | + width: 0; |
| 90 | + background-color: #f39e61; |
| 91 | + transition: width 0.3s ease; |
| 92 | +} |
| 93 | + |
| 94 | +.header-top-menu li a:hover::after { |
| 95 | + width: 100%; |
| 96 | +} |
| 97 | +.header-top-menu li a { |
| 98 | + text-decoration: none; |
| 99 | + color: #ffffff; |
| 100 | + font-weight: 600; |
| 101 | + transition: color 0.3s; |
| 102 | +} |
| 103 | + |
| 104 | +.header-top-menu li a:hover { |
| 105 | + color: #f39e61; |
| 106 | +} |
| 107 | + |
| 108 | +.header-cta .sign-up-button { |
| 109 | + background-color: hsl(24, 98%, 47%); |
| 110 | + color: #ffffff; |
| 111 | + padding: 10px 20px; |
| 112 | + text-decoration: none; |
| 113 | + border-radius: 5px; |
| 114 | + font-weight: 600; |
| 115 | + transition: background-color 0.3s; |
| 116 | +} |
| 117 | +.header-cta .sign-up-button { |
| 118 | + background-color: #f47d26; |
| 119 | + color: white; |
| 120 | + padding: 0.5rem 1rem; |
| 121 | + border-radius: 6px; |
| 122 | + text-decoration: none; |
| 123 | +} |
| 124 | +.header-cta .sign-up-button:hover { |
| 125 | + background-color: hsl(24, 98%, 47%); |
| 126 | +} |
| 127 | + |
| 128 | +/* Hero Section */ |
| 129 | +.hero-section { |
| 130 | + background: url('hero.jpg') center/cover no-repeat; |
| 131 | + color: white; |
| 132 | + padding: 4rem 2rem; |
| 133 | + position: relative; |
| 134 | + min-height: 60vh; |
| 135 | + padding-left: 0; |
| 136 | + |
| 137 | +} |
| 138 | + |
| 139 | +.hero-overlay { |
| 140 | + position: absolute; |
| 141 | + top: 0; |
| 142 | + left: 0; |
| 143 | + right: 0; |
| 144 | + bottom: 0; |
| 145 | + background-color: rgba(0, 0, 0, 0.5); |
| 146 | +} |
| 147 | + |
| 148 | +.hero-content { |
| 149 | + position: relative; |
| 150 | + z-index: 1; |
| 151 | + max-width: 800px; |
| 152 | +} |
| 153 | + |
| 154 | +.hero-title { |
| 155 | + font-size: 2.5rem; |
| 156 | + margin-bottom: 1rem; |
| 157 | +} |
| 158 | + |
| 159 | +.highlight { |
| 160 | + color: #f47d26; |
| 161 | +} |
| 162 | + |
| 163 | +.hero-text { |
| 164 | + font-size: 20px; |
| 165 | + font-family: 'poppins'; |
| 166 | + background-color: #243e90; |
| 167 | + padding-top: 3%; |
| 168 | + padding-bottom: 3%; |
| 169 | + padding-right: 8%; |
| 170 | + padding-left: 8%; |
| 171 | +} |
| 172 | + |
| 173 | +/* Programs Section */ |
| 174 | +.programs-section ul.programs { |
| 175 | + width: 60%; |
| 176 | + text-decoration: none; |
| 177 | + color: #3c3c3c; |
| 178 | + font-family: "Montserrat"; |
| 179 | + font-size: 18px; |
| 180 | + font-weight: 600; |
| 181 | + font-family: "Poppins"; |
| 182 | + display: grid; |
| 183 | + grid-template-columns: repeat(2, 1fr); |
| 184 | + gap: 1.5rem; |
| 185 | +} |
| 186 | + |
| 187 | +.programs-section ul li { |
| 188 | + list-style: none; |
| 189 | + margin: 0; |
| 190 | + padding: 0; |
| 191 | + display: flex; |
| 192 | + flex-wrap: wrap; |
| 193 | + align-items: center; |
| 194 | + width: 50%; |
| 195 | + color: #a9a9a9; |
| 196 | + font-weight: 100; |
| 197 | +}.program h3 { |
| 198 | + font-size: 22px; |
| 199 | + font-weight: 900; |
| 200 | + color: #3c3c3c; |
| 201 | + padding: 0 20px; |
| 202 | +} |
| 203 | + |
| 204 | +/* Footer */ |
| 205 | +.footer { |
| 206 | + background-color: #111111; |
| 207 | + text-align: center; |
| 208 | + padding: 20px; |
| 209 | + font-size: 14px; |
| 210 | + background-color: white; |
| 211 | + color: #000; |
| 212 | + font-size: 25px; |
| 213 | +} |
| 214 | + |
0 commit comments