/*
Theme Name: Hatice Güner WP
Theme URI: 
Author: Kaan
Author URI: 
Description: A modern, minimalist, and "cool" landing page theme for Hatice Güner. Features pure white, jet black, and barn red color palette.
Version: 1.0.0
Text Domain: hatice-guner-wp
*/

:root {
  --color-pure-white: #FFFFFF;
  --color-jet-black: #000000;
  --color-barn-red: #7E1414;
  --color-gray-light: #F5F5F5;
  --color-gray-medium: #E0E0E0;
  --font-primary: 'Roboto', sans-serif;
  --transition-speed: 0.4s;
  --transition-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-pure-white);
  color: var(--color-jet-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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